diff --git a/client-js/main/client/actor-request-factory.js b/client-js/main/client/actor-request-factory.js
index 9f955c95d..67ea37f60 100644
--- a/client-js/main/client/actor-request-factory.js
+++ b/client-js/main/client/actor-request-factory.js
@@ -41,6 +41,25 @@ import {FieldMask} from '../proto/google/protobuf/field_mask_pb';
import {isProtobufMessage, Type, TypedMessage} from './typed-message';
import {AnyPacker} from './any-packer';
import {FieldPaths} from './field-paths';
+import {EnumValue} from 'google-protobuf/google/protobuf/type_pb';
+
+/**
+ * Wraps the passed enum value as Protobuf `EnumValue` so it can be correctly processed by the
+ * server.
+ *
+ * As enums in Protobuf JS are declared as plain `number`s, their values can be passed to this
+ * method as-is, for example: `enumValueOf(Task.Severity.HIGH)`.
+ *
+ * @param {!number} value the enum value
+ * @returns {EnumValue} the `EnumValue` instance
+ */
+export function enumValueOf(value) {
+ const result = new EnumValue();
+ result.setNumber(value);
+ return result;
+}
+
+const ENUM_VALUE_TYPE_URL = 'type.googleapis.com/google.protobuf.EnumValue';
// TODO:2019-06-07:yegor.udovchenko: Cover `Filters` class with the unit tests
// https://github.com/SpineEventEngine/web/issues/100
@@ -166,6 +185,9 @@ export class Filters {
typedValue = TypedMessage.bool(value);
} else if (value instanceof Date) {
typedValue = TypedMessage.timestamp(value);
+ } else if (value instanceof EnumValue) {
+ const type = Type.of(EnumValue, ENUM_VALUE_TYPE_URL);
+ typedValue = new TypedMessage(value, type);
} else if (value instanceof TypedMessage) {
typedValue = value;
} else if(isProtobufMessage(value)) {
diff --git a/client-js/package.json b/client-js/package.json
index 6315be937..970221472 100644
--- a/client-js/package.json
+++ b/client-js/package.json
@@ -1,6 +1,6 @@
{
"name": "spine-web",
- "version": "1.2.9",
+ "version": "1.2.10",
"license": "Apache-2.0",
"description": "A JS client for interacting with Spine applications.",
"homepage": "https://spine.io",
diff --git a/integration-tests/js-tests/package.json b/integration-tests/js-tests/package.json
index 7ba3e694d..065978f86 100644
--- a/integration-tests/js-tests/package.json
+++ b/integration-tests/js-tests/package.json
@@ -1,6 +1,6 @@
{
"name": "client-js-tests",
- "version": "1.2.9",
+ "version": "1.2.10",
"license": "Apache-2.0",
"description": "Tests of a `spine-web` JS library against the Spine-based application.",
"scripts": {
diff --git a/integration-tests/js-tests/test/firebase-client/query-test.js b/integration-tests/js-tests/test/firebase-client/query-test.js
index 8d9b5513f..6bba84cb6 100644
--- a/integration-tests/js-tests/test/firebase-client/query-test.js
+++ b/integration-tests/js-tests/test/firebase-client/query-test.js
@@ -22,7 +22,7 @@ import assert from 'assert';
import {ensureUserTasks, fail} from '../test-helpers';
import {UserTasksTestEnvironment as TestEnvironment} from '../given/users-test-environment';
import {client} from './given/firebase-client';
-import {Filters} from '@lib/client/actor-request-factory';
+import {enumValueOf, Filters} from '@lib/client/actor-request-factory';
import {TypedMessage} from '@lib/client/typed-message';
import {BoolValue} from '@testProto/google/protobuf/wrappers_pb';
import {UserTasks} from '@testProto/spine/web/test/given/user_tasks_pb';
@@ -101,6 +101,13 @@ describe('FirebaseClient executes query built', function () {
],
expectedUsers: () => users.filter(user => user.tasks.length === 3)
},
+ {
+ message: 'with `eq` filter targeting a enum column',
+ filters: [
+ Filters.eq('load', enumValueOf(UserTasks.Load.VERY_HIGH))
+ ],
+ expectedUsers: () => users.filter(user => user.tasks.length > 1)
+ },
{
message: 'with `lt` filter',
filters: [
diff --git a/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java b/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java
index c530f5f33..706a8c695 100644
--- a/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java
+++ b/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java
@@ -28,6 +28,10 @@
import java.util.List;
+import static io.spine.web.test.given.UserTasks.Load.HIGH;
+import static io.spine.web.test.given.UserTasks.Load.LOW;
+import static io.spine.web.test.given.UserTasks.Load.VERY_HIGH;
+
/**
* A projection representing a user and a list of {@link TaskId tasks} assigned to him.
*
@@ -81,6 +85,17 @@ public boolean getIsOverloaded() {
return state().getTasksCount() > 1;
}
+ @Override
+ public UserTasks.Load getLoad() {
+ if (getTaskCount() == 0) {
+ return LOW;
+ } else if (getTaskCount() == 1) {
+ return HIGH;
+ } else {
+ return VERY_HIGH;
+ }
+ }
+
private boolean reassignedFromThisUser(TaskReassigned event) {
return event.hasFrom() && event.getFrom().equals(id());
}
diff --git a/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto b/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto
index f08d43925..3690e3ad0 100644
--- a/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto
+++ b/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto
@@ -26,4 +26,12 @@ message UserTasks {
int32 task_count = 4 [(column) = true];
bool is_overloaded = 5 [(column) = true];
+
+ Load load = 6 [(column) = true];
+
+ enum Load {
+ LOW = 0;
+ HIGH = 1;
+ VERY_HIGH = 2;
+ }
}
diff --git a/license-report.md b/license-report.md
index 449fa9245..240440df4 100644
--- a/license-report.md
+++ b/license-report.md
@@ -1,6 +1,6 @@
-# Dependencies of `io.spine:spine-client-js:1.2.9`
+# Dependencies of `io.spine:spine-client-js:1.2.10`
## Runtime
1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2
@@ -376,10 +376,10 @@
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
+This report was generated on **Tue Dec 17 15:47:22 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
-#NPM dependencies of `spine-web@1.2.9`
+#NPM dependencies of `spine-web@1.2.10`
## `Production` dependencies:
@@ -389,7 +389,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **encoding@0.1.12**
* Licenses: MIT
* Repository: [https://github.com/andris9/encoding](https://github.com/andris9/encoding)
-1. **google-protobuf@3.9.1**
+1. **google-protobuf@3.11.1**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/protocolbuffers/protobuf/tree/master/js](https://github.com/protocolbuffers/protobuf/tree/master/js)
1. **iconv-lite@0.4.24**
@@ -404,19 +404,19 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **node-fetch@1.7.3**
* Licenses: MIT
* Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch)
-1. **rxjs@6.5.2**
+1. **rxjs@6.5.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/reactivex/rxjs](https://github.com/reactivex/rxjs)
1. **safer-buffer@2.1.2**
* Licenses: MIT
* Repository: [https://github.com/ChALkeR/safer-buffer](https://github.com/ChALkeR/safer-buffer)
-1. **spine-web@1.2.9**
+1. **spine-web@1.2.10**
* Licenses: Apache-2.0
* Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web)
1. **tslib@1.10.0**
* Licenses: Apache-2.0
* Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib)
-1. **uuid@3.3.2**
+1. **uuid@3.3.3**
* Licenses: MIT
* Repository: [https://github.com/kelektiv/node-uuid](https://github.com/kelektiv/node-uuid)
1. **whatwg-fetch@3.0.0**
@@ -427,52 +427,55 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
## `Development` dependencies:
-1. **@babel/cli@7.5.5**
+1. **@babel/cli@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-cli](https://github.com/babel/babel/tree/master/packages/babel-cli)
1. **@babel/code-frame@7.5.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-code-frame](https://github.com/babel/babel/tree/master/packages/babel-code-frame)
-1. **@babel/core@7.5.5**
+1. **@babel/core@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-core](https://github.com/babel/babel/tree/master/packages/babel-core)
-1. **@babel/generator@7.5.5**
+1. **@babel/generator@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-generator](https://github.com/babel/babel/tree/master/packages/babel-generator)
-1. **@babel/helper-annotate-as-pure@7.0.0**
+1. **@babel/helper-annotate-as-pure@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure](https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure)
-1. **@babel/helper-builder-binary-assignment-operator-visitor@7.1.0**
+1. **@babel/helper-builder-binary-assignment-operator-visitor@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor](https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor)
-1. **@babel/helper-call-delegate@7.4.4**
+1. **@babel/helper-call-delegate@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate](https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate)
-1. **@babel/helper-define-map@7.5.5**
+1. **@babel/helper-create-regexp-features-plugin@7.7.4**
+ * Licenses: MIT
+ * Repository: [https://github.com/babel/babel](https://github.com/babel/babel)
+1. **@babel/helper-define-map@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-define-map](https://github.com/babel/babel/tree/master/packages/babel-helper-define-map)
-1. **@babel/helper-explode-assignable-expression@7.1.0**
+1. **@babel/helper-explode-assignable-expression@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression)
-1. **@babel/helper-function-name@7.1.0**
+1. **@babel/helper-function-name@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-function-name](https://github.com/babel/babel/tree/master/packages/babel-helper-function-name)
-1. **@babel/helper-get-function-arity@7.0.0**
+1. **@babel/helper-get-function-arity@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity](https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity)
-1. **@babel/helper-hoist-variables@7.4.4**
+1. **@babel/helper-hoist-variables@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables](https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables)
-1. **@babel/helper-member-expression-to-functions@7.5.5**
+1. **@babel/helper-member-expression-to-functions@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions](https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions)
-1. **@babel/helper-module-imports@7.0.0**
+1. **@babel/helper-module-imports@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports](https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports)
-1. **@babel/helper-module-transforms@7.5.5**
+1. **@babel/helper-module-transforms@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms](https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms)
-1. **@babel/helper-optimise-call-expression@7.0.0**
+1. **@babel/helper-optimise-call-expression@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression)
1. **@babel/helper-plugin-utils@7.0.0**
@@ -481,238 +484,241 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **@babel/helper-regex@7.5.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-regex](https://github.com/babel/babel/tree/master/packages/babel-helper-regex)
-1. **@babel/helper-remap-async-to-generator@7.1.0**
+1. **@babel/helper-remap-async-to-generator@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator)
-1. **@babel/helper-replace-supers@7.5.5**
+1. **@babel/helper-replace-supers@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers](https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers)
-1. **@babel/helper-simple-access@7.1.0**
+1. **@babel/helper-simple-access@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access](https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access)
-1. **@babel/helper-split-export-declaration@7.4.4**
+1. **@babel/helper-split-export-declaration@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration](https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration)
-1. **@babel/helper-wrap-function@7.2.0**
+1. **@babel/helper-wrap-function@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function](https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function)
-1. **@babel/helpers@7.5.5**
+1. **@babel/helpers@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-helpers](https://github.com/babel/babel/tree/master/packages/babel-helpers)
1. **@babel/highlight@7.5.0**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-highlight](https://github.com/babel/babel/tree/master/packages/babel-highlight)
-1. **@babel/parser@7.5.5**
+1. **@babel/parser@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-parser](https://github.com/babel/babel/tree/master/packages/babel-parser)
-1. **@babel/plugin-proposal-async-generator-functions@7.2.0**
+1. **@babel/plugin-proposal-async-generator-functions@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions)
-1. **@babel/plugin-proposal-dynamic-import@7.5.0**
+1. **@babel/plugin-proposal-dynamic-import@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import)
-1. **@babel/plugin-proposal-json-strings@7.2.0**
+1. **@babel/plugin-proposal-json-strings@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings)
-1. **@babel/plugin-proposal-object-rest-spread@7.5.5**
+1. **@babel/plugin-proposal-object-rest-spread@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread)
-1. **@babel/plugin-proposal-optional-catch-binding@7.2.0**
+1. **@babel/plugin-proposal-optional-catch-binding@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding)
-1. **@babel/plugin-proposal-unicode-property-regex@7.4.4**
+1. **@babel/plugin-proposal-unicode-property-regex@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex)
-1. **@babel/plugin-syntax-async-generators@7.2.0**
+1. **@babel/plugin-syntax-async-generators@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators)
-1. **@babel/plugin-syntax-dynamic-import@7.2.0**
+1. **@babel/plugin-syntax-dynamic-import@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import)
-1. **@babel/plugin-syntax-json-strings@7.2.0**
+1. **@babel/plugin-syntax-json-strings@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings)
-1. **@babel/plugin-syntax-object-rest-spread@7.2.0**
+1. **@babel/plugin-syntax-object-rest-spread@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread)
-1. **@babel/plugin-syntax-optional-catch-binding@7.2.0**
+1. **@babel/plugin-syntax-optional-catch-binding@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding)
-1. **@babel/plugin-transform-arrow-functions@7.2.0**
+1. **@babel/plugin-syntax-top-level-await@7.7.4**
+ * Licenses: MIT
+ * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await)
+1. **@babel/plugin-transform-arrow-functions@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions)
-1. **@babel/plugin-transform-async-to-generator@7.5.0**
+1. **@babel/plugin-transform-async-to-generator@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator)
-1. **@babel/plugin-transform-block-scoped-functions@7.2.0**
+1. **@babel/plugin-transform-block-scoped-functions@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions)
-1. **@babel/plugin-transform-block-scoping@7.5.5**
+1. **@babel/plugin-transform-block-scoping@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping)
-1. **@babel/plugin-transform-classes@7.5.5**
+1. **@babel/plugin-transform-classes@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes)
-1. **@babel/plugin-transform-computed-properties@7.2.0**
+1. **@babel/plugin-transform-computed-properties@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties)
-1. **@babel/plugin-transform-destructuring@7.5.0**
+1. **@babel/plugin-transform-destructuring@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring)
-1. **@babel/plugin-transform-dotall-regex@7.4.4**
+1. **@babel/plugin-transform-dotall-regex@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex)
-1. **@babel/plugin-transform-duplicate-keys@7.5.0**
+1. **@babel/plugin-transform-duplicate-keys@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys)
-1. **@babel/plugin-transform-exponentiation-operator@7.2.0**
+1. **@babel/plugin-transform-exponentiation-operator@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator)
-1. **@babel/plugin-transform-for-of@7.4.4**
+1. **@babel/plugin-transform-for-of@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of)
-1. **@babel/plugin-transform-function-name@7.4.4**
+1. **@babel/plugin-transform-function-name@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name)
-1. **@babel/plugin-transform-literals@7.2.0**
+1. **@babel/plugin-transform-literals@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals)
-1. **@babel/plugin-transform-member-expression-literals@7.2.0**
+1. **@babel/plugin-transform-member-expression-literals@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals)
-1. **@babel/plugin-transform-modules-amd@7.5.0**
+1. **@babel/plugin-transform-modules-amd@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd)
-1. **@babel/plugin-transform-modules-commonjs@7.5.0**
+1. **@babel/plugin-transform-modules-commonjs@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs)
-1. **@babel/plugin-transform-modules-systemjs@7.5.0**
+1. **@babel/plugin-transform-modules-systemjs@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs)
-1. **@babel/plugin-transform-modules-umd@7.2.0**
+1. **@babel/plugin-transform-modules-umd@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd)
-1. **@babel/plugin-transform-named-capturing-groups-regex@7.4.5**
+1. **@babel/plugin-transform-named-capturing-groups-regex@7.7.4**
* Licenses: MIT
- * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex)
-1. **@babel/plugin-transform-new-target@7.4.4**
+ * Repository: [https://github.com/babel/babel](https://github.com/babel/babel)
+1. **@babel/plugin-transform-new-target@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target)
-1. **@babel/plugin-transform-object-super@7.5.5**
+1. **@babel/plugin-transform-object-super@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super)
-1. **@babel/plugin-transform-parameters@7.4.4**
+1. **@babel/plugin-transform-parameters@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters)
-1. **@babel/plugin-transform-property-literals@7.2.0**
+1. **@babel/plugin-transform-property-literals@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals)
-1. **@babel/plugin-transform-regenerator@7.4.5**
+1. **@babel/plugin-transform-regenerator@7.7.5**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator)
-1. **@babel/plugin-transform-reserved-words@7.2.0**
+1. **@babel/plugin-transform-reserved-words@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words)
-1. **@babel/plugin-transform-shorthand-properties@7.2.0**
+1. **@babel/plugin-transform-shorthand-properties@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties)
-1. **@babel/plugin-transform-spread@7.2.2**
+1. **@babel/plugin-transform-spread@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread)
-1. **@babel/plugin-transform-sticky-regex@7.2.0**
+1. **@babel/plugin-transform-sticky-regex@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex)
-1. **@babel/plugin-transform-template-literals@7.4.4**
+1. **@babel/plugin-transform-template-literals@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals)
-1. **@babel/plugin-transform-typeof-symbol@7.2.0**
+1. **@babel/plugin-transform-typeof-symbol@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol)
-1. **@babel/plugin-transform-unicode-regex@7.4.4**
+1. **@babel/plugin-transform-unicode-regex@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex)
-1. **@babel/preset-env@7.5.5**
+1. **@babel/preset-env@7.7.6**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-preset-env](https://github.com/babel/babel/tree/master/packages/babel-preset-env)
-1. **@babel/register@7.5.5**
+1. **@babel/register@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-register](https://github.com/babel/babel/tree/master/packages/babel-register)
-1. **@babel/template@7.4.4**
+1. **@babel/template@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-template](https://github.com/babel/babel/tree/master/packages/babel-template)
-1. **@babel/traverse@7.5.5**
+1. **@babel/traverse@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-traverse](https://github.com/babel/babel/tree/master/packages/babel-traverse)
-1. **@babel/types@7.5.5**
+1. **@babel/types@7.7.4**
* Licenses: MIT
* Repository: [https://github.com/babel/babel/tree/master/packages/babel-types](https://github.com/babel/babel/tree/master/packages/babel-types)
1. **@firebase/app-types@0.4.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/app@0.4.14**
+1. **@firebase/app@0.4.17**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/auth-types@0.7.2**
+1. **@firebase/auth-types@0.8.0**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/auth@0.11.8**
+1. **@firebase/auth@0.12.0**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/database-types@0.4.2**
+1. **@firebase/database-types@0.4.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/database@0.4.12**
+1. **@firebase/database@0.5.4**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/firestore-types@1.4.4**
+1. **@firebase/firestore-types@1.5.0**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/firestore@1.4.9**
+1. **@firebase/firestore@1.5.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **@firebase/functions-types@0.3.8**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/functions@0.4.15**
+1. **@firebase/functions@0.4.18**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **@firebase/installations-types@0.1.2**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/installations@0.2.4**
+1. **@firebase/installations@0.2.7**
* Licenses: Apache-2.0
* Repository: unknown
-1. **@firebase/logger@0.1.22**
+1. **@firebase/logger@0.1.25**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **@firebase/messaging-types@0.3.2**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/messaging@0.4.8**
+1. **@firebase/messaging@0.4.11**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **@firebase/performance-types@0.0.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types)
-1. **@firebase/performance@0.2.15**
+1. **@firebase/performance@0.2.19**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance)
-1. **@firebase/polyfill@0.3.19**
+1. **@firebase/polyfill@0.3.22**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **@firebase/storage-types@0.3.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/storage@0.3.9**
+1. **@firebase/storage@0.3.12**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/util@0.2.25**
+1. **@firebase/util@0.2.28**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@firebase/webchannel-wrapper@0.2.24**
+1. **@firebase/webchannel-wrapper@0.2.26**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
-1. **@grpc/proto-loader@0.5.1**
+1. **@grpc/proto-loader@0.5.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node)
1. **@protobufjs/aspromise@1.1.2**
@@ -745,22 +751,25 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **@protobufjs/utf8@1.1.0**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js)
-1. **@sinonjs/commons@1.4.0**
+1. **@sinonjs/commons@1.6.0**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/sinonjs/commons](https://github.com/sinonjs/commons)
-1. **@sinonjs/formatio@3.2.1**
+1. **@sinonjs/formatio@3.2.2**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/sinonjs/formatio](https://github.com/sinonjs/formatio)
-1. **@sinonjs/samsam@3.3.2**
+1. **@sinonjs/samsam@3.3.3**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/sinonjs/samsam](https://github.com/sinonjs/samsam)
1. **@sinonjs/text-encoding@0.7.1**
* Licenses: (Unlicense OR Apache-2.0)
* Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding)
+1. **@types/bytebuffer@5.0.40**
+ * Licenses: MIT
+ * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)
1. **@types/long@4.0.0**
* Licenses: MIT
* Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)
-1. **@types/node@10.14.15**
+1. **@types/node@10.17.9**
* Licenses: MIT
* Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)
1. **@webassemblyjs/ast@1.8.5**
@@ -826,7 +835,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **abbrev@1.1.1**
* Licenses: ISC
* Repository: [https://github.com/isaacs/abbrev-js](https://github.com/isaacs/abbrev-js)
-1. **acorn@6.3.0**
+1. **acorn@6.4.0**
* Licenses: MIT
* Repository: [https://github.com/acornjs/acorn](https://github.com/acornjs/acorn)
1. **agent-base@4.3.0**
@@ -958,7 +967,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **binary-extensions@1.13.1**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/binary-extensions](https://github.com/sindresorhus/binary-extensions)
-1. **bluebird@3.5.5**
+1. **bluebird@3.7.2**
* Licenses: MIT
* Repository: [https://github.com/petkaantonov/bluebird](https://github.com/petkaantonov/bluebird)
1. **bn.js@4.11.8**
@@ -994,7 +1003,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **browserify-zlib@0.2.0**
* Licenses: MIT
* Repository: [https://github.com/devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib)
-1. **browserslist@4.6.6**
+1. **browserslist@4.8.2**
* Licenses: MIT
* Repository: [https://github.com/browserslist/browserslist](https://github.com/browserslist/browserslist)
1. **buffer-from@1.1.1**
@@ -1003,7 +1012,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **buffer-xor@1.0.3**
* Licenses: MIT
* Repository: [https://github.com/crypto-browserify/buffer-xor](https://github.com/crypto-browserify/buffer-xor)
-1. **buffer@4.9.1**
+1. **buffer@4.9.2**
* Licenses: MIT
* Repository: [https://github.com/feross/buffer](https://github.com/feross/buffer)
1. **builtin-status-codes@3.0.0**
@@ -1012,7 +1021,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **bytebuffer@5.0.1**
* Licenses: Apache-2.0
* Repository: [https://github.com/dcodeIO/bytebuffer.js](https://github.com/dcodeIO/bytebuffer.js)
-1. **cacache@12.0.2**
+1. **cacache@12.0.3**
* Licenses: ISC
* Repository: [https://github.com/npm/cacache](https://github.com/npm/cacache)
1. **cache-base@1.0.1**
@@ -1027,7 +1036,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **camelcase@5.3.1**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase)
-1. **caniuse-lite@1.0.30000989**
+1. **caniuse-lite@1.0.30001015**
* Licenses: CC-BY-4.0
* Repository: [https://github.com/ben-eb/caniuse-lite](https://github.com/ben-eb/caniuse-lite)
1. **chalk@1.1.3**
@@ -1036,13 +1045,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **chalk@2.4.2**
* Licenses: MIT
* Repository: [https://github.com/chalk/chalk](https://github.com/chalk/chalk)
-1. **chokidar@2.1.6**
+1. **chokidar@2.1.8**
* Licenses: MIT
* Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar)
-1. **chownr@1.1.1**
+1. **chownr@1.1.2**
* Licenses: ISC
* Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr)
-1. **chownr@1.1.2**
+1. **chownr@1.1.3**
* Licenses: ISC
* Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr)
1. **chrome-trace-event@1.0.2**
@@ -1063,7 +1072,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **code-point-at@1.1.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/code-point-at](https://github.com/sindresorhus/code-point-at)
-1. **codecov@3.5.0**
+1. **codecov@3.6.1**
* Licenses: MIT
* Repository: [https://github.com/codecov/codecov-node](https://github.com/codecov/codecov-node)
1. **collection-visit@1.0.0**
@@ -1081,7 +1090,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **commander@2.15.1**
* Licenses: MIT
* Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js)
-1. **commander@2.20.0**
+1. **commander@2.20.3**
+ * Licenses: MIT
+ * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js)
+1. **commander@4.0.1**
* Licenses: MIT
* Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js)
1. **commondir@1.0.1**
@@ -1096,16 +1108,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **concat-stream@1.6.2**
* Licenses: MIT
* Repository: [https://github.com/maxogden/concat-stream](https://github.com/maxogden/concat-stream)
-1. **console-browserify@1.1.0**
+1. **console-browserify@1.2.0**
* Licenses: MIT
- * Repository: [https://github.com/Raynos/console-browserify](https://github.com/Raynos/console-browserify)
+ * Repository: [https://github.com/browserify/console-browserify](https://github.com/browserify/console-browserify)
1. **console-control-strings@1.1.0**
* Licenses: ISC
* Repository: [https://github.com/iarna/console-control-strings](https://github.com/iarna/console-control-strings)
1. **constants-browserify@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/juliangruber/constants-browserify](https://github.com/juliangruber/constants-browserify)
-1. **convert-source-map@1.6.0**
+1. **convert-source-map@1.7.0**
* Licenses: MIT
* Repository: [https://github.com/thlorenz/convert-source-map](https://github.com/thlorenz/convert-source-map)
1. **copy-concurrently@1.0.5**
@@ -1114,16 +1126,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **copy-descriptor@0.1.1**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/copy-descriptor](https://github.com/jonschlinkert/copy-descriptor)
-1. **core-js-compat@3.2.0**
- * Licenses: MIT
- * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js)
-1. **core-js@2.6.9**
+1. **core-js-compat@3.5.0**
* Licenses: MIT
* Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js)
-1. **core-js@3.1.4**
+1. **core-js@2.6.11**
* Licenses: MIT
* Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js)
-1. **core-js@3.2.0**
+1. **core-js@3.2.1**
* Licenses: MIT
* Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js)
1. **core-util-is@1.0.2**
@@ -1150,12 +1159,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **crypto-browserify@3.12.0**
* Licenses: MIT
* Repository: [https://github.com/crypto-browserify/crypto-browserify](https://github.com/crypto-browserify/crypto-browserify)
-1. **cyclist@0.2.2**
- * Licenses: MIT*
- * Repository: [https://github.com/mafintosh/cyclist](https://github.com/mafintosh/cyclist)
-1. **date-now@0.1.4**
+1. **cyclist@1.0.1**
* Licenses: MIT
- * Repository: [https://github.com/Colingo/date-now](https://github.com/Colingo/date-now)
+ * Repository: [https://github.com/mafintosh/cyclist](https://github.com/mafintosh/cyclist)
1. **debug@2.6.9**
* Licenses: MIT
* Repository: [https://github.com/visionmedia/debug](https://github.com/visionmedia/debug)
@@ -1198,7 +1204,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **delegates@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/visionmedia/node-delegates](https://github.com/visionmedia/node-delegates)
-1. **des.js@1.0.0**
+1. **des.js@1.0.1**
* Licenses: MIT
* Repository: [https://github.com/indutny/des.js](https://github.com/indutny/des.js)
1. **detect-file@1.0.0**
@@ -1225,10 +1231,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **duplexify@3.7.1**
* Licenses: MIT
* Repository: [https://github.com/mafintosh/duplexify](https://github.com/mafintosh/duplexify)
-1. **electron-to-chromium@1.3.224**
+1. **electron-to-chromium@1.3.322**
* Licenses: ISC
* Repository: [https://github.com/kilian/electron-to-chromium](https://github.com/kilian/electron-to-chromium)
-1. **elliptic@6.5.0**
+1. **elliptic@6.5.2**
* Licenses: MIT
* Repository: [https://github.com/indutny/elliptic](https://github.com/indutny/elliptic)
1. **emoji-regex@7.0.3**
@@ -1237,12 +1243,15 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **emojis-list@2.1.0**
* Licenses: MIT
* Repository: [https://github.com/kikobeats/emojis-list](https://github.com/kikobeats/emojis-list)
-1. **end-of-stream@1.4.1**
+1. **end-of-stream@1.4.4**
* Licenses: MIT
* Repository: [https://github.com/mafintosh/end-of-stream](https://github.com/mafintosh/end-of-stream)
1. **enhanced-resolve@4.1.0**
* Licenses: MIT
* Repository: [https://github.com/webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve)
+1. **enhanced-resolve@4.1.1**
+ * Licenses: MIT
+ * Repository: [https://github.com/webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve)
1. **errno@0.1.7**
* Licenses: MIT
* Repository: [https://github.com/rvagg/node-errno](https://github.com/rvagg/node-errno)
@@ -1270,7 +1279,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **esrecurse@4.2.1**
* Licenses: BSD-2-Clause
* Repository: [https://github.com/estools/esrecurse](https://github.com/estools/esrecurse)
-1. **estraverse@4.2.0**
+1. **estraverse@4.3.0**
* Licenses: BSD-2-Clause
* Repository: [https://github.com/estools/estraverse](https://github.com/estools/estraverse)
1. **esutils@2.0.3**
@@ -1330,7 +1339,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **findup-sync@3.0.0**
* Licenses: MIT
* Repository: [https://github.com/gulpjs/findup-sync](https://github.com/gulpjs/findup-sync)
-1. **firebase@6.3.5**
+1. **firebase@6.6.2**
* Licenses: Apache-2.0
* Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk)
1. **flush-write-stream@1.1.1**
@@ -1384,6 +1393,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **glob@7.1.4**
* Licenses: ISC
* Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob)
+1. **glob@7.1.6**
+ * Licenses: ISC
+ * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob)
1. **global-modules@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/global-modules](https://github.com/jonschlinkert/global-modules)
@@ -1402,16 +1414,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **globals@9.18.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/globals](https://github.com/sindresorhus/globals)
-1. **graceful-fs@4.2.1**
+1. **graceful-fs@4.2.3**
* Licenses: ISC
* Repository: [https://github.com/isaacs/node-graceful-fs](https://github.com/isaacs/node-graceful-fs)
1. **growl@1.10.5**
* Licenses: MIT
* Repository: [https://github.com/tj/node-growl](https://github.com/tj/node-growl)
-1. **grpc@1.22.2**
+1. **grpc@1.23.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node)
-1. **handlebars@4.3.1**
+1. **handlebars@4.5.3**
* Licenses: MIT
* Repository: [https://github.com/wycats/handlebars.js](https://github.com/wycats/handlebars.js)
1. **has-ansi@2.0.0**
@@ -1420,7 +1432,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **has-flag@3.0.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/has-flag](https://github.com/sindresorhus/has-flag)
-1. **has-symbols@1.0.0**
+1. **has-symbols@1.0.1**
* Licenses: MIT
* Repository: [https://github.com/ljharb/has-symbols](https://github.com/ljharb/has-symbols)
1. **has-unicode@2.0.1**
@@ -1456,7 +1468,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **homedir-polyfill@1.0.3**
* Licenses: MIT
* Repository: [https://github.com/doowb/homedir-polyfill](https://github.com/doowb/homedir-polyfill)
-1. **hosted-git-info@2.8.2**
+1. **hosted-git-info@2.8.5**
* Licenses: ISC
* Repository: [https://github.com/npm/hosted-git-info](https://github.com/npm/hosted-git-info)
1. **http-parser-js@0.4.10**
@@ -1465,10 +1477,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **https-browserify@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/substack/https-browserify](https://github.com/substack/https-browserify)
-1. **https-proxy-agent@2.2.2**
+1. **https-proxy-agent@2.2.4**
* Licenses: MIT
* Repository: [https://github.com/TooTallNate/node-https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent)
-1. **iconv-lite@0.4.23**
+1. **iconv-lite@0.4.24**
* Licenses: MIT
* Repository: [https://github.com/ashtuchkin/iconv-lite](https://github.com/ashtuchkin/iconv-lite)
1. **idb@3.0.2**
@@ -1483,6 +1495,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **ignore-walk@3.0.1**
* Licenses: ISC
* Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk)
+1. **ignore-walk@3.0.3**
+ * Licenses: ISC
+ * Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk)
1. **import-local@2.0.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/import-local](https://github.com/sindresorhus/import-local)
@@ -1570,9 +1585,6 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **is-number@3.0.0**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/is-number](https://github.com/jonschlinkert/is-number)
-1. **is-plain-obj@1.1.0**
- * Licenses: MIT
- * Repository: [https://github.com/sindresorhus/is-plain-obj](https://github.com/sindresorhus/is-plain-obj)
1. **is-plain-object@2.0.4**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/is-plain-object](https://github.com/jonschlinkert/is-plain-object)
@@ -1645,7 +1657,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **json5@1.0.1**
* Licenses: MIT
* Repository: [https://github.com/json5/json5](https://github.com/json5/json5)
-1. **json5@2.1.0**
+1. **json5@2.1.1**
* Licenses: MIT
* Repository: [https://github.com/json5/json5](https://github.com/json5/json5)
1. **just-extend@4.0.2**
@@ -1741,6 +1753,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **memory-fs@0.4.1**
* Licenses: MIT
* Repository: [https://github.com/webpack/memory-fs](https://github.com/webpack/memory-fs)
+1. **memory-fs@0.5.0**
+ * Licenses: MIT
+ * Repository: [https://github.com/webpack/memory-fs](https://github.com/webpack/memory-fs)
1. **merge-source-map@1.1.0**
* Licenses: MIT
* Repository: [https://github.com/keik/merge-source-map](https://github.com/keik/merge-source-map)
@@ -1762,6 +1777,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **minimatch@3.0.4**
* Licenses: ISC
* Repository: [https://github.com/isaacs/minimatch](https://github.com/isaacs/minimatch)
+1. **minimist@0.0.10**
+ * Licenses: MIT
+ * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist)
1. **minimist@0.0.8**
* Licenses: MIT
* Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist)
@@ -1813,7 +1831,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **nice-try@1.0.5**
* Licenses: MIT
* Repository: [https://github.com/electerious/nice-try](https://github.com/electerious/nice-try)
-1. **nise@1.5.1**
+1. **nise@1.5.2**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/sinonjs/nise](https://github.com/sinonjs/nise)
1. **node-fetch@2.6.0**
@@ -1828,7 +1846,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **node-pre-gyp@0.13.0**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/mapbox/node-pre-gyp](https://github.com/mapbox/node-pre-gyp)
-1. **node-releases@1.1.27**
+1. **node-releases@1.1.42**
* Licenses: MIT
* Repository: [https://github.com/chicoxyzzy/node-releases](https://github.com/chicoxyzzy/node-releases)
1. **nopt@4.0.1**
@@ -1846,7 +1864,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **npm-bundled@1.0.6**
* Licenses: ISC
* Repository: [https://github.com/npm/npm-bundled](https://github.com/npm/npm-bundled)
-1. **npm-packlist@1.4.1**
+1. **npm-normalize-package-bin@1.0.1**
+ * Licenses: ISC
+ * Repository: [https://github.com/npm/npm-normalize-package-bin](https://github.com/npm/npm-normalize-package-bin)
+1. **npm-packlist@1.4.4**
* Licenses: ISC
* Repository: [https://github.com/npm/npm-packlist](https://github.com/npm/npm-packlist)
1. **npm-run-path@2.0.2**
@@ -1906,9 +1927,6 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **osenv@0.1.5**
* Licenses: ISC
* Repository: [https://github.com/npm/osenv](https://github.com/npm/osenv)
-1. **output-file-sync@2.0.1**
- * Licenses: ISC
- * Repository: [https://github.com/shinnn/output-file-sync](https://github.com/shinnn/output-file-sync)
1. **p-defer@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/p-defer](https://github.com/sindresorhus/p-defer)
@@ -1921,7 +1939,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **p-limit@1.3.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit)
-1. **p-limit@2.2.0**
+1. **p-limit@2.2.1**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit)
1. **p-locate@2.0.0**
@@ -1942,10 +1960,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **pako@1.0.10**
* Licenses: (MIT AND Zlib)
* Repository: [https://github.com/nodeca/pako](https://github.com/nodeca/pako)
-1. **parallel-transform@1.1.0**
+1. **parallel-transform@1.2.0**
* Licenses: MIT
* Repository: [https://github.com/mafintosh/parallel-transform](https://github.com/mafintosh/parallel-transform)
-1. **parse-asn1@5.1.4**
+1. **parse-asn1@5.1.5**
* Licenses: ISC
* Repository: [https://github.com/crypto-browserify/parse-asn1](https://github.com/crypto-browserify/parse-asn1)
1. **parse-json@4.0.0**
@@ -1975,7 +1993,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **path-parse@1.0.6**
* Licenses: MIT
* Repository: [https://github.com/jbgutierrez/path-parse](https://github.com/jbgutierrez/path-parse)
-1. **path-to-regexp@1.7.0**
+1. **path-to-regexp@1.8.0**
* Licenses: MIT
* Repository: [https://github.com/pillarjs/path-to-regexp](https://github.com/pillarjs/path-to-regexp)
1. **path-type@3.0.0**
@@ -2068,7 +2086,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **read-installed@4.0.3**
* Licenses: ISC
* Repository: [https://github.com/isaacs/read-installed](https://github.com/isaacs/read-installed)
-1. **read-package-json@2.0.13**
+1. **read-package-json@2.1.1**
* Licenses: ISC
* Repository: [https://github.com/npm/read-package-json](https://github.com/npm/read-package-json)
1. **read-pkg-up@4.0.0**
@@ -2101,13 +2119,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **regex-not@1.0.2**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/regex-not](https://github.com/jonschlinkert/regex-not)
-1. **regexp-tree@0.1.11**
- * Licenses: MIT
- * Repository: [https://github.com/DmitrySoshnikov/regexp-tree](https://github.com/DmitrySoshnikov/regexp-tree)
-1. **regexpu-core@4.5.5**
+1. **regexpu-core@4.6.0**
* Licenses: MIT
* Repository: [https://github.com/mathiasbynens/regexpu-core](https://github.com/mathiasbynens/regexpu-core)
-1. **regjsgen@0.5.0**
+1. **regjsgen@0.5.1**
* Licenses: MIT
* Repository: [https://github.com/bnjmnt4n/regjsgen](https://github.com/bnjmnt4n/regjsgen)
1. **regjsparser@0.6.0**
@@ -2149,13 +2164,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **resolve-url@0.2.1**
* Licenses: MIT
* Repository: [https://github.com/lydell/resolve-url](https://github.com/lydell/resolve-url)
-1. **resolve@1.12.0**
+1. **resolve@1.13.1**
* Licenses: MIT
* Repository: [https://github.com/browserify/resolve](https://github.com/browserify/resolve)
1. **ret@0.1.15**
* Licenses: MIT
* Repository: [https://github.com/fent/ret.js](https://github.com/fent/ret.js)
-1. **rimraf@2.6.3**
+1. **rimraf@2.7.1**
* Licenses: ISC
* Repository: [https://github.com/isaacs/rimraf](https://github.com/isaacs/rimraf)
1. **ripemd160@2.0.2**
@@ -2179,13 +2194,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **schema-utils@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/webpack-contrib/schema-utils](https://github.com/webpack-contrib/schema-utils)
-1. **semver@5.7.0**
+1. **semver@5.7.1**
* Licenses: ISC
* Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver)
1. **semver@6.3.0**
* Licenses: ISC
* Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver)
-1. **serialize-javascript@1.7.0**
+1. **serialize-javascript@2.1.2**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/yahoo/serialize-javascript](https://github.com/yahoo/serialize-javascript)
1. **set-blocking@2.0.0**
@@ -2206,18 +2221,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **shebang-regex@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/shebang-regex](https://github.com/sindresorhus/shebang-regex)
-1. **signal-exit@3.0.1**
- * Licenses: ISC
- * Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit)
1. **signal-exit@3.0.2**
* Licenses: ISC
* Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit)
-1. **sinon@7.4.1**
+1. **sinon@7.5.0**
* Licenses: BSD-3-Clause
* Repository: [https://github.com/sinonjs/sinon](https://github.com/sinonjs/sinon)
-1. **slash@1.0.0**
- * Licenses: MIT
- * Repository: [https://github.com/sindresorhus/slash](https://github.com/sindresorhus/slash)
1. **slash@2.0.0**
* Licenses: MIT
* Repository: [https://github.com/sindresorhus/slash](https://github.com/sindresorhus/slash)
@@ -2239,7 +2248,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **source-map-resolve@0.5.2**
* Licenses: MIT
* Repository: [https://github.com/lydell/source-map-resolve](https://github.com/lydell/source-map-resolve)
-1. **source-map-support@0.5.13**
+1. **source-map-support@0.5.16**
* Licenses: MIT
* Repository: [https://github.com/evanw/node-source-map-support](https://github.com/evanw/node-source-map-support)
1. **source-map-url@0.4.0**
@@ -2275,7 +2284,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **spdx-satisfies@4.0.1**
* Licenses: MIT
* Repository: [https://github.com/kemitchell/spdx-satisfies.js](https://github.com/kemitchell/spdx-satisfies.js)
-1. **spine-web@1.2.9**
+1. **spine-web@1.2.10**
* Licenses: Apache-2.0
* Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web)
1. **split-string@3.1.0**
@@ -2299,7 +2308,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **stream-http@2.8.3**
* Licenses: MIT
* Repository: [https://github.com/jhiesey/stream-http](https://github.com/jhiesey/stream-http)
-1. **stream-shift@1.0.0**
+1. **stream-shift@1.0.1**
* Licenses: MIT
* Repository: [https://github.com/mafintosh/stream-shift](https://github.com/mafintosh/stream-shift)
1. **string-width@1.0.2**
@@ -2347,12 +2356,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **teeny-request@3.11.3**
* Licenses: Apache-2.0
* Repository: [https://github.com/fhinkel/teeny-request](https://github.com/fhinkel/teeny-request)
-1. **terser-webpack-plugin@1.4.1**
+1. **terser-webpack-plugin@1.4.3**
* Licenses: MIT
* Repository: [https://github.com/webpack-contrib/terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin)
-1. **terser@4.1.4**
+1. **terser@4.4.2**
* Licenses: BSD-2-Clause
- * Repository: [https://github.com/fabiosantoscode/terser](https://github.com/fabiosantoscode/terser)
+ * Repository: [https://github.com/terser/terser](https://github.com/terser/terser)
1. **test-exclude@5.2.3**
* Licenses: ISC
* Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs)
@@ -2383,9 +2392,6 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **treeify@1.1.0**
* Licenses: MIT
* Repository: [https://github.com/notatestuser/treeify](https://github.com/notatestuser/treeify)
-1. **trim-right@1.0.1**
- * Licenses: MIT
- * Repository: [https://github.com/sindresorhus/trim-right](https://github.com/sindresorhus/trim-right)
1. **tty-browserify@0.0.0**
* Licenses: MIT
* Repository: [https://github.com/substack/tty-browserify](https://github.com/substack/tty-browserify)
@@ -2395,7 +2401,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **typedarray@0.0.6**
* Licenses: MIT
* Repository: [https://github.com/substack/typedarray](https://github.com/substack/typedarray)
-1. **uglify-js@3.6.0**
+1. **uglify-js@3.7.2**
* Licenses: BSD-2-Clause
* Repository: [https://github.com/mishoo/UglifyJS2](https://github.com/mishoo/UglifyJS2)
1. **unicode-canonical-property-names-ecmascript@1.0.4**
@@ -2422,7 +2428,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **unset-value@1.0.0**
* Licenses: MIT
* Repository: [https://github.com/jonschlinkert/unset-value](https://github.com/jonschlinkert/unset-value)
-1. **upath@1.1.2**
+1. **upath@1.2.0**
* Licenses: MIT
* Repository: [https://github.com/anodynos/upath](https://github.com/anodynos/upath)
1. **uri-js@4.2.2**
@@ -2458,22 +2464,22 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **validate-npm-package-license@3.0.4**
* Licenses: Apache-2.0
* Repository: [https://github.com/kemitchell/validate-npm-package-license.js](https://github.com/kemitchell/validate-npm-package-license.js)
-1. **vm-browserify@1.1.0**
+1. **vm-browserify@1.1.2**
* Licenses: MIT
* Repository: [https://github.com/substack/vm-browserify](https://github.com/substack/vm-browserify)
1. **watchpack@1.6.0**
* Licenses: MIT
* Repository: [https://github.com/webpack/watchpack](https://github.com/webpack/watchpack)
-1. **webpack-cli@3.3.6**
+1. **webpack-cli@3.3.10**
* Licenses: MIT
* Repository: [https://github.com/webpack/webpack-cli](https://github.com/webpack/webpack-cli)
-1. **webpack-merge@4.2.1**
+1. **webpack-merge@4.2.2**
* Licenses: MIT
* Repository: [https://github.com/survivejs/webpack-merge](https://github.com/survivejs/webpack-merge)
1. **webpack-sources@1.4.3**
* Licenses: MIT
* Repository: [https://github.com/webpack/webpack-sources](https://github.com/webpack/webpack-sources)
-1. **webpack@4.39.1**
+1. **webpack@4.41.2**
* Licenses: MIT
* Repository: [https://github.com/webpack/webpack](https://github.com/webpack/webpack)
1. **websocket-driver@0.7.3**
@@ -2533,6 +2539,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
1. **yallist@3.0.3**
* Licenses: ISC
* Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist)
+1. **yallist@3.1.1**
+ * Licenses: ISC
+ * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist)
1. **yargs-parser@13.1.1**
* Licenses: ISC
* Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser)
@@ -2547,12 +2556,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice
* Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs)
-This report was generated on **Thu Dec 05 2019 13:15:47 GMT+0200 (Eastern European Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library.
+This report was generated on **Tue Dec 17 2019 15:47:24 GMT+0200 (Eastern European Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library.
-# Dependencies of `io.spine.gcloud:spine-firebase-web:1.2.9`
+# Dependencies of `io.spine.gcloud:spine-firebase-web:1.2.10`
## Runtime
1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10
@@ -3395,12 +3404,12 @@ This report was generated on **Thu Dec 05 2019 13:15:47 GMT+0200 (Eastern Europe
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:16:39 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
+This report was generated on **Tue Dec 17 15:47:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
-# Dependencies of `io.spine:spine-js-tests:1.2.9`
+# Dependencies of `io.spine:spine-js-tests:1.2.10`
## Runtime
1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2
@@ -3806,12 +3815,12 @@ This report was generated on **Thu Dec 05 13:16:39 EET 2019** using [Gradle-Lice
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:17:11 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
+This report was generated on **Tue Dec 17 15:47:43 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
-# Dependencies of `io.spine:spine-test-app:1.2.9`
+# Dependencies of `io.spine:spine-test-app:1.2.10`
## Runtime
1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10
@@ -5409,12 +5418,12 @@ This report was generated on **Thu Dec 05 13:17:11 EET 2019** using [Gradle-Lice
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:18:19 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
+This report was generated on **Tue Dec 17 15:48:06 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
-# Dependencies of `io.spine:spine-testutil-web:1.2.9`
+# Dependencies of `io.spine:spine-testutil-web:1.2.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
@@ -5881,12 +5890,12 @@ This report was generated on **Thu Dec 05 13:18:19 EET 2019** using [Gradle-Lice
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:18:28 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
+This report was generated on **Tue Dec 17 15:48:15 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
-# Dependencies of `io.spine:spine-web:1.2.9`
+# Dependencies of `io.spine:spine-web:1.2.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
@@ -6429,4 +6438,4 @@ This report was generated on **Thu Dec 05 13:18:28 EET 2019** using [Gradle-Lice
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Thu Dec 05 13:18:39 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
\ No newline at end of file
+This report was generated on **Tue Dec 17 15:48:23 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index e11a8c23a..48191f501 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject.
io.spine
spine-web
-1.2.9
+1.2.10
2015
@@ -76,7 +76,7 @@ all modules and does not describe the project structure per-subproject.
io.spine
spine-server
- 1.2.9
+ 1.2.10
compile
@@ -100,13 +100,13 @@ all modules and does not describe the project structure per-subproject.
io.spine
spine-testutil-client
- 1.2.9
+ 1.2.10
test
io.spine.tools
spine-mute-logging
- 1.2.3
+ 1.2.4
test
@@ -168,17 +168,17 @@ all modules and does not describe the project structure per-subproject.
io.spine
spine-client
- 1.2.9
+ 1.2.10
io.spine.tools
spine-errorprone-checks
- 1.2.3
+ 1.2.4
io.spine.tools
spine-protoc-plugin
- 1.2.3
+ 1.2.4
javax.servlet
diff --git a/version.gradle b/version.gradle
index ba0c60158..94e6f23b4 100644
--- a/version.gradle
+++ b/version.gradle
@@ -19,10 +19,10 @@
*/
ext {
- spineVersion = '1.2.9'
- spineBaseVersion = '1.2.3'
+ spineVersion = '1.2.10'
+ spineBaseVersion = '1.2.4'
- versionToPublish = '1.2.9'
+ versionToPublish = '1.2.10'
versionToPublishJs = versionToPublish
servletApiVersion = '3.1.0'