in_source_id stringlengths 13 58 | issue stringlengths 3 241k | before_files listlengths 0 3 | after_files listlengths 0 3 | pr_diff stringlengths 109 107M ⌀ |
|---|---|---|---|---|
OpenMined__PySyft-4708 | Add Windows to CI
## Description
Add windows to the CI tests as a separate step for say python 3.8 and torch==1.6.0 initially just to get things working. Then if it works expand to all versions to see any potential issues.
## Definition of Done
This ticket is done when we know what does and doesn't run on Windows in CI from the current "fast" tests and the new "slow" tests. Post a screenshot and link to CI here when it's running.
| [
{
"content": "# stdlib\nfrom typing import Dict\nfrom typing import Union\n\n# third party\nfrom packaging import version\nimport torch\n\n# syft relative\nfrom . import parameter # noqa: 401\nfrom . import uppercase_tensor # noqa: 401\nfrom ...ast.globals import Globals\nfrom .allowlist import allowlist\n\nT... | [
{
"content": "# stdlib\nfrom typing import Dict\nfrom typing import Union\n\n# third party\nfrom packaging import version\nimport torch\n\n# syft relative\nfrom . import parameter # noqa: 401\nfrom . import uppercase_tensor # noqa: 401\nfrom ...ast.globals import Globals\nfrom .allowlist import allowlist\n\nT... | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index d08e095ab60..d770082e3bc 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -8,19 +8,21 @@ on:
paths:
- "**.py"
- "setup.cfg"
+ - ".github/workflows/tests.yml"
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**.py"
- "setup.cfg"
+ - ".github/workflows/tests.yml"
jobs:
python-tests:
strategy:
max-parallel: 24
matrix:
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.7, 3.6]
torch-version: [1.5.0, 1.5.1, 1.6.0]
@@ -49,6 +51,14 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
+ - uses: actions/cache@v2
+ if: startsWith(runner.os, 'Windows')
+ with:
+ path: '%LOCALAPPDATA%\pip\Cache'
+ key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
+ restore-keys: |
+ ${{ runner.os }}-pip-${{ matrix.python-version }}-
+
- name: Cache packages
uses: actions/cache@v2
id: cache-reqs
@@ -61,7 +71,8 @@ jobs:
pip install bandit
bandit -r src -ll
- - name: Run normal tests without coverage
+ - name: Install pytorch Linux/MacOS
+ if: startsWith(runner.os, 'Windows') != true
env:
TORCH_VERSION: ${{ matrix.torch-version }}
run: |
@@ -75,8 +86,25 @@ jobs:
then
TORCHVISION_VERSION="0.7"
fi
- pip install torch==$TORCH_VERSION
+ pip install torch==${TORCH_VERSION}
pip install torchvision==${TORCHVISION_VERSION}
+
+ - name: Install pytorch Windows
+ if: startsWith(runner.os, 'Windows')
+ env:
+ TORCH_VERSION: ${{ matrix.torch-version }}
+ run: |
+ If ($env:TORCH_VERSION -eq "1.5.0") {
+ $env:TORCHVISION_VERSION="0.6.0"
+ } Elseif ( $env:TORCH_VERSION -eq "1.5.1" ) {
+ $env:TORCHVISION_VERSION="0.6.1"
+ } Elseif ($env:TORCH_VERSION -eq "1.6.0") {
+ $env:TORCHVISION_VERSION="0.7"
+ }
+ pip install torch==$env:TORCH_VERSION+cpu torchvision==$env:TORCHVISION_VERSION+cpu -f https://download.pytorch.org/whl/torch_stable.html
+
+ - name: Run normal tests without coverage
+ run: |
pip install -r requirements.txt
pip install -e .
pip freeze | grep torch
@@ -105,14 +133,6 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- - uses: actions/cache@v2
- if: startsWith(runner.os, 'macOS')
- with:
- path: ~/Library/Caches/pip
- key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
- restore-keys: |
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
-
- name: Cache packages
uses: actions/cache@v2
id: cache-reqs
@@ -150,21 +170,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
- if: startsWith(runner.os, 'Linux')
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- - uses: actions/cache@v2
- if: startsWith(runner.os, 'macOS')
- with:
- path: ~/Library/Caches/pip
- key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
- restore-keys: |
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
-
- name: Cache packages
uses: actions/cache@v2
id: cache-reqs
@@ -183,7 +194,7 @@ jobs:
strategy:
max-parallel: 24
matrix:
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.7, 3.6]
torch-version: [1.5.0, 1.5.1, 1.6.0]
diff --git a/docs/installing.rst b/docs/installing.rst
index f9f177c22da..f659287b32c 100644
--- a/docs/installing.rst
+++ b/docs/installing.rst
@@ -402,7 +402,7 @@ Step 1 - Install Git
--------------------
Here is the download link for Git on windows: `Git for Windows <https://gitforwindows.org/>`_
-or in case you are lazy! you can use `Github for Desktop. <https://desktop.github.com/>`_
+Note: You need git in your path or the `pip install -e .` will fail.
Step 2 - Install Microsoft Build tools
--------------------------------------
diff --git a/src/syft/lib/torch/__init__.py b/src/syft/lib/torch/__init__.py
index 5413fe9ac0d..3700f5aa4c6 100644
--- a/src/syft/lib/torch/__init__.py
+++ b/src/syft/lib/torch/__init__.py
@@ -12,7 +12,7 @@
from ...ast.globals import Globals
from .allowlist import allowlist
-TORCH_VERSION = version.parse(torch.__version__)
+TORCH_VERSION = version.parse(torch.__version__.split("+")[0])
def get_return_type(support_dict: Union[str, Dict[str, str]]) -> str:
diff --git a/tests/syft/grid/connections/webrtc_test.py b/tests/syft/grid/connections/webrtc_test.py
index 31feeb3eada..b209cf614d3 100644
--- a/tests/syft/grid/connections/webrtc_test.py
+++ b/tests/syft/grid/connections/webrtc_test.py
@@ -20,7 +20,8 @@ def get_signing_key() -> SigningKey:
return SigningKey(bytes.fromhex(key))
-def test_init_without_event_loop() -> None:
+@pytest.mark.asyncio
+async def test_init_without_event_loop() -> None:
nest_asyncio.apply()
domain = Domain(name="test")
diff --git a/tests/syft/lib/allowlist_report.py b/tests/syft/lib/allowlist_report.py
index d4128b75e85..2ccbad3d052 100644
--- a/tests/syft/lib/allowlist_report.py
+++ b/tests/syft/lib/allowlist_report.py
@@ -25,7 +25,7 @@
# syft absolute
from syft.lib.torch import allowlist # noqa: E402
-TORCH_VERSION = version.parse(th.__version__)
+TORCH_VERSION = version.parse(th.__version__.split("+")[0])
py_ver = sys.version_info
PYTHON_VERSION = version.parse(f"{py_ver.major}.{py_ver.minor}")
OS_NAME = platform.system().lower()
diff --git a/tests/syft/lib/allowlist_test.py b/tests/syft/lib/allowlist_test.py
index 80e02226571..7b4cd58b828 100644
--- a/tests/syft/lib/allowlist_test.py
+++ b/tests/syft/lib/allowlist_test.py
@@ -33,7 +33,7 @@
from syft.lib.torch.tensor_util import TORCH_STR_DTYPE
from syft.lib.util import full_name_with_qualname
-TORCH_VERSION = version.parse(th.__version__)
+TORCH_VERSION = version.parse(th.__version__.split("+")[0])
py_ver = sys.version_info
PYTHON_VERSION = version.parse(f"{py_ver.major}.{py_ver.minor}")
OS_NAME = platform.system().lower()
|
xonsh__xonsh-2295 | Python 3.4 no longer supported?
Hi all,
First of all, thank you all for your great work.
I have noticed that the version bump to 0.5.7 introduced a call to `os.scandir` which is not supported by Python <3.5 afaik. As I am still using Ubuntu 14.04 with Python 3.4 on a few machines, this is a little bit of a headache... I don't know the codebase, but it looks like `xonsh.platform.scandir` could be used instead?
| [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"Prompt formatter for simple version control branchs\"\"\"\n# pylint:disable=no-member, invalid-name\n\nimport os\nimport sys\nimport queue\nimport builtins\nimport threading\nimport subprocess\n\nimport xonsh.tools as xt\n\n\ndef _get_git_branch(q):\n try:\n ... | [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"Prompt formatter for simple version control branchs\"\"\"\n# pylint:disable=no-member, invalid-name\n\nimport os\nimport sys\nimport queue\nimport builtins\nimport threading\nimport subprocess\n\nimport xonsh.tools as xt\n\n\ndef _get_git_branch(q):\n try:\n ... | diff --git a/news/scandir_bug.rst b/news/scandir_bug.rst
new file mode 100644
index 0000000000..3bfbfda90d
--- /dev/null
+++ b/news/scandir_bug.rst
@@ -0,0 +1,13 @@
+**Added:** None
+
+**Changed:** None
+
+**Deprecated:** None
+
+**Removed:** None
+
+**Fixed:**
+
+* Fixed a bug on py34 where os.scandir was used by accident.
+
+**Security:** None
diff --git a/tests/test_prompt.py b/tests/test_prompt.py
index 6d1f274b8b..bdbe84a9fa 100644
--- a/tests/test_prompt.py
+++ b/tests/test_prompt.py
@@ -150,6 +150,17 @@ def test_test_repo(test_repo):
assert os.path.isfile(os.path.join(test_repo['dir'], 'test-file'))
+def test_no_repo(xonsh_builtins):
+ import queue
+ temp_dir = tempfile.mkdtemp()
+ xonsh_builtins.__xonsh_env__ = Env(VC_BRANCH_TIMEOUT=2, PWD=temp_dir)
+ q = queue.Queue()
+ try:
+ vc._get_hg_root(q)
+ except AttributeError:
+ assert False
+
+
def test_vc_get_branch(test_repo, xonsh_builtins):
xonsh_builtins.__xonsh_env__ = Env(VC_BRANCH_TIMEOUT=2)
# get corresponding function from vc module
diff --git a/xonsh/prompt/vc.py b/xonsh/prompt/vc.py
index 3f7ad61611..6030b264fa 100644
--- a/xonsh/prompt/vc.py
+++ b/xonsh/prompt/vc.py
@@ -58,7 +58,7 @@ def _get_hg_root(q):
while True:
if not os.path.isdir(_curpwd):
return False
- if any([b.name == '.hg' for b in os.scandir(_curpwd)]):
+ if any([b.name == '.hg' for b in xt.scandir(_curpwd)]):
q.put(_curpwd)
break
else:
|
ddionrails__ddionrails-801 | Add dynamic range slider for publication year facet
see <https://opensource.appbase.io/reactive-manual/vue/range-components/dynamicrangeslider.html>
| [
{
"content": "# -*- coding: utf-8 -*-\n\n\"\"\" Search documents for indexing models from ddionrails.publications app into Elasticsearch\n\n\nAuthors:\n * 2019 Heinz-Alexander Fütterer (DIW Berlin)\n\nLicense:\n | **AGPL-3.0 GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) 3.0**.\n | See LICENSE at the GitHub\... | [
{
"content": "# -*- coding: utf-8 -*-\n\n\"\"\" Search documents for indexing models from ddionrails.publications app into Elasticsearch\n\n\nAuthors:\n * 2019 Heinz-Alexander Fütterer (DIW Berlin)\n\nLicense:\n | **AGPL-3.0 GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) 3.0**.\n | See LICENSE at the GitHub\... | diff --git a/assets/js/search/components/facets/PublicationYearFacet.vue b/assets/js/search/components/facets/PublicationYearFacet.vue
index 507c41b3a..4ad01f6ff 100644
--- a/assets/js/search/components/facets/PublicationYearFacet.vue
+++ b/assets/js/search/components/facets/PublicationYearFacet.vue
@@ -1,22 +1,25 @@
<template>
- <multi-list
+ <dynamic-range-slider
+ dataField="year"
componentId="Year"
- data-field="year"
title="Year"
- :showSearch="false"
- selectAllLabel="Select all"
+ :showFilter="true"
:URLParams="true"
- :react="react"
+ :rangeLabels="function(min, max){
+ return {
+ start: min,
+ end: max,
+ }
+ }"
class="card facet"
:innerClass="{
- title: 'card-header',
+ title: 'card-header'
}"
- />
+/>
</template>
<script>
export default {
- name: "PublicationYearFacet",
- props: ["react"]
+ name: "PublicationYearFacet"
};
</script>
\ No newline at end of file
diff --git a/assets/js/search/components/searches/PublicationSearch.vue b/assets/js/search/components/searches/PublicationSearch.vue
index c5604b961..a5f5da405 100644
--- a/assets/js/search/components/searches/PublicationSearch.vue
+++ b/assets/js/search/components/searches/PublicationSearch.vue
@@ -19,8 +19,8 @@
<div class="facet-container col-lg-3 my-2 float-left">
<!-- begin facets -->
<study-facet :react="{ and: ['Search', 'Type', 'Year'] }" />
+ <publication-year-facet />
<publication-type-facet :react="{ and: ['Search', 'Study', 'Year'] }" />
- <publication-year-facet :react="{ and: ['Search', 'Study', 'Type'] }" />
<!-- end facets -->
</div>
<div class="col-lg-8 m-0 p-0 float-right">
diff --git a/ddionrails/publications/documents.py b/ddionrails/publications/documents.py
index 8a2914a4d..221151e7f 100644
--- a/ddionrails/publications/documents.py
+++ b/ddionrails/publications/documents.py
@@ -36,7 +36,7 @@ def prepare_type(publication: Publication) -> str:
# facets
sub_type = fields.KeywordField()
study = fields.KeywordField()
- year = fields.KeywordField()
+ year = fields.IntegerField()
# prepare_FIELD will be executed while indexing FIELD
@staticmethod
|
facebookresearch__ParlAI-1671 | embeddingsize or embedding_size
When I search 'embeddingsize' in this repository, I see many files referencing `opt['embeddingsize']` and similarly for 'embedding_size'. Unless there is a real reason for having both, could you please merge the two options 'embeddingsize' and 'embedding_size'? This threw me off. Here is one example set of files:
'embeddingsize'
https://github.com/facebookresearch/ParlAI/blob/a43f2880719c5a048fdf3d0aa5d5b25eeb9a1a41/projects/wizard_of_wikipedia/generator/train_end2end.py#L21
'embedding_size'
https://github.com/facebookresearch/ParlAI/blob/8ab911a29dbbe5cfb7d3e615cccf8f4c76066ff1/projects/wizard_of_wikipedia/generator/agents.py#L33
| [
{
"content": "#!/usr/bin/env python\n\n# Copyright (c) Facebook, Inc. and its affiliates.\n# This source code is licensed under the MIT license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom parlai.scripts.train_model import setup_args, TrainLoop\n\nif __name__ == '__main__':\n ... | [
{
"content": "#!/usr/bin/env python\n\n# Copyright (c) Facebook, Inc. and its affiliates.\n# This source code is licensed under the MIT license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom parlai.scripts.train_model import setup_args, TrainLoop\n\nif __name__ == '__main__':\n ... | diff --git a/projects/wizard_of_wikipedia/generator/train_end2end.py b/projects/wizard_of_wikipedia/generator/train_end2end.py
index ff9f57ad747..74edc3f887e 100644
--- a/projects/wizard_of_wikipedia/generator/train_end2end.py
+++ b/projects/wizard_of_wikipedia/generator/train_end2end.py
@@ -18,7 +18,7 @@
n_heads=2,
dropout=0.20,
ffn_size=512,
- embeddingsize=256,
+ embedding_size=256,
log_every_n_secs=10,
validation_patience=12,
validation_metric='ppl',
|
dbt-labs__dbt-core-8568 | [CT-2982] Fix untyped functions in task/base.py (mypy warning)
### Problem
When we hit a mypy error the console is flooded with mypy warnings as well. Clean up the warning to improve developer experience.
### Reproduction
Simply force a mypy error (change types) and the warnings will be generated.
### Relevant Output
```
core/dbt/task/base.py:204: note: By default the bodies of untyped functions are not checked, consider using --check-untyped-defs [annotation-unchecked]
```
[CT-2982] Fix untyped functions in task/base.py (mypy warning)
### Problem
When we hit a mypy error the console is flooded with mypy warnings as well. Clean up the warning to improve developer experience.
### Reproduction
Simply force a mypy error (change types) and the warnings will be generated.
### Relevant Output
```
core/dbt/task/base.py:204: note: By default the bodies of untyped functions are not checked, consider using --check-untyped-defs [annotation-unchecked]
```
| [
{
"content": "import os\nimport threading\nimport time\nimport traceback\nfrom abc import ABCMeta, abstractmethod\nfrom contextlib import nullcontext\nfrom datetime import datetime\nfrom typing import Type, Union, Dict, Any, Optional\n\nimport dbt.exceptions\nfrom dbt import tracking\nfrom dbt.adapters.factory ... | [
{
"content": "import os\nimport threading\nimport time\nimport traceback\nfrom abc import ABCMeta, abstractmethod\nfrom contextlib import nullcontext\nfrom datetime import datetime\nfrom typing import Type, Union, Dict, Any, Optional\n\nimport dbt.exceptions\nfrom dbt import tracking\nfrom dbt.adapters.factory ... | diff --git a/.changes/unreleased/Under the Hood-20230906-164901.yaml b/.changes/unreleased/Under the Hood-20230906-164901.yaml
new file mode 100644
index 00000000000..f309a24ccc3
--- /dev/null
+++ b/.changes/unreleased/Under the Hood-20230906-164901.yaml
@@ -0,0 +1,6 @@
+kind: Under the Hood
+body: Add typing to __init__ in base.py
+time: 2023-09-06T16:49:01.150713+01:00
+custom:
+ Author: aranke
+ Issue: "8398"
diff --git a/core/dbt/task/base.py b/core/dbt/task/base.py
index 0aae0bd8851..3e7d7544578 100644
--- a/core/dbt/task/base.py
+++ b/core/dbt/task/base.py
@@ -193,7 +193,7 @@ def __init__(self, node):
class BaseRunner(metaclass=ABCMeta):
- def __init__(self, config, adapter, node, node_index, num_nodes):
+ def __init__(self, config, adapter, node, node_index, num_nodes) -> None:
self.config = config
self.adapter = adapter
self.node = node
|
piskvorky__gensim-3441 | annoy.py conversion of cosine distance to cosine similarity is incorrect
in [this function](https://github.com/RaRe-Technologies/gensim/blob/f35faae7a7b0c3c8586fb61208560522e37e0e7e/gensim/similarities/annoy.py#L169) the code to calculate cosine similarity is incorrect
def most_similar(self, vector, num_neighbors):
"""Find `num_neighbors` most similar items.
Parameters
----------
vector : numpy.array
Vector for word/document.
num_neighbors : int
Number of most similar items
Returns
-------
list of (str, float)
List of most similar items in format [(`item`, `cosine_distance`), ... ]
"""
ids, distances = self.index.get_nns_by_vector(
vector, num_neighbors, include_distances=True)
return [(self.labels[ids[i]], 1 - distances[i] / 2) for i in range(len(ids))]
according to annoy documentation `get_nns_by_vector` with `include_distances=True` will return the distances and not the square power of the distance (this was changed since aug 2016):
_`a.get_distance(i, j)` returns the distance between items i and j. NOTE: this used to return the squared distance, but has been changed as of Aug 2016._
[link](https://github.com/spotify/annoy#:~:text=a.get_distance(i%2C%20j)%20returns%20the%20distance%20between%20items%20i%20and%20j.%20NOTE%3A%20this%20used%20to%20return%20the%20squared%20distance%2C%20but%20has%20been%20changed%20as%20of%20Aug%202016.)
also:
Annoy uses Euclidean distance of normalized vectors for its angular distance, which for two vectors u,v is equal to sqrt(2(1-cos(u,v)))
[link](https://github.com/spotify/annoy#:~:text=Annoy%20uses%20Euclidean%20distance%20of%20normalized%20vectors%20for%20its%20angular%20distance%2C%20which%20for%20two%20vectors%20u%2Cv%20is%20equal%20to%20sqrt(2(1%2Dcos(u%2Cv))))
so this means that in order to calculate the cosine similarity correctly we should do this:
`
return [(self.labels[ids[i]], 1 - distances[i]^2 / 2) for i in range(len(ids))]
`
| [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2013 Radim Rehurek <me@radimrehurek.com>\n# Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html\n\n\"\"\"\nThis module integrates Spotify's `Annoy <https://github.com/spotify/annoy>`_ (Approximate Nearest Neigh... | [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2013 Radim Rehurek <me@radimrehurek.com>\n# Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html\n\n\"\"\"\nThis module integrates Spotify's `Annoy <https://github.com/spotify/annoy>`_ (Approximate Nearest Neigh... | diff --git a/gensim/similarities/annoy.py b/gensim/similarities/annoy.py
index e586b2d2e3..688985ca51 100644
--- a/gensim/similarities/annoy.py
+++ b/gensim/similarities/annoy.py
@@ -185,4 +185,4 @@ def most_similar(self, vector, num_neighbors):
ids, distances = self.index.get_nns_by_vector(
vector, num_neighbors, include_distances=True)
- return [(self.labels[ids[i]], 1 - distances[i] / 2) for i in range(len(ids))]
+ return [(self.labels[ids[i]], 1 - distances[i] ** 2 / 2) for i in range(len(ids))]
|
ludwig-ai__ludwig-1056 | Use openpyxl instead of xlrd for reading newer Excel files
With the release of xlrd 2, support for newer Excel formats like xlsx has been dropped. It is recommended to use openpyxl instead and to only use xlrd for legacy Excel formats.
See: https://stackoverflow.com/questions/65254535/xlrd-biffh-xlrderror-excel-xlsx-file-not-supported
| [
{
"content": "#! /usr/bin/env python\n# coding=utf-8\n# Copyright (c) 2019 Uber Technologies, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.or... | [
{
"content": "#! /usr/bin/env python\n# coding=utf-8\n# Copyright (c) 2019 Uber Technologies, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.or... | diff --git a/ludwig/utils/data_utils.py b/ludwig/utils/data_utils.py
index a3791d77836..51fe15f52e2 100644
--- a/ludwig/utils/data_utils.py
+++ b/ludwig/utils/data_utils.py
@@ -136,7 +136,12 @@ def read_jsonl(data_fp, df_lib):
def read_excel(data_fp, df_lib):
- return df_lib.read_excel(data_fp)
+ fp_split = os.path.splitext(data_fp)
+ if fp_split[1] == '.xls':
+ excel_engine = 'xlrd'
+ else:
+ excel_engine = 'openpyxl'
+ return df_lib.read_excel(data_fp, engine=excel_engine)
def read_parquet(data_fp, df_lib):
diff --git a/requirements.txt b/requirements.txt
index c32e4120519..9227f66a8cd 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -15,7 +15,7 @@ requests
# new data format support
xlwt # excel
-xlrd<2 # excel
+xlrd # excel
openpyxl # excel
pyarrow # parquet
lxml # html
diff --git a/tests/integration_tests/test_experiment.py b/tests/integration_tests/test_experiment.py
index 001ffde62ea..df997722fa3 100644
--- a/tests/integration_tests/test_experiment.py
+++ b/tests/integration_tests/test_experiment.py
@@ -435,7 +435,7 @@ def test_experiment_image_dataset(
DATA_FORMATS_TO_TEST = [
- 'csv', 'df', 'dict', 'excel', 'feather', 'fwf', 'hdf5', 'html',
+ 'csv', 'df', 'dict', 'excel', 'excel_xls', 'feather', 'fwf', 'hdf5', 'html',
'json', 'jsonl', 'parquet', 'pickle', 'stata', 'tsv'
]
@pytest.mark.parametrize('data_format', DATA_FORMATS_TO_TEST)
diff --git a/tests/integration_tests/utils.py b/tests/integration_tests/utils.py
index 9de747f8f14..ac6ba67b8b8 100644
--- a/tests/integration_tests/utils.py
+++ b/tests/integration_tests/utils.py
@@ -540,6 +540,13 @@ def to_fwf(df, fname):
index=False
)
+ elif data_format == 'excel_xls':
+ dataset_to_use = replace_file_extension(raw_data, 'xls')
+ pd.read_csv(raw_data).to_excel(
+ dataset_to_use,
+ index=False
+ )
+
elif data_format == 'feather':
dataset_to_use = replace_file_extension(raw_data, 'feather')
pd.read_csv(raw_data).to_feather(
|
liqd__a4-product-1097 | archived projects accessible via activity feed
At https://www.beteiligung.in/liqd/ all projects are private but I can see the content of the projects if I click on the activity feed. Even if not signed in.
| [
{
"content": "from django.contrib.messages.views import SuccessMessageMixin\nfrom django.utils.translation import ugettext_lazy as _\nfrom django.views import generic\nfrom django.views.generic import DetailView\n\nfrom adhocracy4.actions.models import Action\nfrom adhocracy4.projects.models import Project\nfro... | [
{
"content": "from django.contrib.messages.views import SuccessMessageMixin\nfrom django.utils.translation import ugettext_lazy as _\nfrom django.views import generic\nfrom django.views.generic import DetailView\n\nfrom adhocracy4.actions.models import Action\nfrom adhocracy4.projects.models import Project\nfro... | diff --git a/apps/organisations/views.py b/apps/organisations/views.py
index 96ae1ace3..51a95ba94 100644
--- a/apps/organisations/views.py
+++ b/apps/organisations/views.py
@@ -31,6 +31,7 @@ def get_context_data(self, **kwargs):
context['action_list'] = Action.objects\
.filter(project__organisation=self.object)\
+ .filter(project__is_archived=False) \
.filter_public()\
.exclude_updates()[:4]
|
sosreport__sos-1100 | [rabbitmq] does not elide password in /etc/rabbitmq.config
Hi,
Sosreport as in sos-3.2-36.eo7ost.1.noarch includes in `/etc/rabbitmq/rabbitmq.conf` `default_user` and `default_pass` without being hidden.
Regards,
Pablo
| [
{
"content": "# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope th... | [
{
"content": "# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope th... | diff --git a/sos/plugins/rabbitmq.py b/sos/plugins/rabbitmq.py
index 8057dd90a7..f7528f8e0c 100644
--- a/sos/plugins/rabbitmq.py
+++ b/sos/plugins/rabbitmq.py
@@ -60,5 +60,8 @@ def setup(self):
"/var/log/containers/rabbitmq/*"
], sizelimit=self.get_option('log_size'))
+ def postproc(self):
+ self.do_file_sub("/etc/rabbitmq/rabbitmq.conf",
+ r"(\s*default_pass\s*,\s*)\S+", r"\1<<***>>},")
# vim: set et ts=4 sw=4 :
|
zenml-io__zenml-1388 | [BUG]: S3 artifact store registration with single quotes produces SUPPORTED_SCHEMES error
### Contact Details [Optional]
c.versloot@infoplaza.nl
### System Information
ZENML_LOCAL_VERSION: 0.34.0
ZENML_SERVER_VERSION: 0.34.0
ZENML_SERVER_DATABASE: mysql
ZENML_SERVER_DEPLOYMENT_TYPE: other
ZENML_CONFIG_DIR: C:\Users\Christian Versloot\AppData\Roaming\zenml
ZENML_LOCAL_STORE_DIR: C:\Users\Christian Versloot\AppData\Roaming\zenml\local_stores
ZENML_SERVER_URL: **removed**
ZENML_ACTIVE_REPOSITORY_ROOT: None
PYTHON_VERSION: 3.9.9
ENVIRONMENT: native
SYSTEM_INFO: {'os': 'windows', 'windows_version_release': '10', 'windows_version': '10.0.19044', 'windows_version_service_pack': 'SP0', 'windows_version_os_type': 'Multiprocessor Free'}
ACTIVE_WORKSPACE: default
ACTIVE_STACK: default
ACTIVE_USER: **removed**
TELEMETRY_STATUS: enabled
ANALYTICS_CLIENT_ID: 07bfbb21-15fa-4f7c-a6ea-27dee28902d9
ANALYTICS_USER_ID: e96e7521-73ed-4ff1-8aca-72d5b224a55e
ANALYTICS_SERVER_ID: 9ed78563-2c57-4b86-9a6e-467ee05cc1c5
INTEGRATIONS: ['aws', 'github', 'kaniko', 'mlflow', 's3', 'scipy', 'sklearn']
PACKAGES: {'fsspec': '2022.11.0', 's3fs': '2022.11.0', 'certifi': '2021.10.8', 'pytz': '2021.3', 'pywin32': '305', 'setuptools': '60.1.0', 'cryptography': '36.0.1', 'kubernetes': '26.1.0', 'pyzmq': '25.0.0', 'sanic': '22.12.0',
'sanic-ext': '22.12.0', 'sanic-routing': '22.8.0', 'cattrs': '22.2.0', 'pycountry': '22.1.10', 'attrs': '22.1.0', 'gevent': '21.12.0', 'contextlib2': '21.6.0', 'argon2-cffi': '21.3.0', 'packaging': '21.3', 'azure-mgmt-resource':
'21.2.1', 'argon2-cffi-bindings': '21.2.0', 'pyopenssl': '21.0.0', 'virtualenv': '20.19.0', 'clickclick': '20.10.2', 'pip': '20.3.4', 'azure-mgmt-storage': '20.1.0', 'gunicorn': '20.1.0', 'azure-storage-blob': '12.11.0', 'rich':
'12.6.0', 'azure-mgmt-containerregistry': '10.1.0', 'websockets': '10.1', 'humanfriendly': '10.0', 'ipython': '8.11.0', 'pillow': '8.3.2', 'pyee': '8.2.2', 'click': '8.0.3', 'jupyter-client': '8.0.3', 'pyarrow': '8.0.0',
'ipywidgets': '7.7.3', 'nbconvert': '7.2.9', 'ipykernel': '6.21.2', 'notebook': '6.5.2', 'tornado': '6.2', 'multidict': '6.0.2', 'docker': '6.0.1', 'bleach': '6.0.0', 'pbr': '5.11.0', 'psutil': '5.9.0', 'traitlets': '5.9.0',
'nbformat': '5.7.3', 'pyyaml': '5.4.1', 'zope.interface': '5.4.0', 'cachetools': '5.3.0', 'jupyter-core': '5.2.0', 'decorator': '5.1.1', 'configobj': '5.0.6', 'azure-mgmt-redis': '5.0.0', 'smmap': '5.0.0', 'tqdm': '4.62.3',
'importlib-metadata': '4.11.3', 'conda': '4.11.0', 'beautifulsoup4': '4.10.0', 'rsa': '4.9', 'lxml': '4.8.0', 'opencv-python': '4.7.0.68', 'azure-mgmt-compute': '4.6.2', 'zope.event': '4.5.0', 'redis': '4.4.2',
'azure-mgmt-containerservice': '4.4.0', 'typing-extensions': '4.4.0', 'pyodbc': '4.0.32', 'gitdb': '4.0.10', 'mock': '4.0.3', 'async-timeout': '4.0.2', 'chardet': '4.0.0', 'progressbar2': '4.0.0', 'atlassian-python-api': '3.33.0',
'protobuf': '3.20.3', 'marshmallow': '3.19.0', 'ply': '3.11', 'filelock': '3.9.0', 'orjson': '3.8.5', 'aiohttp': '3.8.1', 'zipp': '3.8.0', 'aiofile': '3.7.4', 'widgetsnbextension': '3.6.2', 'tables': '3.6.1', 'gremlinpython':
'3.6.1', 'constructs': '3.4.246', 'asyncio': '3.4.3', 'matplotlib': '3.4.3', 'asgiref': '3.4.1', 'markdown': '3.4.1', 'pyreadline3': '3.4.1', 'anyio': '3.4.0', 'h5py': '3.4.0', 'python-utils': '3.3.3', 'secretstorage': '3.3.3',
'aws-parallelcluster': '3.3.0', 'bcrypt': '3.2.2', 'pyproj': '3.2.1', 'jsonschema': '3.2.0', 'oauthlib': '3.2.0', 'wget': '3.2', 'gitpython': '3.1.31', 'aenum': '3.1.11', 'graphql-core': '3.1.7', 'idna': '3.1', 'threadpoolctl':
'3.1.0', 'prompt-toolkit': '3.0.38', 'flask-cors': '3.0.10', 'openpyxl': '3.0.9', 'jinja2': '3.0.3', 'azure-mgmt-nspkg': '3.0.2', 'azure-nspkg': '3.0.2', 'azure-mgmt-datalake-nspkg': '3.0.1', 'azure-mgmt-authorization': '3.0.0',
'azure-mgmt-logic': '3.0.0', 'geojson': '3.0.0', 'platformdirs': '3.0.0', 'sagemaker': '2.117.0', 'tritonclient': '2.30.0', 'requests': '2.26.0', 'imageio': '2.24.0', 'pycparser': '2.21', 'awswrangler': '2.17.0', 'fastjsonschema':
'2.16.3', 'google-auth': '2.16.1', 'pygments': '2.14.0', 'typeguard': '2.13.3', 'connexion': '2.13.1', 'google-api-core': '2.11.0', 'paramiko': '2.11.0', 'psycopg2': '2.9.3', 'networkx': '2.8.8', 'python-dateutil': '2.8.2',
'numexpr': '2.8.1', 'azure-mgmt-network': '2.7.0', 'google-cloud-storage': '2.7.0', 'portalocker': '2.7.0', 'azure-mgmt-eventhub': '2.6.0', 'locust': '2.5.1', 'pyparsing': '2.4.7', 'aiobotocore': '2.4.2', 'google-resumable-media':
'2.4.1', 'google-cloud-core': '2.3.2', 'soupsieve': '2.3.2', 'pyshp': '2.3.1', 'jsonpointer': '2.3', 'jupyter-server': '2.3.0', 'pyjwt': '2.3.0', 'asttokens': '2.2.1', 'cloudpickle': '2.2.1', 'azure-mgmt-devtestlabs': '2.2.0',
'geopy': '2.2.0', 'jsonpickle': '2.2.0', 'waitress': '2.1.2', 'mlflow': '2.1.1', 'azure-mgmt-dns': '2.1.0', 'azure-mgmt-notificationhubs': '2.1.0', 'azure-mgmt-search': '2.1.0', 'redshift-connector': '2.0.909', 'pywinpty':
'2.0.10', 'charset-normalizer': '2.0.9', 'python-json-logger': '2.0.7', 'mistune': '2.0.5', 'flask': '2.0.2', 'kafka-python': '2.0.2', 'werkzeug': '2.0.2', 'itsdangerous': '2.0.1', 'markupsafe': '2.0.1', 'shapely': '2.0.1',
'argcomplete': '2.0.0', 'azure-mgmt-consumption': '2.0.0', 'azure-mgmt-powerbiembedded': '2.0.0', 'azure-mgmt-scheduler': '2.0.0', 'opensearch-py': '2.0.0', 'aws-cdk.assets': '1.192.0', 'aws-cdk.aws-acmpca': '1.192.0',
'aws-cdk.aws-apigateway': '1.192.0', 'aws-cdk.aws-applicationautoscaling': '1.192.0', 'aws-cdk.aws-autoscaling': '1.192.0', 'aws-cdk.aws-autoscaling-common': '1.192.0', 'aws-cdk.aws-autoscaling-hooktargets': '1.192.0',
'aws-cdk.aws-batch': '1.192.0', 'aws-cdk.aws-certificatemanager': '1.192.0', 'aws-cdk.aws-cloudformation': '1.192.0', 'aws-cdk.aws-cloudfront': '1.192.0', 'aws-cdk.aws-cloudwatch': '1.192.0', 'aws-cdk.aws-codebuild': '1.192.0',
'aws-cdk.aws-codecommit': '1.192.0', 'aws-cdk.aws-codeguruprofiler': '1.192.0', 'aws-cdk.aws-codestarnotifications': '1.192.0', 'aws-cdk.aws-cognito': '1.192.0', 'aws-cdk.aws-dynamodb': '1.192.0', 'aws-cdk.aws-ec2': '1.192.0',
'aws-cdk.aws-ecr': '1.192.0', 'aws-cdk.aws-ecr-assets': '1.192.0', 'aws-cdk.aws-ecs': '1.192.0', 'aws-cdk.aws-efs': '1.192.0', 'aws-cdk.aws-elasticloadbalancing': '1.192.0', 'aws-cdk.aws-elasticloadbalancingv2': '1.192.0',
'aws-cdk.aws-events': '1.192.0', 'aws-cdk.aws-fsx': '1.192.0', 'aws-cdk.aws-globalaccelerator': '1.192.0', 'aws-cdk.aws-iam': '1.192.0', 'aws-cdk.aws-imagebuilder': '1.192.0', 'aws-cdk.aws-kinesis': '1.192.0', 'aws-cdk.aws-kms':
'1.192.0', 'aws-cdk.aws-lambda': '1.192.0', 'aws-cdk.aws-logs': '1.192.0', 'aws-cdk.aws-route53': '1.192.0', 'aws-cdk.aws-route53-targets': '1.192.0', 'aws-cdk.aws-s3': '1.192.0', 'aws-cdk.aws-s3-assets': '1.192.0',
'aws-cdk.aws-sam': '1.192.0', 'aws-cdk.aws-secretsmanager': '1.192.0', 'aws-cdk.aws-servicediscovery': '1.192.0', 'aws-cdk.aws-signer': '1.192.0', 'aws-cdk.aws-sns': '1.192.0', 'aws-cdk.aws-sns-subscriptions': '1.192.0',
'aws-cdk.aws-sqs': '1.192.0', 'aws-cdk.aws-ssm': '1.192.0', 'aws-cdk.aws-stepfunctions': '1.192.0', 'aws-cdk.cloud-assembly-schema': '1.192.0', 'aws-cdk.core': '1.192.0', 'aws-cdk.custom-resources': '1.192.0', 'aws-cdk.cx-api':
'1.192.0', 'aws-cdk.region-info': '1.192.0', 'jsii': '1.75.0', 'googleapis-common-protos': '1.58.0', 'aws-sam-translator': '1.55.0', 'geographiclib': '1.52', 'grpcio': '1.51.1', 'azureml-core': '1.49.0', 'jsonpatch': '1.32',
'pg8000': '1.29.3', 'botocore': '1.27.59', 'boto3': '1.26.7', 'urllib3': '1.26.7', 'azure-core': '1.26.3', 'pyresample': '1.26.1', 'georaster': '1.25', 'numpy': '1.22.4', 'w3lib': '1.22.0', 'msal': '1.21.0', 'parse': '1.19.0',
'six': '1.16.0', 'cffi': '1.15.0', 'wrapt': '1.13.3', 'pydantic': '1.10.4', 'backoff': '1.10.0', 'pkginfo': '1.9.6', 'azure-mgmt-rdbms': '1.9.0', 'junit-xml': '1.9', 'python-rapidjson': '1.9', 'alembic': '1.8.1', 'yarl': '1.8.1',
'distro': '1.8.0', 'send2trash': '1.8.0', 'ppft': '1.7.6.6', 'passlib': '1.7.4', 'conda-package-handling': '1.7.3', 'scipy': '1.7.2', 'pysocks': '1.7.1', 'debugpy': '1.6.6', 'cftime': '1.6.2', 'netcdf4': '1.6.2', 'monotonic':
'1.6', 'nest-asyncio': '1.5.6', 'configargparse': '1.5.3', 'geventhttpclient': '1.5.3', 'jsonpath-ng': '1.5.3', 'pandas': '1.5.2', 'asn1crypto': '1.5.1', 'azure-mgmt-containerinstance': '1.5.0', 'google-crc32c': '1.5.0',
'pandocfilters': '1.5.0', 'pynacl': '1.5.0', 'sqlalchemy': '1.4.40', 'menuinst': '1.4.18', 'appdirs': '1.4.4', 'scramp': '1.4.4', 'pyquery': '1.4.3', 'azure-storage-common': '1.4.2', 'analytics-python': '1.4.0', 'basemap':
'1.3.4', 'pykdtree': '1.3.4', 'frozenlist': '1.3.3', 'azure-mgmt-core': '1.3.2', 'basemap-data': '1.3.2', 'basemap-data-hires': '1.3.2', 'kiwisolver': '1.3.2', 'aiosignal': '1.3.1', 'requests-oauthlib': '1.3.1', 'mlserver':
'1.3.0.dev2', 'mlserver-mlflow': '1.3.0.dev2', 'htmlgenerator': '1.2.27', 'deprecated': '1.2.13', 'adal': '1.2.7', 'mako': '1.2.4', 'querystring-parser': '1.2.4', 'jschema-to-python': '1.2.3', 'websocket-client': '1.2.2',
'tinycss2': '1.2.1', 'pandas-stubs': '1.2.0.57', 'executing': '1.2.0', 'joblib': '1.2.0', 'scikit-learn': '1.2.0', 'sniffio': '1.2.0', 'azure-common': '1.1.28', 'greenlet': '1.1.2', 'jupyterlab-widgets': '1.1.2',
'requests-aws4auth': '1.1.2', 'azure-mgmt-keyvault': '1.1.0', 'cssselect': '1.1.0', 'et-xmlfile': '1.1.0', 'exceptiongroup': '1.1.0', 'openapi': '1.1.0', 'win-inet-pton': '1.1.0', 'brotli': '1.0.9', 'sarif-om': '1.0.4', 'msgpack':
'1.0.3', 'pymysql': '1.0.2', 'pyppeteer': '1.0.2', 'smdebug-rulesconfig': '1.0.1', 'backports.weakref': '1.0.post1', 'azure-mgmt-datamigration': '1.0.0', 'azure-mgmt-eventgrid': '1.0.0', 'azure-mgmt-media': '1.0.0',
'backports.tempfile': '1.0', 'msal-extensions': '1.0.0', 'cfn-lint': '0.72.6', 'multiprocess': '0.70.14', 'fastapi': '0.70.0', 'azure-graphrbac': '0.61.1', 'numba': '0.56.4', 'azure-mgmt-trafficmanager': '0.50.0', 'shap':
'0.41.0', 'llvmlite': '0.39.1', 'sqlalchemy-utils': '0.38.3', 'wheel': '0.37.0', 'azure-mgmt-web': '0.35.0', 'zenml': '0.34.0', 'cython': '0.29.33', 'prometheus-flask-exporter': '0.22.0', 'python-dotenv': '0.21.1', 'httplib2':
'0.19.1', 'jedi': '0.18.2', 'validators': '0.18.2', 'pyrsistent': '0.18.1', 'uvicorn': '0.17.6', 'databricks-cli': '0.17.4', 'terminado': '0.17.1', 'openai': '0.16.0', 'prometheus-client': '0.16.0', 'starlette': '0.16.0',
'ruamel-yaml-conda': '0.15.80', 'starlette-exporter': '0.15.1', 'ariadne': '0.14.0', 'h11': '0.12.0', 'aioitertools': '0.11.0', 'pathspec': '0.11.0', 'knack': '0.10.1', 'python-terraform': '0.10.1', 'cycler': '0.10.0', 'jmespath':
'0.10.0', 'requests-html': '0.10.0', 'caio': '0.9.3', 'azure-mgmt-sql': '0.9.1', 'commonmark': '0.9.1', 'tabulate': '0.8.10', 'parso': '0.8.3', 'aiofiles': '0.8.0', 'aiokafka': '0.8.0', 'jeepney': '0.8.0', 'pickleshare': '0.7.5',
'schema': '0.7.5', 'nbclient': '0.7.2', 'defusedxml': '0.7.1', 'msrest': '0.7.1', 'brotlipy': '0.7.0', 'py-grpc-prometheus': '0.7.0', 'requests-auth-aws-sigv4': '0.7', 'watchgod': '0.7', 'msrestazure': '0.6.4', 'jupyter-events':
'0.6.3', 'pycosat': '0.6.3', 'stack-data': '0.6.2', 'isodate': '0.6.1', 'azure-mgmt-datafactory': '0.6.0', 'azure-mgmt-datalake-analytics': '0.6.0', 's3transfer': '0.6.0', 'azure-mgmt-servicebus': '0.5.3', 'azure-mgmt-monitor':
'0.5.2', 'nbclassic': '0.5.2', 'inflection': '0.5.1', 'ndg-httpsclient': '0.5.1', 'webencodings': '0.5.1', 'azure-mgmt-datalake-store': '0.5.0', 'azure-mgmt-iothub': '0.5.0', 'pyasn1': '0.4.8', 'colorama': '0.4.4',
'jupyter-server-terminals': '0.4.4', 'python-graphql-client': '0.4.3', 'sqlparse': '0.4.3', 'azure-mgmt-cosmosdb': '0.4.1', 'azure-mgmt-machinelearningcompute': '0.4.1', 'entrypoints': '0.4', 'parallel-pandas': '0.4.0', 'dill':
'0.3.6', 'distlib': '0.3.6', 'apng': '0.3.4', 'pox': '0.3.2', 'azure-mgmt-recoveryservices': '0.3.0', 'azure-mgmt-recoveryservicesbackup': '0.3.0', 'click-params': '0.3.0', 'httptools': '0.3.0', 'pathos': '0.3.0', 'pysftp':
'0.2.9', 'pyasn1-modules': '0.2.8', 'wcwidth': '0.2.6', 'jupyterlab-pygments': '0.2.2', 'notebook-shim': '0.2.2', 'pure-eval': '0.2.2', 'azure-mgmt-reservations': '0.2.1', 'wincertstore': '0.2',
'azure-mgmt-iothubprovisioningservices': '0.2.0', 'azure-mgmt-loganalytics': '0.2.0', 'azure-mgmt-msi': '0.2.0', 'azure-mgmt-servicefabric': '0.2.0', 'azure-mgmt-subscription': '0.2.0', 'backcall': '0.2.0', 'flask-basicauth':
'0.2.0', 'google-pasta': '0.2.0', 'ipython-genutils': '0.2.0', 'fake-useragent': '0.1.11', 'bcpy': '0.1.8', 'matplotlib-inline': '0.1.6', 'protobuf3-to-dict': '0.1.5', 'rfc3339-validator': '0.1.4', 'comm': '0.1.2',
'azure-mgmt-hanaonazure': '0.1.1', 'azure-mgmt-managementpartner': '0.1.1', 'azure-mgmt-signalr': '0.1.1', 'rfc3986-validator': '0.1.1', 'azure-mgmt-devspaces': '0.1.0', 'azure-mgmt-iotcentral': '0.1.0',
'azure-mgmt-managementgroups': '0.1.0', 'azure-mgmt-maps': '0.1.0', 'azure-mgmt-marketplaceordering': '0.1.0', 'azure-mgmt-policyinsights': '0.1.0', 'azure-mgmt-relay': '0.1.0', 'sqlmodel': '0.0.8', 'slicer': '0.0.7',
'publication': '0.0.3', 'roundrobin': '0.0.2', 'sqlalchemy2-stubs': '0.0.2a32', 'bs4': '0.0.1', 'expertmodels': '0.0.4', 'weathercomputing': '0.0.6'}
### What happened?
When adding an artifact store in the following way...
```
zenml artifact-store register infoplaza-ml-artifacts -f s3 --path='s3://bucketname' --authentication_secret=aws_s3_artifact_store
```
...the following error is produced:
```
│
│ c:\users\public\miniconda\lib\site-packages\zenml\artifact_stores\base_artifact_store.py:157 in │
│ _ensure_artifact_store │
│ │
│ 154 │ │ if not any( │
│ 155 │ │ │ values["path"].startswith(i) for i in cls.SUPPORTED_SCHEMES │
│ 156 │ │ ): │
│ > 157 │ │ │ raise ArtifactStoreInterfaceError( │
│ 158 │ │ │ │ f"The path: '{values['path']}' you defined for your " │
│ 159 │ │ │ │ f"artifact store is not supported by the implementation of " │
│ 160 │ │ │ │ f"{cls.schema()['title']}, because it does not start with " │
└──────────────────────────────────────────────────────────────────────────────────────────────────┘
ArtifactStoreInterfaceError: The path: ''s3://bucketname'' you defined for your artifact store is not supported by the implementation of S3ArtifactStoreConfig, because it does not start with one of its supported
schemes: {'s3://'}.
```
Removing the single quotes allows me to successfully register the artifact store.
```
zenml artifact-store register infoplaza-ml-artifacts -f s3 --path=s3://bucketname --authentication_secret=aws_s3_artifact_store
```
The docs contain the first method, i.e. with single quotes, which may confuse users: https://docs.zenml.io/component-gallery/artifact-stores/s3
A solution would either:
1. Add the single quotes to `SUPPORTED_SCHEMES` or ignore it when matching, or
2. Adapt the docs to the working command.
In my view (1) would be the preferred option to allow users most flexibility.
### Reproduction steps
1. `zenml artifact-store register infoplaza-ml-artifacts -f s3 --path='s3://bucketname' --authentication_secret=aws_s3_artifact_store`
### Relevant log output
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
| [
{
"content": "# Copyright (c) ZenML GmbH 2022. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at:\n#\n# https://www.apache.org/licenses/LICENSE-2.0\... | [
{
"content": "# Copyright (c) ZenML GmbH 2022. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at:\n#\n# https://www.apache.org/licenses/LICENSE-2.0\... | diff --git a/src/zenml/artifact_stores/base_artifact_store.py b/src/zenml/artifact_stores/base_artifact_store.py
index 780cf2da817..d23f0a02dd1 100644
--- a/src/zenml/artifact_stores/base_artifact_store.py
+++ b/src/zenml/artifact_stores/base_artifact_store.py
@@ -151,6 +151,7 @@ class MyArtifactStoreConfig(BaseArtifactStoreConfig):
"""
)
)
+ values["path"] = values["path"].strip("'\"`")
if not any(
values["path"].startswith(i) for i in cls.SUPPORTED_SCHEMES
):
diff --git a/tests/unit/artifact_stores/test_base_artifact_store.py b/tests/unit/artifact_stores/test_base_artifact_store.py
index fff930dca81..e519722c21b 100644
--- a/tests/unit/artifact_stores/test_base_artifact_store.py
+++ b/tests/unit/artifact_stores/test_base_artifact_store.py
@@ -11,3 +11,36 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing
# permissions and limitations under the License.
+import pytest
+
+from zenml.artifact_stores.base_artifact_store import BaseArtifactStoreConfig
+from zenml.exceptions import ArtifactStoreInterfaceError
+
+
+class TestBaseArtifactStoreConfig:
+ class AriaArtifactStoreConfig(BaseArtifactStoreConfig):
+ SUPPORTED_SCHEMES = {"aria://"}
+
+ @pytest.mark.parametrize(
+ "path",
+ [
+ "aria://my-bucket/my-folder/my-file.txt",
+ "'aria://my-bucket/my-folder/my-file.txt'",
+ "`aria://my-bucket/my-folder/my-file.txt`",
+ '"aria://my-bucket/my-folder/my-file.txt"',
+ ],
+ )
+ def test_valid_path(self, path):
+ config = self.AriaArtifactStoreConfig(path=path)
+ assert config.path == "aria://my-bucket/my-folder/my-file.txt"
+
+ @pytest.mark.parametrize(
+ "path",
+ [
+ "s3://my-bucket/my-folder/my-file.txt",
+ "http://my-bucket/my-folder/my-file.txt",
+ ],
+ )
+ def test_invalid_path(self, path):
+ with pytest.raises(ArtifactStoreInterfaceError):
+ self.AriaArtifactStoreConfig(path=path)
|
fedora-infra__bodhi-2448 | Bodhi sends e-mails when it cannot modify private bugs
Bodhi tries to close private bugs, which it does not have permission to do. It should probably not try to do this in the first place, but more importantly it should catch the Exception that arises when it tries. Bodhi often sends error e-mails like this one:
Message
-------
[2018-06-09 20:39:48][ bodhi ERROR]
```python
Unable to close bug #1549665
```
Process Details
---------------
- host: bodhi-backend01.phx2.fedoraproject.org
- PID: 98853
- name: fedmsg-hub
- command: /usr/bin/python2 /usr/bin/fedmsg-hub
- msg_id:
Callstack that lead to the logging statement
--------------------------------------------
```python
File "/usr/lib64/python2.7/threading.py", line 777 in __bootstrap
self.__bootstrap_inner()
File "/usr/lib64/python2.7/threading.py", line 804 in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/site-packages/bodhi/server/consumers/masher.py", line 337 in run
self.work()
File "/usr/lib/python2.7/site-packages/bodhi/server/consumers/masher.py", line 416 in work
self.modify_bugs()
File "/usr/lib/python2.7/site-packages/bodhi/server/consumers/masher.py", line 70 in wrapper
retval = method(self, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/bodhi/server/consumers/masher.py", line 717 in modify_bugs
update.modify_bugs()
File "/usr/lib/python2.7/site-packages/bodhi/server/models.py", line 2735 in modify_bugs
bug.close_bug(self)
File "/usr/lib/python2.7/site-packages/bodhi/server/models.py", line 4155 in close_bug
bugs.bugtracker.close(self.bug_id, versions=versions, comment=self.default_message(update))
File "/usr/lib/python2.7/site-packages/bodhi/server/bugs.py", line 222 in close
log.exception("Unable to close bug #%d" % bug_id)
```
```
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/bodhi/server/bugs.py", line 199, in close
bug = self.bz.getbug(bug_id)
File "/usr/lib/python2.7/site-packages/bugzilla/base.py", line 1024, in getbug
extra_fields=extra_fields)
File "/usr/lib/python2.7/site-packages/bugzilla/base.py", line 1016, in _getbug
return self._getbugs([objid], permissive=False, **kwargs)[0]
File "/usr/lib/python2.7/site-packages/bugzilla/base.py", line 984, in _getbugs
r = self._proxy.Bug.get(getbugdata)
File "/usr/lib64/python2.7/xmlrpclib.py", line 1243, in __call__
return self.__send(self.__name, args)
File "/usr/lib/python2.7/site-packages/bugzilla/transport.py", line 100, in _ServerProxy__request
ret = ServerProxy._ServerProxy__request(self, methodname, params)
File "/usr/lib64/python2.7/xmlrpclib.py", line 1602, in __request
verbose=self.__verbose
File "/usr/lib/python2.7/site-packages/bugzilla/transport.py", line 195, in request
return self._request_helper(url, request_body)
File "/usr/lib/python2.7/site-packages/bugzilla/transport.py", line 181, in _request_helper
raise sys.exc_info()[1]
Fault: <Fault 102: 'You are not authorized to access bug #1549665. Most likely the bug has been restricted for internal development processes and we cannot grant access. If you are a Red Hat customer with an active subscription, please visit the Red Hat Customer Portal for assistance with your issue If you are a Fedora Project user and require assistance, please consider using one of the mailing lists we host for the Fedora Project.'>
```
| [
{
"content": "# -*- coding: utf-8 -*-\n# Copyright © 2013-2017 Red Hat, Inc. and others.\n#\n# This file is part of Bodhi.\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either ve... | [
{
"content": "# -*- coding: utf-8 -*-\n# Copyright © 2013-2017 Red Hat, Inc. and others.\n#\n# This file is part of Bodhi.\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either ve... | diff --git a/bodhi/server/bugs.py b/bodhi/server/bugs.py
index afa092e85b..b83ced1f59 100644
--- a/bodhi/server/bugs.py
+++ b/bodhi/server/bugs.py
@@ -231,7 +231,7 @@ def close(self, bug_id, versions, comment):
bug.close('ERRATA', **args)
except xmlrpc_client.Fault:
- log.exception("Unable to close bug #%d" % bug_id)
+ log.info("Unable to close bug #%d" % bug_id)
def update_details(self, bug, bug_entity):
"""
diff --git a/bodhi/tests/server/test_bugs.py b/bodhi/tests/server/test_bugs.py
index ee5a9fe15e..9804a66487 100644
--- a/bodhi/tests/server/test_bugs.py
+++ b/bodhi/tests/server/test_bugs.py
@@ -88,9 +88,9 @@ def test_bz_with__bz_set(self, _connect):
self.assertTrue(return_value is bz._bz)
self.assertEqual(_connect.call_count, 0)
- @mock.patch('bodhi.server.bugs.log.exception')
+ @mock.patch('bodhi.server.bugs.log.info')
@mock.patch.dict('bodhi.server.bugs.config', {'bz_products': 'aproduct'})
- def test_close_fault(self, exception):
+ def test_close_fault(self, info):
"""Assert that an xmlrpc Fault is caught and logged by close()."""
bz = bugs.Bugzilla()
bz._bz = mock.MagicMock()
@@ -101,7 +101,7 @@ def test_close_fault(self, exception):
# This should not raise an Exception.
bz.close(12345, {'bodhi': 'bodhi-3.1.0-1.fc27'}, 'whabam!')
- exception.assert_called_once_with('Unable to close bug #12345')
+ info.assert_called_once_with('Unable to close bug #12345')
@mock.patch('bodhi.server.bugs.log.exception')
@mock.patch.dict('bodhi.server.bugs.config', {'bz_products': 'aproduct'})
|
pymedusa__Medusa-7517 | {{...}} in release name breaks manual episode search
**Describe the bug**
There is an NZB indexer which appends the password to the release name of each episode.
The result looks like this:
> ReleaseName{{ThePassword}}
If the manual epsiode search contains such a result, the body stays blank and the browser console shows following error:
`Something went wrong in getting the paramaters from dom. indexerName: undefined, seriesId: undefined, season: undefined, episode: undefined` at `snatch-selection.vue:227`
The manual search works on the same indexer if none of the results has a password and thus the release names don't contain curly brackets.
**To Reproduce**
1. Go to a TV Show
2. Click on "Manual Search" for a specific episode
3. Results in an empty page
**Expected behavior**
See a list of search results.
**Screenshots**

**Medusa version**
Latest docker image from https://github.com/linuxserver/docker-medusa
Medusa Info:
Branch: master
Commit: Unknown
Version: 0.3.9
Database: 44.14
Python Version: 3.7.5 (default, Oct 17 2019, 12:25:15) [GCC 8.3.0]
**Debug logs**
```
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: 279577: Formatting pattern: %SN - %AD - %EN -> Die Anstalt - 2019 11 05 - Treuhand
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Found codec for Die Anstalt Treuhand
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Parsed /tv/Die Anstalt/Season 06/Die Anstalt S06E07 11-19 into title: Die Anstalt, season: 6, episode: [7], episode_title: 11-19, type: episode, parsing_time: 0.04307889938354492, absolute_episode: [], quality: Unknown, total_time: 0.04324173927307129
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Matched release /tv/Die Anstalt/Season 06/Die Anstalt S06E07 11-19 to a series in your database: Die Anstalt
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Transaction with 3 queries executed
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Mass updating cache table with manual results for provider: Hydra
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Updating item: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} to cache: hydra
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Using cached parse result for Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding to cache item found in manual search: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Updating item: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED to cache: hydra
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Using cached parse result for Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding to cache item found in manual search: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Updating item: Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} to cache: hydra
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Using cached parse result for Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding to cache item found in manual search: Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Transaction with 3 queries executed
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found single episode result Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} at **********getnzb/api/308519251735629238?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} at **********getnzb/api/308519251735629238?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Added item: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} to cache: hydra with url: **********getnzb/api/308519251735629238?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding item from search to cache: 'Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{23XXhYzqdB}'
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found single episode result Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED at **********getnzb/api/-2571879803889673688?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED at **********getnzb/api/-2571879803889673688?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Added item: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED to cache: hydra with url: **********getnzb/api/-2571879803889673688?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding item from search to cache: 'Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED'
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found single episode result Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} at **********getnzb/api/-5790992511800115018?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} at **********getnzb/api/-5790992511800115018?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Added item: Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} to cache: hydra with url: **********getnzb/api/-5790992511800115018?apikey=**********
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Adding item from search to cache: 'Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{2OwRbg7rS5}'
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Parsed Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} into title: Die Anstalt, date: 2019-11-05, language: de, source: HDTV, video_codec: H.264, video_encoder: x264, other: Proper, proper_count: 1, proper_tag: REPACK, release_group: ACED, type: episode, parsing_time: 0.03590703010559082, season: 6, episode: [7], absolute_episode: [], quality: SDTV, total_time: 0.03661680221557617
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Matched release Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}} to a series in your database: Die Anstalt
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Database info for series Die Anstalt: Season: 6 Episode(s): [7]
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Series Die Anstalt is air by date
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Parsed Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED into title: Die Anstalt, date: 2019-11-05, language: de, source: HDTV, video_codec: H.264, video_encoder: x264, other: Proper, proper_count: 1, proper_tag: REPACK, release_group: ACED, type: episode, parsing_time: 0.033495426177978516, season: 6, episode: [7], absolute_episode: [], quality: SDTV, total_time: 0.03432965278625488
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Matched release Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED to a series in your database: Die Anstalt
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Database info for series Die Anstalt: Season: 6 Episode(s): [7]
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Series Die Anstalt is air by date
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Parsed Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} into title: Die Anstalt, date: 2019-11-05, language: de, screen_size: 720p, source: HDTV, video_codec: H.264, video_encoder: x264, release_group: ACED, type: episode, parsing_time: 0.0420839786529541, season: 6, episode: [7], absolute_episode: [], quality: 720p HDTV, total_time: 0.042864084243774414
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Matched release Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}} to a series in your database: Die Anstalt
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Database info for series Die Anstalt: Season: 6 Episode(s): [7]
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Series Die Anstalt is air by date
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found 3 unique search results
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}}
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: User-Agent: Medusa/0.3.9 (Linux; 4.19.0-0.bpo.6-amd64; 924e9818-2335-11ea-b365-0242993916a0)
2019-12-20 19:35:31 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: GET URL: **********api?t=search&limit=100&offset=0&cat=5000&maxage=3000&apikey=**********&q=Die+Anstalt+2019+11+05 [Status: 200]
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Search show using search string: Die Anstalt 2019 11 05
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Search mode: Episode
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-05-28.GERMAN.720p.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-05-28.GERMAN.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-07-16.GERMAN.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-07-16.GERMAN.720p.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.720p.HDTV.x264-ACED{{2OwRbg7rS5}}
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED{{23XXhYzqdB}}
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-11-05.GERMAN.HDTV.x264.REPACK-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-12-10.GERMAN.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Found result: Die.Anstalt.2019-12-10.GERMAN.720p.HDTV.x264-ACED
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: User-Agent: Medusa/0.3.9 (Linux; 4.19.0-0.bpo.6-amd64; 924e9818-2335-11ea-b365-0242993916a0)
2019-12-20 19:35:26 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: GET URL: **********api?t=tvsearch&limit=100&offset=0&cat=5000&maxage=3000&apikey=**********&tvdbid=279577&season=2019&ep=11%2F05 [Status: 200]
2019-12-20 19:35:23 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Search show using search string: indexer_id: {'tvdbid': 279577}
2019-12-20 19:35:23 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Search mode: Episode
2019-12-20 19:35:23 DEBUG FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Could not find any candidates in cache, searching provider.
2019-12-20 19:35:23 INFO FORCEDSEARCHQUEUE-MANUAL-279577 :: Hydra :: Performing episode search for Die Anstalt
2019-12-20 19:35:23 INFO FORCEDSEARCHQUEUE-MANUAL-279577 :: Using manual search providers
```
| [
{
"content": "# coding=utf-8\n\"\"\"Use setup tools to install Medusa.\"\"\"\nimport io\nimport os\nimport re\nimport sys\n\nfrom setuptools import setup\nfrom setuptools.command.test import test as TestCommand\n\nhere = os.path.abspath(os.path.dirname(__file__))\n\n\nclass PyTest(TestCommand):\n user_option... | [
{
"content": "# coding=utf-8\n\"\"\"Use setup tools to install Medusa.\"\"\"\nimport io\nimport os\nimport re\nimport sys\n\nfrom setuptools import setup\nfrom setuptools.command.test import test as TestCommand\n\nhere = os.path.abspath(os.path.dirname(__file__))\n\n\nclass PyTest(TestCommand):\n user_option... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index b33d4c8993..22a926025c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,7 +12,8 @@
- Fix `torrents.verifyCert` config patch ignored warning ([#7501](https://github.com/pymedusa/Medusa/pull/7501))
- Fix dragging and saving Anime / Series list handles in Home - Poster layout ([#7502](https://github.com/pymedusa/Medusa/pull/7502))
- Fix adding Anime with white/black listed release groups ([#7507](https://github.com/pymedusa/Medusa/pull/7507))
-- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/#7512))
+- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/7512))
+- Fix manual search page release name bug ([#7517](https://github.com/pymedusa/Medusa/pull/7517))
-----
diff --git a/setup.py b/setup.py
index 408b24cda7..6008685785 100644
--- a/setup.py
+++ b/setup.py
@@ -105,7 +105,8 @@ def packages():
'pytest-flake8>=1.0.2',
'pytest-tornado5>=2.0.0',
'PyYAML>=5.1',
- 'vcrpy>=2.0.1',
+ 'vcrpy<4.0.0 ; python_version < "3.5"',
+ 'vcrpy>=4.0.0 ; python_version >= "3.5"',
'mock>=2.0.0',
],
classifiers=[
diff --git a/themes-default/slim/views/snatchSelection.mako b/themes-default/slim/views/snatchSelection.mako
index 38e7704f31..284e1acfd1 100644
--- a/themes-default/slim/views/snatchSelection.mako
+++ b/themes-default/slim/views/snatchSelection.mako
@@ -119,7 +119,7 @@
% for hItem in provider_results['found_items']:
<tr id="${hItem['name'] | h}" class="skipped season-${season} seasonstyle ${hItem['status_highlight']}" role="row">
<td class="release-name-ellipses triggerhighlight">
- <span data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
+ <span v-pre data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
</td>
<td class="col-group break-word triggerhighlight">
<span class="break-word ${hItem['rg_highlight']}">${hItem['release_group']}</span>
diff --git a/themes/dark/templates/snatchSelection.mako b/themes/dark/templates/snatchSelection.mako
index 38e7704f31..284e1acfd1 100644
--- a/themes/dark/templates/snatchSelection.mako
+++ b/themes/dark/templates/snatchSelection.mako
@@ -119,7 +119,7 @@
% for hItem in provider_results['found_items']:
<tr id="${hItem['name'] | h}" class="skipped season-${season} seasonstyle ${hItem['status_highlight']}" role="row">
<td class="release-name-ellipses triggerhighlight">
- <span data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
+ <span v-pre data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
</td>
<td class="col-group break-word triggerhighlight">
<span class="break-word ${hItem['rg_highlight']}">${hItem['release_group']}</span>
diff --git a/themes/light/templates/snatchSelection.mako b/themes/light/templates/snatchSelection.mako
index 38e7704f31..284e1acfd1 100644
--- a/themes/light/templates/snatchSelection.mako
+++ b/themes/light/templates/snatchSelection.mako
@@ -119,7 +119,7 @@
% for hItem in provider_results['found_items']:
<tr id="${hItem['name'] | h}" class="skipped season-${season} seasonstyle ${hItem['status_highlight']}" role="row">
<td class="release-name-ellipses triggerhighlight">
- <span data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
+ <span v-pre data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
</td>
<td class="col-group break-word triggerhighlight">
<span class="break-word ${hItem['rg_highlight']}">${hItem['release_group']}</span>
|
carpentries__amy-2028 | Update colors of progress states
The current color scheme for our progress states makes it hard to know when something needs further attention and when it does not. Previously we had three colors: Red-Failed, Yellow-Not evaluated yet and Green-Passed.
The new 'Asked to Repeat' progress state option is also yellow and so it conflicts with the 'Not Evaluated Yet' option.
**Please update the color for 'Asked to Repeat' to blue.. Any shade will do.**
Progress state colors can be viewed on the [More>Trainees page ](https://amy.carpentries.org/trainings/trainees/)
| [
{
"content": "from django import template\nfrom django.template.defaultfilters import escape\nfrom django.utils.safestring import mark_safe\n\nfrom workshops.models import TrainingProgress\n\nregister = template.Library()\n\n\n@register.simple_tag\ndef progress_label(progress):\n assert isinstance(progress, ... | [
{
"content": "from django import template\nfrom django.template.defaultfilters import escape\nfrom django.utils.safestring import mark_safe\n\nfrom workshops.models import TrainingProgress\n\nregister = template.Library()\n\n\n@register.simple_tag\ndef progress_label(progress):\n assert isinstance(progress, ... | diff --git a/amy/templates/trainings/all_trainees.html b/amy/templates/trainings/all_trainees.html
index c300f236b..ad161a776 100644
--- a/amy/templates/trainings/all_trainees.html
+++ b/amy/templates/trainings/all_trainees.html
@@ -30,7 +30,10 @@
<span class='badge badge-success'>Passed</span>
<span class='badge badge-warning'>Not evaluated</span>
<span class='badge badge-danger'>Failed</span>
- <span class='badge badge-dark'><strike>Discarded</strike></span></p>
+ <span class='badge badge-info'>Asked to repeat</span>
+ <!-- 'Discarded' is also strokethrough, but for some reason it would not display in popover -->
+ <span class='badge badge-dark'>Discarded</span>
+ </p>
<p>Click one of labels below to edit or delete it.</p>
"></i>
</th>
diff --git a/amy/workshops/templatetags/training_progress.py b/amy/workshops/templatetags/training_progress.py
index e10f01d9a..35f8f4662 100644
--- a/amy/workshops/templatetags/training_progress.py
+++ b/amy/workshops/templatetags/training_progress.py
@@ -18,7 +18,7 @@ def progress_label(progress):
switch = {
"n": "warning",
"f": "danger",
- "a": "warning",
+ "a": "info",
"p": "success",
}
additional_label = switch[progress.state]
|
rucio__rucio-1372 | Fix activity in BB8
Motivation
----------
BB8 uses activity `Data Rebalancing` but the activity defined in ATLAS schema is `Data rebalancing`. We should use the same activity everywhere, and it should be consistent with the share defined in FTS
| [
{
"content": "\n'''\nThis file is automatically generated; Do not edit it. :)\n'''\nVERSION_INFO = {\n 'final': True,\n 'version': '1.17.4',\n 'branch_nick': 'patch-0-1_17_4_client_release_prep',\n 'revision_id': 'ba996ce9bf8366cd7d8d1fb60a7f1daf8d4f517e',\n 'revno': 6827\n}\n",
"path": "lib/... | [
{
"content": "\n'''\nThis file is automatically generated; Do not edit it. :)\n'''\nVERSION_INFO = {\n 'final': True,\n 'version': '1.17.5',\n 'branch_nick': 'patch-0-1_17_5_preparation',\n 'revision_id': '537e1e47eb627741394b6bb9bc21d0f046296275',\n 'revno': 6837\n}\n",
"path": "lib/rucio/vc... | diff --git a/doc/source/releasenotes/1.17.5.rst b/doc/source/releasenotes/1.17.5.rst
new file mode 100644
index 0000000000..d1ffa3fb57
--- /dev/null
+++ b/doc/source/releasenotes/1.17.5.rst
@@ -0,0 +1,35 @@
+======
+1.17.5
+======
+
+-------
+General
+-------
+
+************
+Enhancements
+************
+
+- Documentation: rucio documentation fixes `#1310 <https://github.com/rucio/rucio/issues/1310>`_
+- Infrastructure: cx_oracle version in containers should be fixed to 6.3.1 `#1318 <https://github.com/rucio/rucio/issues/1318>`_
+- Infrastructure: Docker image build of rucio demo fails `#1329 <https://github.com/rucio/rucio/issues/1329>`_
+- Infrastructure: Incorrect configuration of rucio demo? `#1334 <https://github.com/rucio/rucio/issues/1334>`_
+
+****
+Bugs
+****
+
+- Rebalancing: Fix activity in BB8 `#1361 <https://github.com/rucio/rucio/issues/1361>`_
+- Testing: Reset db tables script fails silently `#1317 <https://github.com/rucio/rucio/issues/1317>`
+
+-------
+Clients
+-------
+
+****
+Bugs
+****
+
+- RSE Manager: Deleting left-overs of first attempt of upload by correct protocol `#1346 <https://github.com/rucio/rucio/issues/1346>`_
+- Release management: Downgrade to older setuptools version as 39.0.1 is not py2.6 compatible `#1355 <https://github.com/rucio/rucio/issues/1355>`_
+
diff --git a/lib/rucio/vcsversion.py b/lib/rucio/vcsversion.py
index a30d1d15f2..5b5e58ab30 100644
--- a/lib/rucio/vcsversion.py
+++ b/lib/rucio/vcsversion.py
@@ -4,8 +4,8 @@
'''
VERSION_INFO = {
'final': True,
- 'version': '1.17.4',
- 'branch_nick': 'patch-0-1_17_4_client_release_prep',
- 'revision_id': 'ba996ce9bf8366cd7d8d1fb60a7f1daf8d4f517e',
- 'revno': 6827
+ 'version': '1.17.5',
+ 'branch_nick': 'patch-0-1_17_5_preparation',
+ 'revision_id': '537e1e47eb627741394b6bb9bc21d0f046296275',
+ 'revno': 6837
}
diff --git a/lib/rucio/web/ui/static/webui_version b/lib/rucio/web/ui/static/webui_version
index 250f359745..74921a9666 100644
--- a/lib/rucio/web/ui/static/webui_version
+++ b/lib/rucio/web/ui/static/webui_version
@@ -1 +1 @@
-1.17.4
\ No newline at end of file
+1.17.5
\ No newline at end of file
|
streamlit__streamlit-2499 | st.number_input doesn't accept reasonable int arguments
# Summary
Using `st.number_input` in a very reasonable way:
```python
x = st.number_input("x", 0, 10)
```
causes an exception to be thrown
```
StreamlitAPIException: All arguments must be of the same type. value has float type. min_value has int type. max_value has int type.
Traceback:
x = st.number_input("x", 0, 10)
```
## Expected behavior:
This should "just work," in the sense that it should create a number input that accepts `int`s between 0 and 10, with an initial default value of 0.
## Actual behavior:
You get the exception above. You can "trick" Streamlit into providing the right behavior by forcing the `value` parameter to have type `int` as follows:
```python
x = st.number_input("x", 0, 10, 0)
```
But I think this should just work without that extra parameter.
## Is this a regression?
??
# Debug info
- Streamlit version: `Streamlit, version 0.73.0`
- Python version: `Python 3.8.5`
- Python environment: `pipenv, version 2020.11.4`
- OS version: `Ubuntu 20.04.1 LTS`
| [
{
"content": "# Copyright 2018-2020 Streamlit Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by a... | [
{
"content": "# Copyright 2018-2020 Streamlit Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by a... | diff --git a/lib/streamlit/elements/number_input.py b/lib/streamlit/elements/number_input.py
index 5db6edec1998..455ccbd4db4c 100644
--- a/lib/streamlit/elements/number_input.py
+++ b/lib/streamlit/elements/number_input.py
@@ -75,7 +75,7 @@ def number_input(
"""
if isinstance(value, NoValue):
- if min_value:
+ if min_value is not None:
value = min_value
else:
value = 0.0 # We set a float as default
diff --git a/lib/tests/streamlit/number_input_test.py b/lib/tests/streamlit/number_input_test.py
index 1e1fa50121be..cb1378935850 100644
--- a/lib/tests/streamlit/number_input_test.py
+++ b/lib/tests/streamlit/number_input_test.py
@@ -35,6 +35,11 @@ def test_data_type(self):
st.number_input("Label", value=0.5)
c = self.get_delta_from_queue().new_element.number_input
self.assertEqual(NumberInput.FLOAT, c.data_type)
+
+ def test_min_value_zero_sets_default_value(self):
+ st.number_input("Label", 0, 10)
+ c = self.get_delta_from_queue().new_element.number_input
+ self.assertEqual(c.default, 0) # the 0 we provided, not 0.0!
def test_just_label(self):
"""Test that it can be called with no value."""
|
shuup__shuup-1574 | Admin: Main menu won't stay hidden
Two issues (at least):
Desktop: If I close (minimize, desktop) main-menu and click any link, the menu appears again.
Desktop to mobile: If I minimize the menu on a bigger desktop and then drag window smaller the menu appears again.
| [
{
"content": "# -*- coding: utf-8 -*-\n# This file is part of Shuup.\n#\n# Copyright (c) 2012-2018, Shuup Inc. All rights reserved.\n#\n# This source code is licensed under the OSL-3.0 license found in the\n# LICENSE file in the root directory of this source tree.\nfrom django.http import JsonResponse\nfrom dja... | [
{
"content": "# -*- coding: utf-8 -*-\n# This file is part of Shuup.\n#\n# Copyright (c) 2012-2018, Shuup Inc. All rights reserved.\n#\n# This source code is licensed under the OSL-3.0 license found in the\n# LICENSE file in the root directory of this source tree.\nfrom django.http import JsonResponse\nfrom dja... | diff --git a/README.rst b/README.rst
index 3f5e38dc5c..efa8972321 100644
--- a/README.rst
+++ b/README.rst
@@ -95,7 +95,7 @@ Roadmap
* Per object placeholders. Option to add content per contact group, category, product and CMS page. `#1220 <https://github.com/shuup/shuup/issues/1220>`__ :white_check_mark:.
* Pricing cache. To improve the performance issues with complex catalog campaigns. `#1163 <https://github.com/shuup/shuup/issues/1163>`__ :white_check_mark:.
* Option for 'centrally' or 'separately' managed products. `#1275 <https://github.com/shuup/shuup/issues/1275>`__.
-* Improve shop product purchasable attribute. `#1281 <https://github.com/shuup/shuup/issues/1281>`__.
+* Improve shop product purchasable attribute. `#1281 <https://github.com/shuup/shuup/issues/1281>`__ :white_check_mark:.
* Improve product stock behavior. `#1249 <https://github.com/shuup/shuup/issues/1249>`__.
* Improved unit tests for the multishop feature. `#1160 <https://github.com/shuup/shuup/issues/1160>`__.
* Improve order status and order status history. `#1211 <https://github.com/shuup/shuup/issues/1211>`__.
@@ -111,6 +111,8 @@ OS Addons
* `Shuup Checkoutfi <https://github.com/shuup/shuup-checkoutfi>`__. Checkout.fi integration for Shuup.
* `Shuup Yaml <https://github.com/shuup/shuup-yaml>`__. Import categories, manufacturers and products to Shuup.
* `Shuup Mailchimp <https://github.com/shuup/shuup-mailchimp>`__. Mailchimp integration for Shuup.
+* `Shuup Xtheme Layouts <https://github.com/shuup/shuup-xtheme-extra-layouts>`__. Xtheme layouts for Shuup.
+
The purpose of these addons, is to demonstrate how to build
other simple addons to extend Shuup. To learn more, here are
diff --git a/doc/api/shuup.addons.rst b/doc/api/shuup.addons.rst
index e263b093f1..e3f878f174 100644
--- a/doc/api/shuup.addons.rst
+++ b/doc/api/shuup.addons.rst
@@ -35,14 +35,6 @@ shuup.addons.reloader module
:undoc-members:
:show-inheritance:
-shuup.addons.verify module
---------------------------
-
-.. automodule:: shuup.addons.verify
- :members:
- :undoc-members:
- :show-inheritance:
-
Module contents
---------------
diff --git a/doc/api/shuup.admin.forms.rst b/doc/api/shuup.admin.forms.rst
index fa8a5ddd7a..c7a90a8e2e 100644
--- a/doc/api/shuup.admin.forms.rst
+++ b/doc/api/shuup.admin.forms.rst
@@ -12,6 +12,14 @@ shuup.admin.forms.fields module
:undoc-members:
:show-inheritance:
+shuup.admin.forms.quick\_select module
+--------------------------------------
+
+.. automodule:: shuup.admin.forms.quick_select
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.admin.forms.widgets module
--------------------------------
diff --git a/doc/api/shuup.admin.modules.categories.views.rst b/doc/api/shuup.admin.modules.categories.views.rst
index 3950251a2e..9cd9034406 100644
--- a/doc/api/shuup.admin.modules.categories.views.rst
+++ b/doc/api/shuup.admin.modules.categories.views.rst
@@ -36,6 +36,14 @@ shuup.admin.modules.categories.views.list module
:undoc-members:
:show-inheritance:
+shuup.admin.modules.categories.views.organize module
+----------------------------------------------------
+
+.. automodule:: shuup.admin.modules.categories.views.organize
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
Module contents
---------------
diff --git a/doc/api/shuup.admin.modules.contact_group_price_display.rst b/doc/api/shuup.admin.modules.contact_group_price_display.rst
new file mode 100644
index 0000000000..fdb902015a
--- /dev/null
+++ b/doc/api/shuup.admin.modules.contact_group_price_display.rst
@@ -0,0 +1,17 @@
+shuup.admin.modules.contact\_group\_price\_display package
+==========================================================
+
+Subpackages
+-----------
+
+.. toctree::
+
+ shuup.admin.modules.contact_group_price_display.views
+
+Module contents
+---------------
+
+.. automodule:: shuup.admin.modules.contact_group_price_display
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.admin.modules.contact_group_price_display.views.rst b/doc/api/shuup.admin.modules.contact_group_price_display.views.rst
new file mode 100644
index 0000000000..2dacf527f3
--- /dev/null
+++ b/doc/api/shuup.admin.modules.contact_group_price_display.views.rst
@@ -0,0 +1,38 @@
+shuup.admin.modules.contact\_group\_price\_display.views package
+================================================================
+
+Submodules
+----------
+
+shuup.admin.modules.contact\_group\_price\_display.views.edit module
+--------------------------------------------------------------------
+
+.. automodule:: shuup.admin.modules.contact_group_price_display.views.edit
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.admin.modules.contact\_group\_price\_display.views.forms module
+---------------------------------------------------------------------
+
+.. automodule:: shuup.admin.modules.contact_group_price_display.views.forms
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.admin.modules.contact\_group\_price\_display.views.list module
+--------------------------------------------------------------------
+
+.. automodule:: shuup.admin.modules.contact_group_price_display.views.list
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Module contents
+---------------
+
+.. automodule:: shuup.admin.modules.contact_group_price_display.views
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.admin.modules.contacts.rst b/doc/api/shuup.admin.modules.contacts.rst
index 9e9e0f986d..c7e76447ce 100644
--- a/doc/api/shuup.admin.modules.contacts.rst
+++ b/doc/api/shuup.admin.modules.contacts.rst
@@ -43,6 +43,14 @@ shuup.admin.modules.contacts.sections module
:undoc-members:
:show-inheritance:
+shuup.admin.modules.contacts.utils module
+-----------------------------------------
+
+.. automodule:: shuup.admin.modules.contacts.utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
Module contents
---------------
diff --git a/doc/api/shuup.admin.modules.rst b/doc/api/shuup.admin.modules.rst
index 22db6cdd98..3064186139 100644
--- a/doc/api/shuup.admin.modules.rst
+++ b/doc/api/shuup.admin.modules.rst
@@ -8,6 +8,7 @@ Subpackages
shuup.admin.modules.attributes
shuup.admin.modules.categories
+ shuup.admin.modules.contact_group_price_display
shuup.admin.modules.contact_groups
shuup.admin.modules.contacts
shuup.admin.modules.content
diff --git a/doc/api/shuup.admin.utils.rst b/doc/api/shuup.admin.utils.rst
index 6ee83c8b14..2dc7596f56 100644
--- a/doc/api/shuup.admin.utils.rst
+++ b/doc/api/shuup.admin.utils.rst
@@ -20,6 +20,14 @@ shuup.admin.utils.forms module
:undoc-members:
:show-inheritance:
+shuup.admin.utils.menu module
+-----------------------------
+
+.. automodule:: shuup.admin.utils.menu
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.admin.utils.permissions module
------------------------------------
diff --git a/doc/api/shuup.admin.views.rst b/doc/api/shuup.admin.views.rst
index 2803a1078c..80ca1a028c 100644
--- a/doc/api/shuup.admin.views.rst
+++ b/doc/api/shuup.admin.views.rst
@@ -12,6 +12,14 @@ shuup.admin.views.dashboard module
:undoc-members:
:show-inheritance:
+shuup.admin.views.edit module
+-----------------------------
+
+.. automodule:: shuup.admin.views.edit
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.admin.views.home module
-----------------------------
diff --git a/doc/api/shuup.campaigns.rst b/doc/api/shuup.campaigns.rst
index c42f52eddc..7f97c398e2 100644
--- a/doc/api/shuup.campaigns.rst
+++ b/doc/api/shuup.campaigns.rst
@@ -32,6 +32,14 @@ shuup.campaigns.consts module
:undoc-members:
:show-inheritance:
+shuup.campaigns.exceptions module
+---------------------------------
+
+.. automodule:: shuup.campaigns.exceptions
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.campaigns.modules module
------------------------------
diff --git a/doc/api/shuup.core.rst b/doc/api/shuup.core.rst
index 0bb92deb9c..7f924c283d 100644
--- a/doc/api/shuup.core.rst
+++ b/doc/api/shuup.core.rst
@@ -74,6 +74,14 @@ shuup.core.shop\_provider module
:undoc-members:
:show-inheritance:
+shuup.core.signal\_handers module
+---------------------------------
+
+.. automodule:: shuup.core.signal_handers
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.core.signals module
-------------------------
diff --git a/doc/api/shuup.core.utils.rst b/doc/api/shuup.core.utils.rst
index 2013f3b073..67080c10f4 100644
--- a/doc/api/shuup.core.utils.rst
+++ b/doc/api/shuup.core.utils.rst
@@ -84,6 +84,14 @@ shuup.core.utils.name\_mixin module
:undoc-members:
:show-inheritance:
+shuup.core.utils.price\_cache module
+------------------------------------
+
+.. automodule:: shuup.core.utils.price_cache
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.core.utils.price\_display module
--------------------------------------
diff --git a/doc/api/shuup.customer_group_pricing.rst b/doc/api/shuup.customer_group_pricing.rst
index 9d60c2509a..48c1e7f890 100644
--- a/doc/api/shuup.customer_group_pricing.rst
+++ b/doc/api/shuup.customer_group_pricing.rst
@@ -36,6 +36,14 @@ shuup.customer\_group\_pricing.module module
:undoc-members:
:show-inheritance:
+shuup.customer\_group\_pricing.signal\_handers module
+-----------------------------------------------------
+
+.. automodule:: shuup.customer_group_pricing.signal_handers
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.customer\_group\_pricing.utils module
-------------------------------------------
diff --git a/doc/api/shuup.discounts.admin.modules.rst b/doc/api/shuup.discounts.admin.modules.rst
new file mode 100644
index 0000000000..8cb1abfa27
--- /dev/null
+++ b/doc/api/shuup.discounts.admin.modules.rst
@@ -0,0 +1,10 @@
+shuup.discounts.admin.modules package
+=====================================
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.admin.modules
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.admin.rst b/doc/api/shuup.discounts.admin.rst
new file mode 100644
index 0000000000..041061f40f
--- /dev/null
+++ b/doc/api/shuup.discounts.admin.rst
@@ -0,0 +1,38 @@
+shuup.discounts.admin package
+=============================
+
+Subpackages
+-----------
+
+.. toctree::
+
+ shuup.discounts.admin.modules
+ shuup.discounts.admin.views
+
+Submodules
+----------
+
+shuup.discounts.admin.mass\_actions module
+------------------------------------------
+
+.. automodule:: shuup.discounts.admin.mass_actions
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.admin.widgets module
+------------------------------------
+
+.. automodule:: shuup.discounts.admin.widgets
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.admin
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.admin.views.rst b/doc/api/shuup.discounts.admin.views.rst
new file mode 100644
index 0000000000..3092a631a7
--- /dev/null
+++ b/doc/api/shuup.discounts.admin.views.rst
@@ -0,0 +1,10 @@
+shuup.discounts.admin.views package
+===================================
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.admin.views
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.management.commands.rst b/doc/api/shuup.discounts.management.commands.rst
new file mode 100644
index 0000000000..2b35f1023d
--- /dev/null
+++ b/doc/api/shuup.discounts.management.commands.rst
@@ -0,0 +1,22 @@
+shuup.discounts.management.commands package
+===========================================
+
+Submodules
+----------
+
+shuup.discounts.management.commands.import\_catalog\_campaigns module
+---------------------------------------------------------------------
+
+.. automodule:: shuup.discounts.management.commands.import_catalog_campaigns
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.management.commands
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.management.rst b/doc/api/shuup.discounts.management.rst
new file mode 100644
index 0000000000..9140746a36
--- /dev/null
+++ b/doc/api/shuup.discounts.management.rst
@@ -0,0 +1,17 @@
+shuup.discounts.management package
+==================================
+
+Subpackages
+-----------
+
+.. toctree::
+
+ shuup.discounts.management.commands
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.management
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.models.rst b/doc/api/shuup.discounts.models.rst
new file mode 100644
index 0000000000..6a69617e0a
--- /dev/null
+++ b/doc/api/shuup.discounts.models.rst
@@ -0,0 +1,10 @@
+shuup.discounts.models package
+==============================
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts.models
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.discounts.rst b/doc/api/shuup.discounts.rst
new file mode 100644
index 0000000000..c84f09d061
--- /dev/null
+++ b/doc/api/shuup.discounts.rst
@@ -0,0 +1,71 @@
+shuup.discounts package
+=======================
+
+Subpackages
+-----------
+
+.. toctree::
+
+ shuup.discounts.admin
+ shuup.discounts.management
+ shuup.discounts.models
+
+Submodules
+----------
+
+shuup.discounts.apps module
+---------------------------
+
+.. automodule:: shuup.discounts.apps
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.exceptions module
+---------------------------------
+
+.. automodule:: shuup.discounts.exceptions
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.modules module
+------------------------------
+
+.. automodule:: shuup.discounts.modules
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.settings module
+-------------------------------
+
+.. automodule:: shuup.discounts.settings
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.signal\_handers module
+--------------------------------------
+
+.. automodule:: shuup.discounts.signal_handers
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.discounts.utils module
+----------------------------
+
+.. automodule:: shuup.discounts.utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Module contents
+---------------
+
+.. automodule:: shuup.discounts
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.front.apps.simple_search.rst b/doc/api/shuup.front.apps.simple_search.rst
index e95e104981..9918ca0c01 100644
--- a/doc/api/shuup.front.apps.simple_search.rst
+++ b/doc/api/shuup.front.apps.simple_search.rst
@@ -12,6 +12,14 @@ shuup.front.apps.simple\_search.forms module
:undoc-members:
:show-inheritance:
+shuup.front.apps.simple\_search.settings module
+-----------------------------------------------
+
+.. automodule:: shuup.front.apps.simple_search.settings
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.front.apps.simple\_search.template\_helpers module
--------------------------------------------------------
diff --git a/doc/api/shuup.front.rst b/doc/api/shuup.front.rst
index 412847d82a..2f70000c3c 100644
--- a/doc/api/shuup.front.rst
+++ b/doc/api/shuup.front.rst
@@ -55,6 +55,14 @@ shuup.front.settings module
:undoc-members:
:show-inheritance:
+shuup.front.signal\_handlers module
+-----------------------------------
+
+.. automodule:: shuup.front.signal_handlers
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.front.signals module
--------------------------
diff --git a/doc/api/shuup.front.utils.rst b/doc/api/shuup.front.utils.rst
index f4352e084d..a743001b09 100644
--- a/doc/api/shuup.front.utils.rst
+++ b/doc/api/shuup.front.utils.rst
@@ -4,6 +4,14 @@ shuup.front.utils package
Submodules
----------
+shuup.front.utils.cache module
+------------------------------
+
+.. automodule:: shuup.front.utils.cache
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.front.utils.companies module
----------------------------------
@@ -52,6 +60,14 @@ shuup.front.utils.translation module
:undoc-members:
:show-inheritance:
+shuup.front.utils.urls module
+-----------------------------
+
+.. automodule:: shuup.front.utils.urls
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.front.utils.user module
-----------------------------
diff --git a/doc/api/shuup.regions.rst b/doc/api/shuup.regions.rst
index b642229271..9e55639771 100644
--- a/doc/api/shuup.regions.rst
+++ b/doc/api/shuup.regions.rst
@@ -12,14 +12,6 @@ shuup.regions.apps module
:undoc-members:
:show-inheritance:
-shuup.regions.data module
--------------------------
-
-.. automodule:: shuup.regions.data
- :members:
- :undoc-members:
- :show-inheritance:
-
shuup.regions.resources module
------------------------------
diff --git a/doc/api/shuup.rst b/doc/api/shuup.rst
index 93065c4f70..000dbd1f55 100644
--- a/doc/api/shuup.rst
+++ b/doc/api/shuup.rst
@@ -16,6 +16,7 @@ Subpackages
shuup.default_importer
shuup.default_reports
shuup.default_tax
+ shuup.discounts
shuup.front
shuup.gdpr
shuup.guide
diff --git a/doc/api/shuup.simple_cms.rst b/doc/api/shuup.simple_cms.rst
index c3d95fa157..7cff0b6445 100644
--- a/doc/api/shuup.simple_cms.rst
+++ b/doc/api/shuup.simple_cms.rst
@@ -11,6 +11,14 @@ Subpackages
Submodules
----------
+shuup.simple\_cms.layout module
+-------------------------------
+
+.. automodule:: shuup.simple_cms.layout
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.simple\_cms.models module
-------------------------------
@@ -27,6 +35,14 @@ shuup.simple\_cms.plugins module
:undoc-members:
:show-inheritance:
+shuup.simple\_cms.settings module
+---------------------------------
+
+.. automodule:: shuup.simple_cms.settings
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.simple\_cms.template\_helpers module
------------------------------------------
@@ -35,6 +51,14 @@ shuup.simple\_cms.template\_helpers module
:undoc-members:
:show-inheritance:
+shuup.simple\_cms.templates module
+----------------------------------
+
+.. automodule:: shuup.simple_cms.templates
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.simple\_cms.urls module
-----------------------------
diff --git a/doc/api/shuup.utils.rst b/doc/api/shuup.utils.rst
index 02dbcac549..623d076b2c 100644
--- a/doc/api/shuup.utils.rst
+++ b/doc/api/shuup.utils.rst
@@ -124,6 +124,14 @@ shuup.utils.iterables module
:undoc-members:
:show-inheritance:
+shuup.utils.migrations module
+-----------------------------
+
+.. automodule:: shuup.utils.migrations
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.utils.models module
-------------------------
diff --git a/doc/api/shuup.xtheme.admin_module.rst b/doc/api/shuup.xtheme.admin_module.rst
index d99784f1e5..8fa12fa271 100644
--- a/doc/api/shuup.xtheme.admin_module.rst
+++ b/doc/api/shuup.xtheme.admin_module.rst
@@ -1,13 +1,28 @@
shuup.xtheme.admin\_module package
==================================
+Subpackages
+-----------
+
+.. toctree::
+
+ shuup.xtheme.admin_module.views
+
Submodules
----------
-shuup.xtheme.admin\_module.views module
+shuup.xtheme.admin\_module.utils module
---------------------------------------
-.. automodule:: shuup.xtheme.admin_module.views
+.. automodule:: shuup.xtheme.admin_module.utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+shuup.xtheme.admin\_module.widgets module
+-----------------------------------------
+
+.. automodule:: shuup.xtheme.admin_module.widgets
:members:
:undoc-members:
:show-inheritance:
diff --git a/doc/api/shuup.xtheme.admin_module.views.rst b/doc/api/shuup.xtheme.admin_module.views.rst
new file mode 100644
index 0000000000..b653e22301
--- /dev/null
+++ b/doc/api/shuup.xtheme.admin_module.views.rst
@@ -0,0 +1,10 @@
+shuup.xtheme.admin\_module.views package
+========================================
+
+Module contents
+---------------
+
+.. automodule:: shuup.xtheme.admin_module.views
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.xtheme.layout.rst b/doc/api/shuup.xtheme.layout.rst
new file mode 100644
index 0000000000..f23a00f9bf
--- /dev/null
+++ b/doc/api/shuup.xtheme.layout.rst
@@ -0,0 +1,22 @@
+shuup.xtheme.layout package
+===========================
+
+Submodules
+----------
+
+shuup.xtheme.layout.utils module
+--------------------------------
+
+.. automodule:: shuup.xtheme.layout.utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
+Module contents
+---------------
+
+.. automodule:: shuup.xtheme.layout
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/doc/api/shuup.xtheme.rst b/doc/api/shuup.xtheme.rst
index fea6e714f9..77f7939f24 100644
--- a/doc/api/shuup.xtheme.rst
+++ b/doc/api/shuup.xtheme.rst
@@ -7,6 +7,7 @@ Subpackages
.. toctree::
shuup.xtheme.admin_module
+ shuup.xtheme.layout
shuup.xtheme.plugins
shuup.xtheme.templatetags
shuup.xtheme.views
@@ -46,14 +47,6 @@ shuup.xtheme.forms module
:undoc-members:
:show-inheritance:
-shuup.xtheme.layout module
---------------------------
-
-.. automodule:: shuup.xtheme.layout
- :members:
- :undoc-members:
- :show-inheritance:
-
shuup.xtheme.middleware module
------------------------------
@@ -94,6 +87,14 @@ shuup.xtheme.resources module
:undoc-members:
:show-inheritance:
+shuup.xtheme.settings module
+----------------------------
+
+.. automodule:: shuup.xtheme.settings
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
shuup.xtheme.template\_ns module
--------------------------------
diff --git a/shuup/admin/npm-shrinkwrap.json b/shuup/admin/npm-shrinkwrap.json
index e5a7dd9fd9..cdd49339e5 100644
--- a/shuup/admin/npm-shrinkwrap.json
+++ b/shuup/admin/npm-shrinkwrap.json
@@ -7,7 +7,7 @@
"@babel/code-frame": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
- "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==",
+ "integrity": "sha1-BuKrGb21NThVWaq7W6WXKUgoAPg=",
"dev": true,
"requires": {
"@babel/highlight": "^7.0.0"
@@ -16,7 +16,7 @@
"@babel/highlight": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
- "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==",
+ "integrity": "sha1-9xDDjI1Fjm3ZogGvtjf8t4HOmeQ=",
"dev": true,
"requires": {
"chalk": "^2.0.0",
@@ -27,7 +27,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
@@ -36,7 +36,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
@@ -49,12 +49,12 @@
"@compone/class": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@compone/class/-/class-1.1.1.tgz",
- "integrity": "sha512-pbODcJi0TdyKQ/PTHSHLwO4h/r5EgMdkPQLdBSaZBUiBuWdGil+0PEhpfhAWDuFrwVPKiCHYQOfs8WyGe9ABWA=="
+ "integrity": "sha1-y+YiXKEjiUdpyMtltJQwvY3qRyo="
},
"@compone/define": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@compone/define/-/define-1.2.4.tgz",
- "integrity": "sha512-w0ZDiYMIppvb1epoNY64pkEACwn9693cc7qM1ZSKWUVZczx5vlR4iZM7by129IYUdCq0SsbxQbbPZjnzj/0Qew==",
+ "integrity": "sha1-Wc00yV0ywR3nSW21yAHcd0jLhmY=",
"requires": {
"@compone/class": "^1.1.1",
"@compone/event": "^1.1.2"
@@ -63,7 +63,7 @@
"@compone/event": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@compone/event/-/event-1.1.2.tgz",
- "integrity": "sha512-baJDnAr8pWefqfltNS33HieD+s23YO+w2/RD6lPxIEzlOuM1R5RT5vpUUTcrzn0Er3oj62PlfMUyS0SwnVw67Q==",
+ "integrity": "sha1-4gymLJoaHAYqlhKHS3hFNzeny+s=",
"requires": {
"utilise": "^2.3.5"
}
@@ -71,8 +71,7 @@
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
- "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
- "dev": true,
+ "integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=",
"requires": {
"call-me-maybe": "^1.0.1",
"glob-to-regexp": "^0.3.0"
@@ -81,14 +80,12 @@
"@nodelib/fs.stat": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.2.tgz",
- "integrity": "sha512-yprFYuno9FtNsSHVlSWd+nRlmGoAbqbeCwOryP6sC/zoCjhpArcRMYp19EvpSUSizJAlsXEwJv+wcWS9XaXdMw==",
- "dev": true
+ "integrity": "sha1-VMWpZEYr49TXivYxNjwY1vqRrCY="
},
"@types/commander": {
"version": "2.12.2",
"resolved": "https://registry.npmjs.org/@types/commander/-/commander-2.12.2.tgz",
- "integrity": "sha512-0QEFiR8ljcHp9bAbWxecjVRuAMr16ivPiGOw6KFQBVrVd0RQIcM3xKdRisH2EDWgVWujiYtHwhSkSUoAAGzH7Q==",
- "dev": true,
+ "integrity": "sha1-GDBBojhC1CgUePpdI8XKeOb9CK4=",
"requires": {
"commander": "*"
}
@@ -96,19 +93,18 @@
"@types/node": {
"version": "8.10.29",
"resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.29.tgz",
- "integrity": "sha512-zbteaWZ2mdduacm0byELwtRyhYE40aK+pAanQk415gr1eRuu67x7QGOLmn8jz5zI8LDK7d0WI/oT6r5Trz4rzQ==",
+ "integrity": "sha1-s6E7WN17BoK/G0ICK+9KWpcY9oc=",
"optional": true
},
"@types/semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ==",
- "dev": true
+ "integrity": "sha1-FGwqKe59O65L8vyydGNuJkyBPEU="
},
"JSONStream": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.4.tgz",
- "integrity": "sha512-Y7vfi3I5oMOYIr+WxV8NZxDSwcbNgzdKYsTNInmycOq9bUYwGg9ryu57Wg5NLmCjqdFPNUmpMBo3kSJN9tCbXg==",
+ "integrity": "sha1-YVuyrbDNNMj0xEe19lEvodjxai4=",
"requires": {
"jsonparse": "^1.2.0",
"through": ">=2.2.7 <3"
@@ -117,7 +113,7 @@
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+ "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
},
"accepts": {
"version": "1.3.5",
@@ -131,12 +127,12 @@
"acorn": {
"version": "5.6.2",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.6.2.tgz",
- "integrity": "sha512-zUzo1E5dI2Ey8+82egfnttyMlMZ2y0D8xOCO3PNPPlYXpl8NZvF6Qk9L9BEtJs+43FqEmfBViDqc5d1ckRDguw=="
+ "integrity": "sha1-sdode+KsG0oyf7nquFFwLFBFtOc="
},
"acorn-dynamic-import": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz",
- "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==",
+ "integrity": "sha1-kBzu5Mf6rvfgetKkfokGddpQong=",
"requires": {
"acorn": "^5.0.0"
}
@@ -159,7 +155,7 @@
"acorn-node": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.5.2.tgz",
- "integrity": "sha512-krFKvw/d1F17AN3XZbybIUzEY4YEPNiGo05AfP3dBlfVKrMHETKpgjpuZkSF8qDNt9UkQcqj7am8yJLseklCMg==",
+ "integrity": "sha1-LKcj3xnZl7BYJLafbH+wkfxCwyI=",
"requires": {
"acorn": "^5.7.1",
"acorn-dynamic-import": "^3.0.0",
@@ -169,7 +165,7 @@
"acorn": {
"version": "5.7.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
- "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="
+ "integrity": "sha1-Z6ojG/iBKXS4UjWpZ3Hra9B+onk="
}
}
},
@@ -188,6 +184,14 @@
}
}
},
+ "acorn5-object-spread": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/acorn5-object-spread/-/acorn5-object-spread-4.0.0.tgz",
+ "integrity": "sha1-1XWAge7ZcSGrC+R+Mcqu8qo5lpc=",
+ "requires": {
+ "acorn": "^5.1.2"
+ }
+ },
"ajv": {
"version": "5.5.2",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
@@ -213,8 +217,7 @@
"alphanum-sort": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
- "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
- "dev": true
+ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM="
},
"amdefine": {
"version": "1.0.1",
@@ -224,7 +227,7 @@
"ansi-escapes": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz",
- "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==",
+ "integrity": "sha1-9zIHu4EgfXX9bIPxJa8m7qN4yjA=",
"dev": true
},
"ansi-regex": {
@@ -240,8 +243,7 @@
"ansi-to-html": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.6.tgz",
- "integrity": "sha512-90M/2sZna3OsoOEbSyXK46poFnlClBC53Rx6etNKQK7iShsX5fI5E/M9Ld6FurtLaxAWLuAPi0Jp8p3y5oAkxg==",
- "dev": true,
+ "integrity": "sha1-WKjQS4fsmoXjrSc8EqX7xxR7nEI=",
"requires": {
"entities": "^1.1.1"
}
@@ -249,7 +251,7 @@
"anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=",
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
@@ -268,7 +270,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -361,7 +363,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -371,14 +373,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -432,7 +434,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -440,7 +442,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -448,7 +450,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -481,12 +483,12 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -508,7 +510,7 @@
"aproba": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
- "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
+ "integrity": "sha1-aALmJk79GMeQobDVF/DyYnvyyUo="
},
"archiver": {
"version": "2.1.1",
@@ -541,7 +543,7 @@
"are-we-there-yet": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz",
- "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==",
+ "integrity": "sha1-SzXClE8GKov82mZBB2A1D+nd/CE=",
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^2.0.6"
@@ -550,7 +552,7 @@
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
"requires": {
"sprintf-js": "~1.0.2"
}
@@ -566,7 +568,7 @@
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
+ "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
},
"arr-union": {
"version": "3.1.0",
@@ -632,7 +634,7 @@
"asn1.js": {
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
- "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+ "integrity": "sha1-ucK/WAXx5kqt7tbfOiv6+1pz9aA=",
"requires": {
"bn.js": "^4.0.0",
"inherits": "^2.0.1",
@@ -655,7 +657,7 @@
"assertion-error": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
- "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="
+ "integrity": "sha1-5gtrDo8wG9l+U3UhW9pAbIURjAs="
},
"assign-symbols": {
"version": "1.0.0",
@@ -683,8 +685,7 @@
"async-limiter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
- "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==",
- "dev": true
+ "integrity": "sha1-ePrtjD0HSrgfIrTphdeehzj3IPg="
},
"asynckit": {
"version": "0.4.0",
@@ -694,13 +695,12 @@
"atob": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.0.tgz",
- "integrity": "sha512-SuiKH8vbsOyCALjA/+EINmt/Kdl+TQPrtFgW7XZZcwtryFu9e5kQoX3bjCW6mIvGH1fbeAZZuvwGR5IlBRznGw=="
+ "integrity": "sha1-qysVDlHXsSK578jXNAwGtsQQdrw="
},
"autoprefixer": {
"version": "8.6.5",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.6.5.tgz",
- "integrity": "sha512-PLWJN3Xo/rycNkx+mp8iBDMTm3FeWe4VmYaZDSqL5QQB9sLsQkG5k8n+LNDFnhh9kdq2K+egL/icpctOmDHwig==",
- "dev": true,
+ "integrity": "sha1-ND89GT7VaLMgjgARehuW62kdTuk=",
"requires": {
"browserslist": "^3.2.8",
"caniuse-lite": "^1.0.30000864",
@@ -713,8 +713,7 @@
"caniuse-lite": {
"version": "1.0.30000885",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000885.tgz",
- "integrity": "sha512-cXKbYwpxBLd7qHyej16JazPoUacqoVuDhvR61U7Fr5vSxMUiodzcYa1rQYRYfZ5GexV03vGZHd722vNPLjPJGQ==",
- "dev": true
+ "integrity": "sha1-6Inp+OflDnafKkljTJMriu5iKYQ="
}
}
},
@@ -726,13 +725,12 @@
"aws4": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz",
- "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w=="
+ "integrity": "sha1-1NDpudv8p3vwjusKikcVUP454ok="
},
"babel-code-frame": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
- "dev": true,
"requires": {
"chalk": "^1.1.3",
"esutils": "^2.0.2",
@@ -742,16 +740,14 @@
"js-tokens": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
- "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
- "dev": true
+ "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls="
}
}
},
"babel-core": {
"version": "6.26.3",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
- "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
- "dev": true,
+ "integrity": "sha1-suLwnjQtDwyI4vAuBneUEl51wgc=",
"requires": {
"babel-code-frame": "^6.26.0",
"babel-generator": "^6.26.0",
@@ -777,14 +773,12 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
},
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
- "dev": true,
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -794,8 +788,7 @@
"babel-generator": {
"version": "6.26.1",
"resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
- "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
- "dev": true,
+ "integrity": "sha1-GERAjTuPDTWkBOp6wYDwh6YBvZA=",
"requires": {
"babel-messages": "^6.23.0",
"babel-runtime": "^6.26.0",
@@ -810,14 +803,12 @@
"jsesc": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
- "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
- "dev": true
+ "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s="
},
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -825,7 +816,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
"integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
- "dev": true,
"requires": {
"babel-helper-explode-assignable-expression": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -836,7 +826,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
"integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
- "dev": true,
"requires": {
"babel-runtime": "^6.26.0",
"babel-types": "^6.26.0",
@@ -847,7 +836,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
"integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
- "dev": true,
"requires": {
"babel-helper-hoist-variables": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -859,7 +847,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
"integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
- "dev": true,
"requires": {
"babel-helper-function-name": "^6.24.1",
"babel-runtime": "^6.26.0",
@@ -870,8 +857,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -879,7 +865,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
"integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-traverse": "^6.24.1",
@@ -890,7 +875,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
- "dev": true,
"requires": {
"babel-helper-get-function-arity": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -903,7 +887,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
"integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -913,7 +896,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
"integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -923,7 +905,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
"integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -933,7 +914,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
"integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
- "dev": true,
"requires": {
"babel-runtime": "^6.26.0",
"babel-types": "^6.26.0",
@@ -943,8 +923,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -952,7 +931,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
"integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
- "dev": true,
"requires": {
"babel-helper-function-name": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -965,7 +943,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
"integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
- "dev": true,
"requires": {
"babel-helper-optimise-call-expression": "^6.24.1",
"babel-messages": "^6.23.0",
@@ -979,7 +956,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-template": "^6.24.1"
@@ -989,7 +965,6 @@
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -998,7 +973,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
"integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1006,32 +980,27 @@
"babel-plugin-syntax-async-functions": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
- "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
- "dev": true
+ "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU="
},
"babel-plugin-syntax-exponentiation-operator": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
- "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
- "dev": true
+ "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4="
},
"babel-plugin-syntax-jsx": {
"version": "6.18.0",
"resolved": "http://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
- "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
- "dev": true
+ "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
},
"babel-plugin-syntax-trailing-function-commas": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
- "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
- "dev": true
+ "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM="
},
"babel-plugin-transform-async-to-generator": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
"integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
- "dev": true,
"requires": {
"babel-helper-remap-async-to-generator": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
@@ -1042,7 +1011,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
"integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1051,7 +1019,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
"integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1060,7 +1027,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
"integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
- "dev": true,
"requires": {
"babel-runtime": "^6.26.0",
"babel-template": "^6.26.0",
@@ -1072,8 +1038,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -1081,7 +1046,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
"integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
- "dev": true,
"requires": {
"babel-helper-define-map": "^6.24.1",
"babel-helper-function-name": "^6.24.1",
@@ -1098,7 +1062,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
"integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-template": "^6.24.1"
@@ -1108,7 +1071,6 @@
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
"integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1117,7 +1079,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
"integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -1127,7 +1088,6 @@
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
"integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1136,7 +1096,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
"integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
- "dev": true,
"requires": {
"babel-helper-function-name": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1147,7 +1106,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
"integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1156,7 +1114,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
"integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
- "dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1166,8 +1123,7 @@
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.2",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
- "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
- "dev": true,
+ "integrity": "sha1-WKeThjqefKhwvcWogRF/+sJ9tvM=",
"requires": {
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-runtime": "^6.26.0",
@@ -1179,7 +1135,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
"integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
- "dev": true,
"requires": {
"babel-helper-hoist-variables": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1190,7 +1145,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
"integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
- "dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1201,7 +1155,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
"integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
- "dev": true,
"requires": {
"babel-helper-replace-supers": "^6.24.1",
"babel-runtime": "^6.22.0"
@@ -1211,7 +1164,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
"integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
- "dev": true,
"requires": {
"babel-helper-call-delegate": "^6.24.1",
"babel-helper-get-function-arity": "^6.24.1",
@@ -1225,7 +1177,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
"integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -1235,7 +1186,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
"integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1244,7 +1194,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
"integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
- "dev": true,
"requires": {
"babel-helper-regex": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1255,7 +1204,6 @@
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
"integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1264,7 +1212,6 @@
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
"integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0"
}
@@ -1273,7 +1220,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
"integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
- "dev": true,
"requires": {
"babel-helper-regex": "^6.24.1",
"babel-runtime": "^6.22.0",
@@ -1284,7 +1230,6 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
"integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
- "dev": true,
"requires": {
"regenerate": "^1.2.1",
"regjsgen": "^0.2.0",
@@ -1297,7 +1242,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
"integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
- "dev": true,
"requires": {
"babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
"babel-plugin-syntax-exponentiation-operator": "^6.8.0",
@@ -1308,7 +1252,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
"integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
- "dev": true,
"requires": {
"babel-helper-builder-react-jsx": "^6.24.1",
"babel-plugin-syntax-jsx": "^6.8.0",
@@ -1319,7 +1262,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
"integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
- "dev": true,
"requires": {
"regenerator-transform": "^0.10.0"
}
@@ -1328,7 +1270,6 @@
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
"integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
- "dev": true,
"requires": {
"babel-runtime": "^6.22.0",
"babel-types": "^6.24.1"
@@ -1337,8 +1278,7 @@
"babel-plugin-wildcard": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/babel-plugin-wildcard/-/babel-plugin-wildcard-5.0.0.tgz",
- "integrity": "sha512-RhbEQV7HbqfreBW41R2ExJV4SdeG3pnno2gYqbucrrzhBub3/72524yNeQbPa0dyVJQwGS/DZ2X6MeiWSdErlQ==",
- "dev": true,
+ "integrity": "sha1-cagoTYH3UwviBV+0fg04jLlqSOw=",
"requires": {
"rimraf": "^2.6.2"
}
@@ -1346,8 +1286,7 @@
"babel-preset-env": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
- "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
- "dev": true,
+ "integrity": "sha1-3qefpOvriDzTXasH4mDBycBN93o=",
"requires": {
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
@@ -1384,8 +1323,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
- "dev": true,
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -1394,14 +1332,12 @@
"electron-to-chromium": {
"version": "1.3.48",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz",
- "integrity": "sha1-07DYWTgUBE4JLs4hCPw6ya6kuQA=",
- "dev": true
+ "integrity": "sha1-07DYWTgUBE4JLs4hCPw6ya6kuQA="
},
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
- "dev": true
+ "integrity": "sha1-3Eu8emyp2Rbe5dQ1FvAJK1j3uKs="
}
}
},
@@ -1409,7 +1345,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
"integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
- "dev": true,
"requires": {
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
@@ -1423,8 +1358,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -1432,7 +1366,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
- "dev": true,
"requires": {
"core-js": "^2.4.0",
"regenerator-runtime": "^0.11.0"
@@ -1441,8 +1374,7 @@
"core-js": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
- "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==",
- "dev": true
+ "integrity": "sha1-+XJgj/DOrWi4QaFqky0LGDeRgU4="
}
}
},
@@ -1450,7 +1382,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
- "dev": true,
"requires": {
"babel-runtime": "^6.26.0",
"babel-traverse": "^6.26.0",
@@ -1462,14 +1393,12 @@
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
- "dev": true
+ "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -1477,7 +1406,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
- "dev": true,
"requires": {
"babel-code-frame": "^6.26.0",
"babel-messages": "^6.23.0",
@@ -1493,20 +1421,17 @@
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
- "dev": true
+ "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"globals": {
"version": "9.18.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
- "dev": true
+ "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo="
},
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
@@ -1514,7 +1439,6 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
- "dev": true,
"requires": {
"babel-runtime": "^6.26.0",
"esutils": "^2.0.2",
@@ -1525,22 +1449,19 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
- "dev": true
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
- "dev": true
+ "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"babylon-walk": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/babylon-walk/-/babylon-walk-1.0.2.tgz",
"integrity": "sha1-OxWl3btIKni0zpwByLoYFwLZ1s4=",
- "dev": true,
"requires": {
"babel-runtime": "^6.11.6",
"babel-types": "^6.15.0",
@@ -1555,7 +1476,7 @@
"base": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
@@ -1577,7 +1498,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -1585,7 +1506,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -1593,7 +1514,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -1608,14 +1529,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"base64-js": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
- "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="
+ "integrity": "sha1-yrHmEY8FEJXli1KBrqjBzSK/wOM="
},
"bcrypt-pbkdf": {
"version": "1.0.1",
@@ -1629,8 +1550,7 @@
"big.js": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
- "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
- "dev": true
+ "integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4="
},
"binary": {
"version": "0.3.0",
@@ -1650,13 +1570,12 @@
"bindings": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz",
- "integrity": "sha1-FK1hE4EtLTfXLme0ystLtyZQXxE=",
- "dev": true
+ "integrity": "sha1-FK1hE4EtLTfXLme0ystLtyZQXxE="
},
"bl": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
- "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==",
+ "integrity": "sha1-oWCRFxcQPAdBDO9j71Gzl8Alr5w=",
"requires": {
"readable-stream": "^2.3.5",
"safe-buffer": "^5.1.1"
@@ -1673,7 +1592,7 @@
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
- "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
+ "integrity": "sha1-LN4J617jQfSEdGuwMJsyU7GxRC8="
},
"body-parser": {
"version": "1.18.2",
@@ -1695,15 +1614,14 @@
"qs": {
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
- "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
+ "integrity": "sha1-NJzfbu+J7EXBLX1es/wMhwNDptg="
}
}
},
"boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
- "dev": true
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
},
"boom": {
"version": "4.3.1",
@@ -1716,7 +1634,7 @@
"bootstrap": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.1.3.tgz",
- "integrity": "sha512-rDFIzgXcof0jDyjNosjv4Sno77X4KuPeFxG2XZZv1/Kc8DRVGVADdoQyyOVDwPqL36DDmtCQbrpMCqvpPLJQ0w=="
+ "integrity": "sha1-DrNxryyESOjCEEEdDLgkpkCaEr4="
},
"bootstrap-datetime-picker": {
"version": "2.4.4",
@@ -1726,7 +1644,7 @@
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
@@ -1745,8 +1663,7 @@
"brfs": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz",
- "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==",
- "dev": true,
+ "integrity": "sha1-t4ziM22BjiXuoEoJR8um1PuIScM=",
"requires": {
"quote-stream": "^1.0.1",
"resolve": "^1.1.5",
@@ -1779,7 +1696,7 @@
"browser-pack": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz",
- "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==",
+ "integrity": "sha1-w0uhDQuc4WK1ryJ8cTHJLC7NV3Q=",
"requires": {
"JSONStream": "^1.0.3",
"combine-source-map": "~0.8.0",
@@ -1792,7 +1709,7 @@
"browser-resolve": {
"version": "1.11.3",
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz",
- "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==",
+ "integrity": "sha1-m3y7PQ9RDky4a9vXlhJNKLWJCvY=",
"requires": {
"resolve": "1.1.7"
},
@@ -1807,7 +1724,7 @@
"browser-stdout": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
- "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="
+ "integrity": "sha1-uqVZ7hTO1zRSIputcyZGfGH6vWA="
},
"browserify": {
"version": "12.0.2",
@@ -1986,7 +1903,7 @@
"browserify-cipher": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
- "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=",
"requires": {
"browserify-aes": "^1.0.4",
"browserify-des": "^1.0.0",
@@ -1996,7 +1913,7 @@
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
- "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
"requires": {
"buffer-xor": "^1.0.3",
"cipher-base": "^1.0.0",
@@ -2011,7 +1928,7 @@
"browserify-des": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz",
- "integrity": "sha512-zy0Cobe3hhgpiOM32Tj7KQ3Vl91m0njwsjzZQK1L+JDf11dzP9qIvjreVinsvXrgfjhStXwUWAEpB9D7Gwmayw==",
+ "integrity": "sha1-M0MSTbbXrVPiaogmMYcSvchFD5w=",
"requires": {
"cipher-base": "^1.0.1",
"des.js": "^1.0.0",
@@ -2052,8 +1969,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
- "dev": true,
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -2062,7 +1978,7 @@
"buble": {
"version": "0.16.0",
"resolved": "https://registry.npmjs.org/buble/-/buble-0.16.0.tgz",
- "integrity": "sha512-Eb5vt1+IvXXPyYD1IIQIuaBwIuJOSWQ2kXzULlg5I83aLGF2qzcjRU2joYusnWFgAenvJ9xTOMvZvT0bb8BLbg==",
+ "integrity": "sha1-F3PntaOD9ccir2sbFrK6ScuGapg=",
"requires": {
"acorn": "^3.3.0",
"acorn-jsx": "^3.0.1",
@@ -2085,7 +2001,6 @@
"version": "4.9.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
"integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
- "dev": true,
"requires": {
"base64-js": "^1.0.2",
"ieee754": "^1.1.4",
@@ -2095,7 +2010,7 @@
"buffer-alloc": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
- "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
+ "integrity": "sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow=",
"requires": {
"buffer-alloc-unsafe": "^1.1.0",
"buffer-fill": "^1.0.0"
@@ -2104,7 +2019,7 @@
"buffer-alloc-unsafe": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
- "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
+ "integrity": "sha1-vX3CauKXLQ7aJTvgYdupkjScGfA="
},
"buffer-crc32": {
"version": "0.2.13",
@@ -2119,7 +2034,7 @@
"buffer-from": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz",
- "integrity": "sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA=="
+ "integrity": "sha1-TLiDLSNhJYmwQG6eKVbBfwb99TE="
},
"buffer-xor": {
"version": "1.0.3",
@@ -2150,7 +2065,7 @@
"cache-base": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=",
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
@@ -2178,8 +2093,7 @@
"call-me-maybe": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
- "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
- "dev": true
+ "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms="
},
"caller-path": {
"version": "0.1.0",
@@ -2216,7 +2130,6 @@
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz",
"integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=",
- "dev": true,
"requires": {
"browserslist": "^1.3.6",
"caniuse-db": "^1.0.30000529",
@@ -2228,7 +2141,6 @@
"version": "1.7.7",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
"integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
- "dev": true,
"requires": {
"caniuse-db": "^1.0.30000639",
"electron-to-chromium": "^1.2.7"
@@ -2239,14 +2151,12 @@
"caniuse-db": {
"version": "1.0.30000885",
"resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000885.tgz",
- "integrity": "sha512-Hy1a+UIXooG+tRlt3WnT9avMf+l999bR9J1MqlQdYKgbsYjKxV4a4rgcmiyMmdCLPBFsiRoDxdl9tnNyaq2RXw==",
- "dev": true
+ "integrity": "sha1-zcmN0WjtWWeGUAcff2pwkQ4nW8g="
},
"caniuse-lite": {
"version": "1.0.30000850",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000850.tgz",
- "integrity": "sha512-iHK48UR/InydhpPAzgSmsJXRAR925T0kwJhZ1wk0xRatpGMvi2f06LABg6HXfV4WW4P2wChzlcFa/TEmbTyXQA==",
- "dev": true
+ "integrity": "sha1-5oqI206lmLTDO4QZ9zhUc+SAJJU="
},
"caseless": {
"version": "0.12.0",
@@ -2297,13 +2207,13 @@
"chardet": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
- "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+ "integrity": "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=",
"dev": true
},
"chart.js": {
"version": "2.7.2",
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.7.2.tgz",
- "integrity": "sha512-90wl3V9xRZ8tnMvMlpcW+0Yg13BelsGS9P9t0ClaDxv/hdypHDr/YAGf+728m11P5ljwyB0ZHfPKCapZFqSqYA==",
+ "integrity": "sha1-PJ/eTcW5VgghG97+2n5dM9/6VxQ=",
"requires": {
"chartjs-color": "^2.1.0",
"moment": "^2.10.2"
@@ -2328,7 +2238,7 @@
"chartjs-color-string": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.5.0.tgz",
- "integrity": "sha512-amWNvCOXlOUYxZVDSa0YOab5K/lmEhbFNKI55PWc4mlv28BDzA7zaoQTGxSBgJMHIW+hGX8YUrvw/FH4LyhwSQ==",
+ "integrity": "sha1-jTdS2Fgdhmh8Nb/iy4CsUhPOuME=",
"requires": {
"color-name": "^1.0.0"
}
@@ -2341,7 +2251,7 @@
"chokidar": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz",
- "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==",
+ "integrity": "sha1-3L1PbLsqVbR5m6ioQKxSfl9LEXY=",
"requires": {
"anymatch": "^2.0.0",
"async-each": "^1.0.0",
@@ -2365,7 +2275,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -2448,7 +2358,7 @@
"cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
- "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -2457,14 +2367,13 @@
"circular-json": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
- "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
+ "integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=",
"dev": true
},
"clap": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz",
- "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==",
- "dev": true,
+ "integrity": "sha1-TzZ0WzIAhJJVf0ZBLWbVDLmbzlE=",
"requires": {
"chalk": "^1.1.3"
}
@@ -2472,7 +2381,7 @@
"class-utils": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=",
"requires": {
"arr-union": "^3.1.0",
"define-property": "^0.2.5",
@@ -2499,7 +2408,6 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
- "dev": true,
"requires": {
"restore-cursor": "^2.0.0"
}
@@ -2507,8 +2415,7 @@
"cli-spinners": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz",
- "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==",
- "dev": true
+ "integrity": "sha1-ACwZkJEtDVlYDJO9NsBW3pnkJZo="
},
"cli-width": {
"version": "2.2.0",
@@ -2519,8 +2426,7 @@
"clone": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
- "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
- "dev": true
+ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
},
"clone-buffer": {
"version": "1.0.0",
@@ -2530,7 +2436,7 @@
"cloneable-readable": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz",
- "integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==",
+ "integrity": "sha1-1ZHe5Kj4vBXaQ86X3O66E9Q+KmU=",
"requires": {
"inherits": "^2.0.1",
"process-nextick-args": "^2.0.0",
@@ -2540,8 +2446,7 @@
"clones": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/clones/-/clones-1.1.0.tgz",
- "integrity": "sha1-h+kEEy1hQMXAtyAGwIwNBb17Y7M=",
- "dev": true
+ "integrity": "sha1-h+kEEy1hQMXAtyAGwIwNBb17Y7M="
},
"co": {
"version": "4.6.0",
@@ -2552,7 +2457,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz",
"integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=",
- "dev": true,
"requires": {
"q": "^1.1.2"
}
@@ -2575,7 +2479,6 @@
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
"integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
- "dev": true,
"requires": {
"clone": "^1.0.2",
"color-convert": "^1.3.0",
@@ -2585,7 +2488,7 @@
"color-convert": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
- "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
+ "integrity": "sha1-wSYRB66y8pTr/+ye2eytUppgl+0=",
"requires": {
"color-name": "^1.1.1"
}
@@ -2599,7 +2502,6 @@
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz",
"integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
- "dev": true,
"requires": {
"color-name": "^1.0.0"
}
@@ -2608,7 +2510,6 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz",
"integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=",
- "dev": true,
"requires": {
"color": "^0.11.0",
"css-color-names": "0.0.4",
@@ -2654,13 +2555,12 @@
"command-exists": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz",
- "integrity": "sha512-doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw==",
- "dev": true
+ "integrity": "sha1-FoKPDD/ysMWIBYYe8hG2T8FWkqg="
},
"commander": {
"version": "2.15.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz",
- "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag=="
+ "integrity": "sha1-30boZ9D8Kuxmo0ZitAapzK//Ww8="
},
"component-emitter": {
"version": "1.2.1",
@@ -2689,14 +2589,14 @@
"mime-db": {
"version": "1.36.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz",
- "integrity": "sha512-L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw=="
+ "integrity": "sha1-UCBHjbPH/pOq17vMTc+GnEM2M5c="
}
}
},
"compression": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz",
- "integrity": "sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==",
+ "integrity": "sha1-J+DhdqryYPfywoE8PkQK258Zk9s=",
"requires": {
"accepts": "~1.3.5",
"bytes": "3.0.0",
@@ -2710,7 +2610,7 @@
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
}
}
},
@@ -2722,7 +2622,7 @@
"concat-stream": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=",
"requires": {
"buffer-from": "^1.0.0",
"inherits": "^2.0.3",
@@ -2733,8 +2633,7 @@
"config-chain": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
- "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==",
- "dev": true,
+ "integrity": "sha1-D96NCRIA616AjK8l/mGMAvSOTvo=",
"requires": {
"ini": "^1.3.4",
"proto-list": "~1.2.1"
@@ -2766,13 +2665,12 @@
"content-type": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+ "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js="
},
"convert-source-map": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz",
- "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=",
- "dev": true
+ "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU="
},
"cookie": {
"version": "0.3.1",
@@ -2801,8 +2699,7 @@
"core-js": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
- "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==",
- "dev": true
+ "integrity": "sha1-+XJgj/DOrWi4QaFqky0LGDeRgU4="
},
"core-util-is": {
"version": "1.0.2",
@@ -2812,8 +2709,7 @@
"cosmiconfig": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.6.tgz",
- "integrity": "sha512-6DWfizHriCrFWURP1/qyhsiFvYdlJzbCzmtFWh744+KyWsJo5+kPzUZZaMRSSItoYc0pxFX7gEO7ZC1/gN/7AQ==",
- "dev": true,
+ "integrity": "sha1-3KbPaAoL0DWJr/aEcAhYyBq+6zk=",
"requires": {
"is-directory": "^0.3.1",
"js-yaml": "^3.9.0",
@@ -2823,8 +2719,7 @@
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
- "dev": true,
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -2834,7 +2729,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
- "dev": true,
"requires": {
"error-ex": "^1.3.1",
"json-parse-better-errors": "^1.0.1"
@@ -2859,7 +2753,7 @@
"create-ecdh": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
- "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+ "integrity": "sha1-yREbbzMEXEaX8UR4f5JUzcd8Rf8=",
"requires": {
"bn.js": "^4.1.0",
"elliptic": "^6.0.0"
@@ -2868,7 +2762,7 @@
"create-hash": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
- "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "integrity": "sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=",
"requires": {
"cipher-base": "^1.0.1",
"inherits": "^2.0.1",
@@ -2880,7 +2774,7 @@
"ripemd160": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
- "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
"requires": {
"hash-base": "^3.0.0",
"inherits": "^2.0.1"
@@ -2889,7 +2783,7 @@
"sha.js": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -2900,7 +2794,7 @@
"create-hmac": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
- "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "integrity": "sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=",
"requires": {
"cipher-base": "^1.0.3",
"create-hash": "^1.1.0",
@@ -2913,7 +2807,7 @@
"ripemd160": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
- "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
"requires": {
"hash-base": "^3.0.0",
"inherits": "^2.0.1"
@@ -2922,7 +2816,7 @@
"sha.js": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -2942,7 +2836,7 @@
"cryonic": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/cryonic/-/cryonic-1.0.0.tgz",
- "integrity": "sha512-8wqWtdI+7IQVYCDS40H/H267zb2Lwn08Q7HT0hIqHNMkRPQdV355dPRu/hV02k2sBtZJ+KEnRVtaZWzT3hPVmQ=="
+ "integrity": "sha1-VzIOdX18OrxykUsDfgSSlea9BPQ="
},
"cryptiles": {
"version": "3.1.2",
@@ -2955,7 +2849,7 @@
"boom": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
- "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==",
+ "integrity": "sha1-XdnabuOl8wIHdDYpDLcX0/SlTgI=",
"requires": {
"hoek": "4.x.x"
}
@@ -2965,7 +2859,7 @@
"crypto-browserify": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
- "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "integrity": "sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=",
"requires": {
"browserify-cipher": "^1.0.0",
"browserify-sign": "^4.0.0",
@@ -2983,14 +2877,12 @@
"css-color-names": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
- "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=",
- "dev": true
+ "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA="
},
"css-declaration-sorter": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-3.0.1.tgz",
- "integrity": "sha512-jH4024SHZ3e0M7ann9VxpFpH3moplRXNz9ZBqvFMZqi09Yo5ARbs2wdPH8GqN9iRTlQynrbGbraNbBxBLei85Q==",
- "dev": true,
+ "integrity": "sha1-0OMFaw/YjcHqnc7/Q1rb6ccCp/g=",
"requires": {
"postcss": "^6.0.0",
"timsort": "^0.3.0"
@@ -3000,7 +2892,6 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz",
"integrity": "sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=",
- "dev": true,
"requires": {
"icss-replace-symbols": "1.1.0",
"postcss": "6.0.1",
@@ -3013,14 +2904,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz",
"integrity": "sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=",
- "dev": true,
"requires": {
"chalk": "^1.1.3",
"source-map": "^0.5.6",
@@ -3031,7 +2920,6 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz",
"integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=",
- "dev": true,
"requires": {
"postcss": "^6.0.1"
}
@@ -3040,7 +2928,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -3051,7 +2938,6 @@
"version": "1.3.0-rc0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-1.3.0-rc0.tgz",
"integrity": "sha1-b5MZaqrnN2ZuoQNqjLFKj8t6kjE=",
- "dev": true,
"requires": {
"boolbase": "^1.0.0",
"css-what": "2.1",
@@ -3062,14 +2948,12 @@
"css-select-base-adapter": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz",
- "integrity": "sha1-AQKz0UYw34bD65+p9UVicBBs+ZA=",
- "dev": true
+ "integrity": "sha1-AQKz0UYw34bD65+p9UVicBBs+ZA="
},
"css-selector-tokenizer": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz",
"integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=",
- "dev": true,
"requires": {
"cssesc": "^0.1.0",
"fastparse": "^1.1.1",
@@ -3079,8 +2963,7 @@
"css-tree": {
"version": "1.0.0-alpha25",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz",
- "integrity": "sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==",
- "dev": true,
+ "integrity": "sha1-G7+r+/bu708B2RCP8u3Qvi/jVZc=",
"requires": {
"mdn-data": "^1.0.0",
"source-map": "^0.5.3"
@@ -3089,32 +2972,27 @@
"css-unit-converter": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz",
- "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=",
- "dev": true
+ "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY="
},
"css-url-regex": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz",
- "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=",
- "dev": true
+ "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w="
},
"css-what": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz",
- "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=",
- "dev": true
+ "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0="
},
"cssesc": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz",
- "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=",
- "dev": true
+ "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q="
},
"cssnano": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz",
"integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=",
- "dev": true,
"requires": {
"autoprefixer": "^6.3.1",
"decamelize": "^1.1.2",
@@ -3154,7 +3032,6 @@
"version": "6.7.7",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz",
"integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=",
- "dev": true,
"requires": {
"browserslist": "^1.7.6",
"caniuse-db": "^1.0.30000634",
@@ -3168,7 +3045,6 @@
"version": "1.7.7",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
"integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
- "dev": true,
"requires": {
"caniuse-db": "^1.0.30000639",
"electron-to-chromium": "^1.2.7"
@@ -3177,14 +3053,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -3196,7 +3070,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -3207,7 +3080,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.0.tgz",
"integrity": "sha1-wzQoe099SfstFwqS+SFGVXiOO2s=",
- "dev": true,
"requires": {
"css-declaration-sorter": "^3.0.0",
"cssnano-util-raw-cache": "^4.0.0",
@@ -3244,8 +3116,7 @@
"browserslist": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.1.1.tgz",
- "integrity": "sha512-VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q==",
- "dev": true,
+ "integrity": "sha1-Mo60/xIVsS32WJ6auC+K2qT8jNY=",
"requires": {
"caniuse-lite": "^1.0.30000884",
"electron-to-chromium": "^1.3.62",
@@ -3255,8 +3126,7 @@
"caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
- "dev": true,
+ "integrity": "sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=",
"requires": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.0",
@@ -3267,14 +3137,12 @@
"caniuse-lite": {
"version": "1.0.30000885",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000885.tgz",
- "integrity": "sha512-cXKbYwpxBLd7qHyej16JazPoUacqoVuDhvR61U7Fr5vSxMUiodzcYa1rQYRYfZ5GexV03vGZHd722vNPLjPJGQ==",
- "dev": true
+ "integrity": "sha1-6Inp+OflDnafKkljTJMriu5iKYQ="
},
"coa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
- "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
- "dev": true,
+ "integrity": "sha1-8/iwsVBz411wJj+xBCyywCPbOK8=",
"requires": {
"q": "^1.1.2"
}
@@ -3282,8 +3150,7 @@
"color": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz",
- "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==",
- "dev": true,
+ "integrity": "sha1-2SC0Mo1TSjrIKV1o971LpsQnvpo=",
"requires": {
"color-convert": "^1.9.1",
"color-string": "^1.5.2"
@@ -3292,8 +3159,7 @@
"color-string": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
- "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
- "dev": true,
+ "integrity": "sha1-ybvF8BtYtUkvPWhXRZy2WQziBMw=",
"requires": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
@@ -3302,8 +3168,7 @@
"csso": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz",
- "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==",
- "dev": true,
+ "integrity": "sha1-e564vmFiiXPBsmHhadLwJACOdYs=",
"requires": {
"css-tree": "1.0.0-alpha.29"
},
@@ -3311,8 +3176,7 @@
"css-tree": {
"version": "1.0.0-alpha.29",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
- "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
- "dev": true,
+ "integrity": "sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=",
"requires": {
"mdn-data": "~1.1.0",
"source-map": "^0.5.3"
@@ -3323,8 +3187,7 @@
"is-svg": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
- "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
- "dev": true,
+ "integrity": "sha1-kyHb0pwhLlypnE+peUxxS8r6L3U=",
"requires": {
"html-comment-regex": "^1.1.0"
}
@@ -3332,8 +3195,7 @@
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
- "dev": true,
+ "integrity": "sha1-LnhEFka9RoLpY/IrbpKCPDCcYtw=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -3342,20 +3204,17 @@
"mdn-data": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz",
- "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==",
- "dev": true
+ "integrity": "sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE="
},
"normalize-url": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz",
- "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==",
- "dev": true
+ "integrity": "sha1-suHE3E98bVd0PfczpPWXjRhlBVk="
},
"postcss-calc": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.1.tgz",
"integrity": "sha1-PSQXG79udinUIqQ26/5t2VEfQzA=",
- "dev": true,
"requires": {
"css-unit-converter": "^1.1.1",
"postcss": "^6.0.0",
@@ -3367,7 +3226,6 @@
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.1.tgz",
"integrity": "sha1-bxwYoBVbxpYT8v8ThD4uSuj/C74=",
- "dev": true,
"requires": {
"browserslist": "^4.0.0",
"color": "^3.0.0",
@@ -3380,7 +3238,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.0.tgz",
"integrity": "sha1-d9d9mu0dxOaVbmUcw0nVMwWHb2I=",
- "dev": true,
"requires": {
"postcss": "^6.0.0",
"postcss-value-parser": "^3.0.0"
@@ -3390,7 +3247,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.0.tgz",
"integrity": "sha1-loSimedrPpMmPvj9KtvxocCP2I0=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3399,7 +3255,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.0.tgz",
"integrity": "sha1-QvPCZ/hfqQngQsNXZ+z9Zcsr1yw=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3408,7 +3263,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.0.tgz",
"integrity": "sha1-VeGKWcdBKOOMfSgEvPpAVmEfuX8=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3417,7 +3271,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.0.tgz",
"integrity": "sha1-Sgv4WXh4TPH4HtLBwf2dlkodofo=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3425,8 +3278,7 @@
"postcss-merge-longhand": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.5.tgz",
- "integrity": "sha512-tw2obF6I2VhXhPMObQc1QpQO850m3arhqP3PcBAU7Tx70v73QF6brs9uK0XKMNuC7BPo6DW+fh07cGhrLL57HA==",
- "dev": true,
+ "integrity": "sha1-AImNcjR/x+QLtWSxG9wIEZxZm1k=",
"requires": {
"css-color-names": "0.0.4",
"postcss": "^6.0.0",
@@ -3438,7 +3290,6 @@
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.1.tgz",
"integrity": "sha1-Qw/Vmz8u0uivzQsxJ47aOYVKuxA=",
- "dev": true,
"requires": {
"browserslist": "^4.0.0",
"caniuse-api": "^3.0.0",
@@ -3452,7 +3303,6 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
"integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
- "dev": true,
"requires": {
"dot-prop": "^4.1.1",
"indexes-of": "^1.0.1",
@@ -3465,7 +3315,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.0.tgz",
"integrity": "sha1-TMM9KD1qgXWQNudX75gdksvYW+0=",
- "dev": true,
"requires": {
"postcss": "^6.0.0",
"postcss-value-parser": "^3.0.0"
@@ -3475,7 +3324,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.0.tgz",
"integrity": "sha1-P8ORZDnSepu4Bm23za2AFlDrCQ4=",
- "dev": true,
"requires": {
"cssnano-util-get-arguments": "^4.0.0",
"is-color-stop": "^1.0.0",
@@ -3487,7 +3335,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.0.tgz",
"integrity": "sha1-BekWbuSMBa9lGYnOhNOcG015BnQ=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.0",
"cssnano-util-get-arguments": "^4.0.0",
@@ -3500,7 +3347,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.0.tgz",
"integrity": "sha1-sen2xGNBbT/Nyybnt4XZX2FXiq0=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.0",
"has": "^1.0.0",
@@ -3512,7 +3358,6 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
"integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
- "dev": true,
"requires": {
"dot-prop": "^4.1.1",
"indexes-of": "^1.0.1",
@@ -3525,7 +3370,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.0.tgz",
"integrity": "sha1-JFJyknAtXoEp6vo9HeSe1RpqtzA=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3534,7 +3378,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.0.tgz",
"integrity": "sha1-t6nIrSbPJmlMFG6y1ovQz0mVbw0=",
- "dev": true,
"requires": {
"is-absolute-url": "^2.0.0",
"normalize-url": "^3.0.0",
@@ -3545,8 +3388,7 @@
"postcss-ordered-values": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.0.tgz",
- "integrity": "sha512-gbqbEiONKKJgoOKhtzBjFqmHSzviPL4rv0ACVcFS7wxWXBY07agFXRQ7Y3eMGV0ZORzQXp2NGnj0c+imJG0NcA==",
- "dev": true,
+ "integrity": "sha1-LHadXUSqPHyQe4vi6ZftGd/Y1Qo=",
"requires": {
"cssnano-util-get-arguments": "^4.0.0",
"postcss": "^6.0.0",
@@ -3557,7 +3399,6 @@
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.1.tgz",
"integrity": "sha1-8tWPUM6isMXcEnjW6l7Q/1gpwpM=",
- "dev": true,
"requires": {
"browserslist": "^4.0.0",
"caniuse-api": "^3.0.0",
@@ -3569,7 +3410,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.0.tgz",
"integrity": "sha1-9kX8dEDDUnT0DegQThStcWPt8Yg=",
- "dev": true,
"requires": {
"cssnano-util-get-match": "^4.0.0",
"has": "^1.0.0",
@@ -3581,7 +3421,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.0.tgz",
"integrity": "sha1-wLutAlIPxjbJ14sOhAPi5RXDIoU=",
- "dev": true,
"requires": {
"is-svg": "^3.0.0",
"postcss": "^6.0.0",
@@ -3593,7 +3432,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.0.tgz",
"integrity": "sha1-BMHpdkx1h0JhMDQCxB8Ol2n8VQE=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.0",
"postcss": "^6.0.0",
@@ -3603,8 +3441,7 @@
"reduce-css-calc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.4.tgz",
- "integrity": "sha512-i/vWQbyd3aJRmip9OVSN9V6nIjLf/gg/ctxb0CpvHWtcRysFl/ngDBQD+rqavxdw/doScA3GMBXhzkHQ4GCzFQ==",
- "dev": true,
+ "integrity": "sha1-wg6c2oRFrXPU/0vqlgxvg1N5Fwg=",
"requires": {
"css-unit-converter": "^1.1.1",
"postcss-value-parser": "^3.3.0"
@@ -3613,8 +3450,7 @@
"svgo": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
- "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
- "dev": true,
+ "integrity": "sha1-cEA2TAYqBTirrP9EAc6momp6OJo=",
"requires": {
"coa": "~2.0.1",
"colors": "~1.1.2",
@@ -3637,20 +3473,17 @@
"cssnano-util-get-arguments": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
- "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=",
- "dev": true
+ "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8="
},
"cssnano-util-get-match": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
- "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=",
- "dev": true
+ "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0="
},
"cssnano-util-raw-cache": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.0.tgz",
"integrity": "sha1-vgooVuJfGF9feivMBiTii38Xmp8=",
- "dev": true,
"requires": {
"postcss": "^6.0.0"
}
@@ -3658,14 +3491,12 @@
"cssnano-util-same-parent": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.0.tgz",
- "integrity": "sha1-0qPeEDmqmLxOwlAB+gUDMMKhbaw=",
- "dev": true
+ "integrity": "sha1-0qPeEDmqmLxOwlAB+gUDMMKhbaw="
},
"csso": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz",
"integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=",
- "dev": true,
"requires": {
"clap": "^1.0.9",
"source-map": "^0.5.3"
@@ -3695,8 +3526,7 @@
"deasync": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.13.tgz",
- "integrity": "sha512-/6ngYM7AapueqLtvOzjv9+11N2fHDSrkxeMF1YPE20WIfaaawiBg+HZH1E5lHrcJxlKR42t6XPOEmMmqcAsU1g==",
- "dev": true,
+ "integrity": "sha1-gVwrabvREXyuVwFSzYlWYcCfIOo=",
"requires": {
"bindings": "~1.2.1",
"nan": "^2.0.7"
@@ -3705,7 +3535,7 @@
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"requires": {
"ms": "2.0.0"
}
@@ -3723,7 +3553,7 @@
"decompress-zip": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/decompress-zip/-/decompress-zip-0.3.1.tgz",
- "integrity": "sha512-pNGzi0RIpLA/CqrMQoSuh/1+YiVGJSEhQeibgoZQEdPFQOhO5pvqim3sp1qMvio3+mkonUQ1Akjdw8RgvV/RsA==",
+ "integrity": "sha1-Pkxpcv6A2Juw+pVC4wBEAZrm9iY=",
"optional": true,
"requires": {
"binary": "^0.3.0",
@@ -3764,7 +3594,7 @@
"deep-eql": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz",
- "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==",
+ "integrity": "sha1-38lARACtHI/gI+faHfHBR8S0RN8=",
"requires": {
"type-detect": "^4.0.0"
}
@@ -3772,14 +3602,12 @@
"deep-is": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
- "dev": true
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
},
"defaults": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
"integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
- "dev": true,
"requires": {
"clone": "^1.0.2"
}
@@ -3788,7 +3616,6 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz",
"integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=",
- "dev": true,
"requires": {
"foreach": "^2.0.5",
"object-keys": "^1.0.8"
@@ -3797,15 +3624,14 @@
"object-keys": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz",
- "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=",
- "dev": true
+ "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0="
}
}
},
"define-property": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=",
"requires": {
"is-descriptor": "^1.0.2",
"isobject": "^3.0.1"
@@ -3814,7 +3640,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -3822,7 +3648,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -3830,7 +3656,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -3845,7 +3671,7 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
@@ -3940,7 +3766,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
"integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
- "dev": true,
"requires": {
"repeating": "^2.0.0"
}
@@ -3948,7 +3773,7 @@
"detective": {
"version": "4.7.1",
"resolved": "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz",
- "integrity": "sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==",
+ "integrity": "sha1-DspzFDOEQv67bWXaVMELscgrJG4=",
"requires": {
"acorn": "^5.2.1",
"defined": "^1.0.0"
@@ -3957,12 +3782,12 @@
"diff": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
- "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="
+ "integrity": "sha1-gAwN0eCov7yVg1wgKtIg/jF+WhI="
},
"diffie-hellman": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
- "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "integrity": "sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=",
"requires": {
"bn.js": "^4.1.0",
"miller-rabin": "^4.0.0",
@@ -3972,12 +3797,12 @@
"djbx": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/djbx/-/djbx-1.0.3.tgz",
- "integrity": "sha512-Y8ph/85fEChtSgSgw1asP4cGLNLxlbnDBnQMpX8+MOpaiYyOn8assnSpIrwHuoGZV/sE1DUbKh9aeKlWZdHKEg=="
+ "integrity": "sha1-xYlm0sBdDdX9Q8eHiUsFnubMmxg="
},
"doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=",
"dev": true,
"requires": {
"esutils": "^2.0.2"
@@ -3987,7 +3812,6 @@
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz",
"integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=",
- "dev": true,
"requires": {
"domelementtype": "~1.1.1",
"entities": "~1.1.1"
@@ -3996,28 +3820,24 @@
"domelementtype": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
- "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=",
- "dev": true
+ "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs="
}
}
},
"domain-browser": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
- "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
- "dev": true
+ "integrity": "sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto="
},
"domelementtype": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz",
- "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=",
- "dev": true
+ "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI="
},
"domhandler": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
- "dev": true,
+ "integrity": "sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=",
"requires": {
"domelementtype": "1"
}
@@ -4026,7 +3846,6 @@
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
"integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
- "dev": true,
"requires": {
"dom-serializer": "0",
"domelementtype": "1"
@@ -4035,8 +3854,7 @@
"dot-prop": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
- "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
- "dev": true,
+ "integrity": "sha1-HxngwuGqDjJ5fEl5nyg3rGr2nFc=",
"requires": {
"is-obj": "^1.0.0"
}
@@ -4044,13 +3862,12 @@
"dotenv": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz",
- "integrity": "sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==",
- "dev": true
+ "integrity": "sha1-pTF0Wb09eauIz/bkQFemo/ux/O8="
},
"dropzone": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.5.1.tgz",
- "integrity": "sha512-3VduRWLxx9hbVr42QieQN25mx/I61/mRdUSuxAmDGdDqZIN8qtP7tcKMa3KfpJjuGjOJGYYUzzeq6eGDnkzesA=="
+ "integrity": "sha1-BuL1E+YdaqNj1LVW8YV09Hz3uiY="
},
"ecc-jsbn": {
"version": "0.1.1",
@@ -4064,8 +3881,7 @@
"editorconfig": {
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.0.tgz",
- "integrity": "sha512-j7JBoj/bpNzvoTQylfRZSc85MlLNKWQiq5y6gwKhmqD2h1eZ+tH4AXbkhEJD468gjDna/XMx2YtSkCxBRX9OGg==",
- "dev": true,
+ "integrity": "sha1-tt1KC2ueds5I4Ga9wVOBrruIBP0=",
"requires": {
"@types/commander": "^2.11.0",
"@types/semver": "^5.4.0",
@@ -4083,8 +3899,12 @@
"electron-to-chromium": {
"version": "1.3.67",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.67.tgz",
- "integrity": "sha512-h3zEBLdHvsKfaXv1SHAtykJyNtwYFEKkrWGSFyW1BzGgPQ4ykAzD5Hd8C5MZGTAEhkCKmtyIwYUrapsI0xfKww==",
- "dev": true
+ "integrity": "sha1-Xo8/+sibSwQCx+GlZb4G86EJq7w="
+ },
+ "element-matches": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/element-matches/-/element-matches-0.1.2.tgz",
+ "integrity": "sha512-yWh1otcs3OKUWDvu/IxyI36ZI3WNaRZlI0uG/DK6fu0pap0VYZ0J5pEGTk1zakme+hT0OKHwhlHc0N5TJhY6yQ=="
},
"elliptic": {
"version": "6.4.0",
@@ -4103,8 +3923,7 @@
"emojis-list": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
- "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
- "dev": true
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
},
"encodeurl": {
"version": "1.0.2",
@@ -4114,7 +3933,7 @@
"end-of-stream": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
- "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==",
+ "integrity": "sha1-7SljTRm6ukY7bOa4CjchPqtx7EM=",
"requires": {
"once": "^1.4.0"
}
@@ -4122,8 +3941,7 @@
"entities": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz",
- "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=",
- "dev": true
+ "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA="
},
"error-ex": {
"version": "1.3.1",
@@ -4136,8 +3954,7 @@
"es-abstract": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
- "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
- "dev": true,
+ "integrity": "sha1-nbvdJ8aFbwABQhyhh4LXhr+KYWU=",
"requires": {
"es-to-primitive": "^1.1.1",
"function-bind": "^1.1.1",
@@ -4150,7 +3967,6 @@
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz",
"integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=",
- "dev": true,
"requires": {
"is-callable": "^1.1.1",
"is-date-object": "^1.0.1",
@@ -4170,8 +3986,7 @@
"escodegen": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz",
- "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==",
- "dev": true,
+ "integrity": "sha1-264X75bI5L7bE1b0UE+kzC98t+I=",
"requires": {
"esprima": "^3.1.3",
"estraverse": "^4.2.0",
@@ -4183,14 +3998,12 @@
"esprima": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
- "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
- "dev": true
+ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=",
"optional": true
}
}
@@ -4198,7 +4011,7 @@
"eslint": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/eslint/-/eslint-5.5.0.tgz",
- "integrity": "sha512-m+az4vYehIJgl1Z0gb25KnFXeqQRdNreYsei1jdvkd9bB+UNQD3fsuiC2AWSQ56P+/t++kFSINZXFbfai+krOw==",
+ "integrity": "sha1-hVf8zqtRQagZfan/2ZBPifZEJcY=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
@@ -4244,7 +4057,7 @@
"ajv": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz",
- "integrity": "sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==",
+ "integrity": "sha1-caVp0Yns9PTzISJP7LFm8HHdkPk=",
"dev": true,
"requires": {
"fast-deep-equal": "^2.0.1",
@@ -4262,7 +4075,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
@@ -4271,7 +4084,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
@@ -4282,7 +4095,7 @@
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=",
"dev": true,
"requires": {
"nice-try": "^1.0.4",
@@ -4295,7 +4108,7 @@
"debug": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.5.tgz",
- "integrity": "sha512-D61LaDQPQkxJ5AUM2mbSJRbPkNs/TmdmOeLAi1hgDkpDfIfetSrjmWhccwtuResSwMbACjx/xXQofvM9CE/aeg==",
+ "integrity": "sha1-wkGPv9ein01PcP9M6mBNS2TEZAc=",
"dev": true,
"requires": {
"ms": "^2.1.1"
@@ -4310,7 +4123,7 @@
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"dev": true,
"requires": {
"argparse": "^1.0.7",
@@ -4320,19 +4133,19 @@
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=",
"dev": true
},
"ms": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
- "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
+ "integrity": "sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=",
"dev": true
},
"semver": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz",
- "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==",
+ "integrity": "sha1-ff3YgUvbfKvHvg+x1zTPtmyUBHc=",
"dev": true
},
"strip-ansi": {
@@ -4355,7 +4168,7 @@
"eslint-scope": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz",
- "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==",
+ "integrity": "sha1-UL8wcekzi83EMzF5Sgy1M/ATYXI=",
"dev": true,
"requires": {
"esrecurse": "^4.1.0",
@@ -4365,19 +4178,19 @@
"eslint-utils": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz",
- "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==",
+ "integrity": "sha1-moUbqJ7nxGA0b5fPiTnHKYgn5RI=",
"dev": true
},
"eslint-visitor-keys": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
- "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==",
+ "integrity": "sha1-PzGA+y4pEBdxastMnW1bXDSmqB0=",
"dev": true
},
"espree": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz",
- "integrity": "sha512-kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==",
+ "integrity": "sha1-JTmY8goPgttdhmOFeZ2RKoOjZjQ=",
"dev": true,
"requires": {
"acorn": "^5.6.0",
@@ -4387,7 +4200,7 @@
"acorn-jsx": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz",
- "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==",
+ "integrity": "sha1-6OQeSOov4MiWdAYQq2pP/YrdIl4=",
"dev": true,
"requires": {
"acorn": "^5.0.3"
@@ -4398,13 +4211,12 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"esquery": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz",
- "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==",
+ "integrity": "sha1-QGxRZYsfWZGl+bYrHcJbAOPlxwg=",
"dev": true,
"requires": {
"estraverse": "^4.0.0"
@@ -4413,7 +4225,7 @@
"esrecurse": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
- "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
+ "integrity": "sha1-AHo7n9vCs7uH5IeeoZyS/b05Qs8=",
"dev": true,
"requires": {
"estraverse": "^4.1.0"
@@ -4422,14 +4234,12 @@
"estraverse": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
- "dev": true
+ "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM="
},
"esutils": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
- "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
- "dev": true
+ "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
},
"etag": {
"version": "1.8.1",
@@ -4439,7 +4249,7 @@
"ev-emitter": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz",
- "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q=="
+ "integrity": "sha1-jxiwzlx2pdGAF/ccCnlcZbkTjyo="
},
"events": {
"version": "1.1.1",
@@ -4449,7 +4259,7 @@
"evp_bytestokey": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
- "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "integrity": "sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=",
"requires": {
"md5.js": "^1.3.4",
"safe-buffer": "^5.1.1"
@@ -4511,14 +4321,14 @@
"qs": {
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
- "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
+ "integrity": "sha1-NJzfbu+J7EXBLX1es/wMhwNDptg="
}
}
},
"express-session": {
"version": "1.15.6",
"resolved": "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz",
- "integrity": "sha512-r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA==",
+ "integrity": "sha1-R7QWDIj0KrcP6KUI4xy/92dXqwo=",
"requires": {
"cookie": "0.3.1",
"cookie-signature": "1.0.6",
@@ -4548,7 +4358,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -4558,7 +4368,7 @@
"external-editor": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz",
- "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==",
+ "integrity": "sha1-WGbbKal4Jtvkvzr9JAcOrZ6kOic=",
"dev": true,
"requires": {
"chardet": "^0.7.0",
@@ -4569,7 +4379,7 @@
"iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=",
"dev": true,
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
@@ -4594,7 +4404,6 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz",
"integrity": "sha1-lrsXdh2rqU9G0AFzizzt86Z/4Gw=",
- "dev": true,
"requires": {
"acorn": "^5.0.0",
"foreach": "^2.0.5",
@@ -4605,14 +4414,12 @@
"isarray": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
- "dev": true
+ "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
},
"object-keys": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
- "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==",
- "dev": true
+ "integrity": "sha1-CcU4VTd1dTEMymL1W7M0q/97PtI="
}
}
},
@@ -4624,8 +4431,7 @@
"fast-glob": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz",
- "integrity": "sha512-TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==",
- "dev": true,
+ "integrity": "sha1-cXIzOKybTg4v/x1nSKKhPV7TUr8=",
"requires": {
"@mrmlnc/readdir-enhanced": "^2.2.1",
"@nodelib/fs.stat": "^1.0.1",
@@ -4638,20 +4444,17 @@
"arr-diff": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
- "dev": true
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
},
"array-unique": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
- "dev": true
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
},
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -4669,7 +4472,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -4680,7 +4482,6 @@
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
"integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "dev": true,
"requires": {
"debug": "^2.3.3",
"define-property": "^0.2.5",
@@ -4695,7 +4496,6 @@
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
"integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
@@ -4704,7 +4504,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -4713,7 +4512,6 @@
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
"integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -4722,7 +4520,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -4733,7 +4530,6 @@
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
"integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -4742,7 +4538,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -4752,8 +4547,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -4763,16 +4557,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "dev": true,
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -4788,7 +4580,6 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
"requires": {
"is-descriptor": "^1.0.0"
}
@@ -4797,7 +4588,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -4808,7 +4598,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
"integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
"requires": {
"extend-shallow": "^2.0.1",
"is-number": "^3.0.0",
@@ -4820,7 +4609,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -4831,7 +4619,6 @@
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
"integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
- "dev": true,
"requires": {
"is-glob": "^3.1.0",
"path-dirname": "^1.0.0"
@@ -4841,7 +4628,6 @@
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
"integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
- "dev": true,
"requires": {
"is-extglob": "^2.1.0"
}
@@ -4851,8 +4637,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -4860,8 +4645,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -4869,8 +4653,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -4880,14 +4663,12 @@
"is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
- "dev": true
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
},
"is-glob": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz",
"integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=",
- "dev": true,
"requires": {
"is-extglob": "^2.1.1"
}
@@ -4896,7 +4677,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
"integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -4905,7 +4685,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -4915,20 +4694,17 @@
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
- "dev": true
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
},
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
- "dev": true
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -4955,14 +4731,12 @@
"fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
},
"fastparse": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz",
- "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=",
- "dev": true
+ "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg="
},
"figures": {
"version": "2.0.0",
@@ -4991,13 +4765,12 @@
"filesize": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
- "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==",
- "dev": true
+ "integrity": "sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc="
},
"fill-range": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz",
- "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==",
+ "integrity": "sha1-6x53OrsFbc2N8r/favWbizqTZWU=",
"requires": {
"is-number": "^2.1.0",
"isobject": "^2.0.0",
@@ -5009,7 +4782,7 @@
"finalhandler": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz",
- "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==",
+ "integrity": "sha1-7r9O2EAHnIP0JJA4ydcDAIMBsQU=",
"requires": {
"debug": "2.6.9",
"encodeurl": "~1.0.2",
@@ -5023,7 +4796,7 @@
"find-package-json": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/find-package-json/-/find-package-json-1.1.0.tgz",
- "integrity": "sha512-ldihxiIFpewACALK0tUByf3GmOaTBjI5OcvwJ3mExgERUZBsSOBV8QM6vVb0/ZqylpzY6Od6SsP8bjFv7fKiTw=="
+ "integrity": "sha1-JpsMFIu+OJ8CfiweDHL6EI6ts0g="
},
"find-up": {
"version": "1.1.2",
@@ -5047,7 +4820,7 @@
"fizzy-ui-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz",
- "integrity": "sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg==",
+ "integrity": "sha1-ffRdzE6zdKCLZdObuaS+7fczBQU=",
"requires": {
"desandro-matches-selector": "^2.0.0"
}
@@ -5067,8 +4840,7 @@
"flatten": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz",
- "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=",
- "dev": true
+ "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I="
},
"flux-standard-action": {
"version": "0.6.1",
@@ -5099,8 +4871,7 @@
"foreach": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
- "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=",
- "dev": true
+ "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
},
"forever-agent": {
"version": "0.6.1",
@@ -5138,7 +4909,7 @@
"fs-constants": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
- "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
+ "integrity": "sha1-a+Dem+mYzhavivwkSXue6bfM2a0="
},
"fs.realpath": {
"version": "1.0.0",
@@ -5148,7 +4919,7 @@
"fsevents": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
- "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
+ "integrity": "sha1-9B3LGvJYKvNpLaNvxVy9jhBBxCY=",
"optional": true,
"requires": {
"nan": "^2.9.2",
@@ -5621,8 +5392,7 @@
"fswatcher-child": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fswatcher-child/-/fswatcher-child-1.1.0.tgz",
- "integrity": "sha512-6+QZsCToxGmyO6odG1rijyHpiMwDnSMRdaY8/brb8mvxjbELRrLdRncdA3OImutqT8RCJ1meoneKBBxS9K2gcA==",
- "dev": true,
+ "integrity": "sha1-rxZQWQ+JdTJDFzEkf9YnDzM5Ev8=",
"requires": {
"chokidar": "^2.0.3"
}
@@ -5630,7 +5400,7 @@
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
},
"functional-red-black-tree": {
"version": "1.0.1",
@@ -5656,7 +5426,7 @@
"gaze": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz",
- "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==",
+ "integrity": "sha1-xEFzPhO5J6yMD/C0w7Az8ogSkko=",
"requires": {
"globule": "^1.0.0"
}
@@ -5665,7 +5435,6 @@
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/generic-names/-/generic-names-1.0.3.tgz",
"integrity": "sha1-LXhqEhruUIh2eWk56OO/+DbCCRc=",
- "dev": true,
"requires": {
"loader-utils": "^0.2.16"
}
@@ -5673,7 +5442,7 @@
"get-assigned-identifiers": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz",
- "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ=="
+ "integrity": "sha1-bb9BHeZIy6+NkWnrsNLVdhkeL/E="
},
"get-caller-file": {
"version": "1.0.2",
@@ -5688,13 +5457,12 @@
"get-port": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz",
- "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=",
- "dev": true
+ "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw="
},
"get-size": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz",
- "integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q=="
+ "integrity": "sha1-VKHQJWsg6nrGRlFnViAnaZQa0u8="
},
"get-stdin": {
"version": "4.0.1",
@@ -5717,7 +5485,7 @@
"glob": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
+ "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -5730,7 +5498,7 @@
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -5757,19 +5525,18 @@
"glob-to-regexp": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
- "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
- "dev": true
+ "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs="
},
"globals": {
"version": "11.7.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz",
- "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==",
+ "integrity": "sha1-pYP6pDBVsayncZFL9oJY4vwSVnM=",
"dev": true
},
"globule": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz",
- "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==",
+ "integrity": "sha1-Xf+xsZHyLSB5epNptJ6rTpg5aW0=",
"requires": {
"glob": "~7.1.1",
"lodash": "~4.17.10",
@@ -5785,7 +5552,6 @@
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/grapheme-breaker/-/grapheme-breaker-0.3.2.tgz",
"integrity": "sha1-W55reMODJFLSuiuxy4MPlidkEKw=",
- "dev": true,
"requires": {
"brfs": "^1.2.0",
"unicode-trie": "^0.3.1"
@@ -5794,7 +5560,7 @@
"growl": {
"version": "1.10.5",
"resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
- "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="
+ "integrity": "sha1-8nNdwig2dPpnR4sQGBBZNVw2nl4="
},
"har-schema": {
"version": "2.0.0",
@@ -5902,7 +5668,7 @@
"hash.js": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz",
- "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==",
+ "integrity": "sha1-NA3tvmKQGHFRweodd3o0SJNd+EY=",
"requires": {
"inherits": "^2.0.3",
"minimalistic-assert": "^1.0.0"
@@ -5911,7 +5677,7 @@
"hawk": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
- "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
+ "integrity": "sha1-r02RTrBl+bXOTZ0RwcshJu7MMDg=",
"requires": {
"boom": "4.x.x",
"cryptiles": "3.x.x",
@@ -5927,8 +5693,7 @@
"hex-color-regex": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
- "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
- "dev": true
+ "integrity": "sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4="
},
"hmac-drbg": {
"version": "1.0.1",
@@ -5943,13 +5708,12 @@
"hoek": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz",
- "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA=="
+ "integrity": "sha1-ljRQKqEsRF3Vp8VzS1cruHOKrLs="
},
"home-or-tmp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
"integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
- "dev": true,
"requires": {
"os-homedir": "^1.0.0",
"os-tmpdir": "^1.0.1"
@@ -5958,25 +5722,27 @@
"hosted-git-info": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz",
- "integrity": "sha512-lIbgIIQA3lz5XaB6vxakj6sDHADJiZadYEJB+FgA+C4nubM1NwcuvUr9EJPmnH1skZqpqUzWborWo8EIUi0Sdw=="
+ "integrity": "sha1-IyNbKasjDFdqqw1PE/wEawsDgiI="
},
"hsl-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz",
- "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=",
- "dev": true
+ "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4="
},
"hsla-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
- "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=",
- "dev": true
+ "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg="
},
"html-comment-regex": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz",
- "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=",
- "dev": true
+ "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4="
+ },
+ "html5sortable": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/html5sortable/-/html5sortable-0.9.4.tgz",
+ "integrity": "sha512-WoHXrJjSsWc0nrW1Y1TWnkn+kspEDtvZzqizGk9XVbWSa+i4oUMmeJJmBnF5GjSP1BaohKl13ErntLNYoiVkWQ=="
},
"htmlescape": {
"version": "1.1.1",
@@ -5986,8 +5752,7 @@
"htmlnano": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/htmlnano/-/htmlnano-0.1.10.tgz",
- "integrity": "sha512-eTEUzz8VdWYp+w/KUdb99kwao4reR64epUySyZkQeepcyzPQ2n2EPWzibf6QDxmkGy10Kr+CKxYqI3izSbmhJQ==",
- "dev": true,
+ "integrity": "sha1-oKVI60x2rizyQj7HolyIFzTT3qY=",
"requires": {
"cssnano": "^3.4.0",
"object-assign": "^4.0.1",
@@ -6000,8 +5765,7 @@
"coa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
- "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
- "dev": true,
+ "integrity": "sha1-8/iwsVBz411wJj+xBCyywCPbOK8=",
"requires": {
"q": "^1.1.2"
}
@@ -6009,8 +5773,7 @@
"csso": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz",
- "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==",
- "dev": true,
+ "integrity": "sha1-e564vmFiiXPBsmHhadLwJACOdYs=",
"requires": {
"css-tree": "1.0.0-alpha.29"
},
@@ -6018,8 +5781,7 @@
"css-tree": {
"version": "1.0.0-alpha.29",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
- "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
- "dev": true,
+ "integrity": "sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=",
"requires": {
"mdn-data": "~1.1.0",
"source-map": "^0.5.3"
@@ -6030,8 +5792,7 @@
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
- "dev": true,
+ "integrity": "sha1-LnhEFka9RoLpY/IrbpKCPDCcYtw=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -6040,14 +5801,12 @@
"mdn-data": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz",
- "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==",
- "dev": true
+ "integrity": "sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE="
},
"svgo": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
- "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
- "dev": true,
+ "integrity": "sha1-cEA2TAYqBTirrP9EAc6momp6OJo=",
"requires": {
"coa": "~2.0.1",
"colors": "~1.1.2",
@@ -6071,7 +5830,6 @@
"version": "3.9.2",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz",
"integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=",
- "dev": true,
"requires": {
"domelementtype": "^1.3.0",
"domhandler": "^2.3.0",
@@ -6160,29 +5918,28 @@
"iconv-lite": {
"version": "0.4.19",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
- "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ=="
+ "integrity": "sha1-90aPYBNfXl2tM5nAqBvpoWA6CCs="
},
"icss-replace-symbols": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
- "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
- "dev": true
+ "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0="
},
"ieee754": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz",
- "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg=="
+ "integrity": "sha1-wWOE/+APW3g1gk5ntvK9RKUilFU="
},
"ignore": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
- "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=",
"dev": true
},
"imagelightbox": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/imagelightbox/-/imagelightbox-0.10.0.tgz",
- "integrity": "sha512-XiRkdgz+ZKq3VqBB5LQ2fcHSbjHWT1PT1jtHb4XWc2eJBsTY6LwNaXYZRLooYLiLqnil8+F+nLoineE2+TpLxA==",
+ "integrity": "sha1-FLAYZkl/kSTGBojadzU8WBIKrI4=",
"requires": {
"jquery": ">=1.12.4 <4.0.0"
}
@@ -6209,8 +5966,7 @@
"indexes-of": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
- "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
- "dev": true
+ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc="
},
"indexof": {
"version": "0.0.1",
@@ -6234,8 +5990,7 @@
"ini": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
- "dev": true
+ "integrity": "sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc="
},
"inline-source-map": {
"version": "0.6.2",
@@ -6248,7 +6003,7 @@
"inquirer": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz",
- "integrity": "sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==",
+ "integrity": "sha1-Ua3Nd29mE2ncHolIWcJWCiJKvdg=",
"dev": true,
"requires": {
"ansi-escapes": "^3.0.0",
@@ -6275,7 +6030,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
@@ -6284,7 +6039,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
@@ -6301,7 +6056,7 @@
"string-width": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "integrity": "sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=",
"dev": true,
"requires": {
"is-fullwidth-code-point": "^2.0.0",
@@ -6322,7 +6077,7 @@
"insert-module-globals": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz",
- "integrity": "sha512-VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw==",
+ "integrity": "sha1-7IfltCcoR54ye9XFxxYR3ftHUro=",
"requires": {
"JSONStream": "^1.0.3",
"acorn-node": "^1.5.2",
@@ -6339,8 +6094,7 @@
"invariant": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
- "dev": true,
+ "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=",
"requires": {
"loose-envify": "^1.0.0"
}
@@ -6358,8 +6112,7 @@
"is-absolute-url": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
- "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=",
- "dev": true
+ "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY="
},
"is-accessor-descriptor": {
"version": "0.1.6",
@@ -6385,7 +6138,7 @@
"is-buffer": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
+ "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4="
},
"is-builtin-module": {
"version": "1.0.0",
@@ -6398,14 +6151,12 @@
"is-callable": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz",
- "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==",
- "dev": true
+ "integrity": "sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU="
},
"is-color-stop": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz",
"integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=",
- "dev": true,
"requires": {
"css-color-names": "^0.0.4",
"hex-color-regex": "^1.1.0",
@@ -6426,13 +6177,12 @@
"is-date-object": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
- "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
- "dev": true
+ "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY="
},
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -6442,15 +6192,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"is-directory": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
- "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=",
- "dev": true
+ "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE="
},
"is-dotfile": {
"version": "1.0.3",
@@ -6510,13 +6259,12 @@
"is-obj": {
"version": "1.0.1",
"resolved": "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
- "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
- "dev": true
+ "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8="
},
"is-odd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz",
- "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==",
+ "integrity": "sha1-dkZiRnH9fqVYzNmieVGC8pWPGyQ=",
"requires": {
"is-number": "^4.0.0"
},
@@ -6524,7 +6272,7 @@
"is-number": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
- "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
+ "integrity": "sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8="
}
}
},
@@ -6537,7 +6285,7 @@
"is-path-in-cwd": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz",
- "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==",
+ "integrity": "sha1-WsSLNF72dTOb1sekipEhELJBz1I=",
"dev": true,
"requires": {
"is-path-inside": "^1.0.0"
@@ -6555,13 +6303,12 @@
"is-plain-obj": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
- "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
- "dev": true
+ "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4="
},
"is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=",
"requires": {
"isobject": "^3.0.1"
},
@@ -6593,7 +6340,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
"integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
- "dev": true,
"requires": {
"has": "^1.0.1"
}
@@ -6601,14 +6347,12 @@
"is-resolvable": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
- "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
- "dev": true
+ "integrity": "sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg="
},
"is-svg": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz",
"integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=",
- "dev": true,
"requires": {
"html-comment-regex": "^1.1.0"
}
@@ -6616,8 +6360,7 @@
"is-symbol": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz",
- "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=",
- "dev": true
+ "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI="
},
"is-typedarray": {
"version": "1.0.0",
@@ -6627,8 +6370,7 @@
"is-url": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
- "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==",
- "dev": true
+ "integrity": "sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI="
},
"is-utf8": {
"version": "0.2.1",
@@ -6638,13 +6380,12 @@
"is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
+ "integrity": "sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0="
},
"is-wsl": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
- "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
- "dev": true
+ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0="
},
"isarray": {
"version": "1.0.0",
@@ -6672,12 +6413,12 @@
"jquery": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz",
- "integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg=="
+ "integrity": "sha1-lYzinoHJeQ8xvneS311NlfxX+8o="
},
"jquery-datetimepicker": {
"version": "2.5.20",
"resolved": "https://registry.npmjs.org/jquery-datetimepicker/-/jquery-datetimepicker-2.5.20.tgz",
- "integrity": "sha512-ugnjbUkOw1MWuJx+Aik9Reew9U2We+kGdaXU5NKvfdBNiG/vNeeFlgQ8EWu1h8zFf5wmUse7G1MLsYHTP18J4Q==",
+ "integrity": "sha1-aH1iBLkLA9yT9yX43wNuHQYfN6w=",
"requires": {
"jquery": ">= 1.7.2",
"jquery-mousewheel": ">= 3.1.13",
@@ -6702,13 +6443,12 @@
"js-base64": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.3.tgz",
- "integrity": "sha512-H7ErYLM34CvDMto3GbD6xD0JLUGYXR3QTcH6B/tr4Hi/QpSThnCsIp+Sy5FRTw3B0d6py4HcNkW7nO/wdtGWEw=="
+ "integrity": "sha1-LlRewrDylX9BNWUQIFIU6Y+tZYI="
},
"js-beautify": {
"version": "1.8.6",
"resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.8.6.tgz",
- "integrity": "sha512-TYDZa+lg8vEC5U0OmGQEEwiZ0XFBfvZAUeNOtqflLe+woKuIqF4JzlsBx/C1KVYW5lUewZy2ODL4Obq6sH7a4Q==",
- "dev": true,
+ "integrity": "sha1-an5h5HpuRftYxeIkme7TUPhgfZg=",
"requires": {
"config-chain": "~1.1.5",
"editorconfig": "^0.15.0",
@@ -6720,7 +6460,6 @@
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz",
"integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=",
- "dev": true,
"requires": {
"abbrev": "1",
"osenv": "^0.1.4"
@@ -6731,7 +6470,7 @@
"js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=",
"dev": true
},
"js-yaml": {
@@ -6759,14 +6498,12 @@
"jsesc": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
- "dev": true
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0="
},
"json-parse-better-errors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
- "dev": true
+ "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk="
},
"json-schema": {
"version": "0.2.3",
@@ -6792,8 +6529,7 @@
"json5": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
- "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
- "dev": true
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE="
},
"jsonify": {
"version": "0.0.0",
@@ -6827,7 +6563,7 @@
"labeled-stream-splicer": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz",
- "integrity": "sha512-MC94mHZRvJ3LfykJlTUipBqenZz1pacOZEMhhQ8dMGcDHs0SBE5GbsavUXV7YtP3icBW17W0Zy1I0lfASmo9Pg==",
+ "integrity": "sha1-nP+jL9meFhL9HYao25YkFtUpKSY=",
"requires": {
"inherits": "^2.0.1",
"isarray": "^2.0.4",
@@ -6837,7 +6573,7 @@
"isarray": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz",
- "integrity": "sha512-GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA=="
+ "integrity": "sha1-OOe8uw87obeTPIa6GJTd/DeBu7c="
}
}
},
@@ -6861,7 +6597,6 @@
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
"requires": {
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2"
@@ -6890,7 +6625,6 @@
"version": "0.2.17",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
"integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
- "dev": true,
"requires": {
"big.js": "^3.1.3",
"emojis-list": "^2.0.0",
@@ -6901,12 +6635,12 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
},
"lodash-es": {
"version": "4.17.8",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.8.tgz",
- "integrity": "sha512-I9mjAxengFAleSThFhhAhvba6fsO0hunb9/0sQ6qQihSZsJRBofv2rYH58WXaOb/O++eUmYpCLywSQ22GfU+sA=="
+ "integrity": "sha1-b6jIxdM3SB3wvfHA2JnUJHMSHkU="
},
"lodash._basefor": {
"version": "3.0.3",
@@ -6921,14 +6655,12 @@
"lodash.camelcase": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
- "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=",
- "dev": true
+ "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
},
"lodash.clone": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
- "integrity": "sha1-GVhwRQ9aExkkeN9Lw9I9LeoZB7Y=",
- "dev": true
+ "integrity": "sha1-GVhwRQ9aExkkeN9Lw9I9LeoZB7Y="
},
"lodash.clonedeep": {
"version": "4.5.0",
@@ -6967,25 +6699,22 @@
"lodash.memoize": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
- "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
- "dev": true
+ "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4="
},
"lodash.mergewith": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz",
- "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ=="
+ "integrity": "sha1-Y5BX5ybDr72z59QnQcqo1uQzWSc="
},
"lodash.uniq": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
- "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
- "dev": true
+ "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M="
},
"log-symbols": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
- "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
- "dev": true,
+ "integrity": "sha1-V0Dhxdbw39pK2TI7UzIQfva0xAo=",
"requires": {
"chalk": "^2.0.1"
},
@@ -6993,8 +6722,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -7002,8 +6730,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -7039,7 +6766,7 @@
"lru-cache": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz",
- "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==",
+ "integrity": "sha1-oRdc80lt/IQ2wVbDNLSVWZK85pw=",
"requires": {
"pseudomap": "^1.0.2",
"yallist": "^2.1.2"
@@ -7079,7 +6806,7 @@
"masonry-layout": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/masonry-layout/-/masonry-layout-4.2.2.tgz",
- "integrity": "sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA==",
+ "integrity": "sha1-1XtErxPmAb/NxCPx3YNItVJN40g=",
"requires": {
"get-size": "^2.0.2",
"outlayer": "^2.1.0"
@@ -7088,8 +6815,7 @@
"math-expression-evaluator": {
"version": "1.2.17",
"resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz",
- "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=",
- "dev": true
+ "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw="
},
"math-random": {
"version": "1.0.1",
@@ -7108,8 +6834,7 @@
"mdn-data": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.2.0.tgz",
- "integrity": "sha512-esDqNvsJB2q5V28+u7NdtdMg6Rmg4khQmAVSjUiX7BY/7haIv0K2yWM43hYp0or+3nvG7+UaTF1JHz31hgU1TA==",
- "dev": true
+ "integrity": "sha1-6t0osPLTB88n5xUkYJv7dJ6/wLY="
},
"media-typer": {
"version": "0.3.0",
@@ -7142,7 +6867,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz",
"integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=",
- "dev": true,
"requires": {
"source-map": "^0.5.6"
}
@@ -7150,8 +6874,7 @@
"merge2": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz",
- "integrity": "sha512-bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg==",
- "dev": true
+ "integrity": "sha1-AyEuPajYbE2FI869YxgZNBT5TjQ="
},
"methods": {
"version": "1.1.2",
@@ -7181,7 +6904,7 @@
"miller-rabin": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
- "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "integrity": "sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=",
"requires": {
"bn.js": "^4.0.0",
"brorand": "^1.0.1"
@@ -7190,12 +6913,12 @@
"mime-db": {
"version": "1.33.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
- "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
+ "integrity": "sha1-o0kgUKXLm2NFBUHjnZeI0icng9s="
},
"mime-types": {
"version": "2.1.18",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
- "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
+ "integrity": "sha1-bzI/YKg9ERRvgx/xH9ZuL+VQO7g=",
"requires": {
"mime-db": "~1.33.0"
}
@@ -7203,13 +6926,12 @@
"mimic-fn": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
- "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
- "dev": true
+ "integrity": "sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI="
},
"minimalistic-assert": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
- "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
+ "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc="
},
"minimalistic-crypto-utils": {
"version": "1.0.1",
@@ -7219,7 +6941,7 @@
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -7232,12 +6954,12 @@
"mithril": {
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/mithril/-/mithril-0.2.8.tgz",
- "integrity": "sha512-9XuGnVmS2OyFexUuP/CcJFFJjHLM+RGYBxyVRNyQ6khbMfDJIF/xyZ4zq18ZRfPagpFmWUFpjHd5ZqPULGZyNg=="
+ "integrity": "sha1-zG1HC5Inzrs0JxhlW9Ch16sq+5Y="
},
"mixin-deep": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
- "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
+ "integrity": "sha1-pJ5yaNzhoNlpjkUybFYm3zVD0P4=",
"requires": {
"for-in": "^1.0.2",
"is-extendable": "^1.0.1"
@@ -7246,7 +6968,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -7277,7 +6999,7 @@
"mocha": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz",
- "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==",
+ "integrity": "sha1-bYrlCPWRZ/lA8rWzxKYSrlDJCuY=",
"requires": {
"browser-stdout": "1.3.1",
"commander": "2.15.1",
@@ -7295,7 +7017,7 @@
"debug": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=",
"requires": {
"ms": "2.0.0"
}
@@ -7308,7 +7030,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -7401,12 +7123,12 @@
"nan": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
- "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA=="
+ "integrity": "sha1-ltDNYQ69WNS03pzAxoKM2pnHVI8="
},
"nanomatch": {
"version": "1.2.9",
"resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz",
- "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==",
+ "integrity": "sha1-h59xUMstq3pHElkGbBBO7m4Pp8I=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -7435,14 +7157,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"nanosocket": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/nanosocket/-/nanosocket-1.1.0.tgz",
- "integrity": "sha512-v2LsjYMRu3/JT/z8Qpkj1X5dgwCptC3D0NzeYlb7tb2qGJhlx0PSXZJraf1tRPKipj2iwB15GRzqUaOlN+LieQ=="
+ "integrity": "sha1-VrAEZ6o+Mzq8NOEInJRmgrFEYj8="
},
"natural-compare": {
"version": "1.4.0",
@@ -7458,7 +7180,7 @@
"ngrok": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ngrok/-/ngrok-3.0.1.tgz",
- "integrity": "sha512-+vRPAszUa+Ni9aZhbeT/iogv9cLlr6mtekspD4Ivrtc7EnZGV6q7PIjrUZIHyfT1zpq4+yIgqW//LIgGLbaMZA==",
+ "integrity": "sha1-G+D7WgLGGNpUWKpouDSUtWGoSvI=",
"optional": true,
"requires": {
"@types/node": "^8.0.19",
@@ -7471,19 +7193,17 @@
"nice-try": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
- "dev": true
+ "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y="
},
"node-forge": {
"version": "0.7.6",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz",
- "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==",
- "dev": true
+ "integrity": "sha1-/fO0GK7h+U8O9kLNY0hsd8qXJKw="
},
"node-gyp": {
"version": "3.8.0",
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz",
- "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==",
+ "integrity": "sha1-VAMEJhwzDoDQ1e3OJTpoyzlkIYw=",
"requires": {
"fstream": "^1.0.0",
"glob": "^7.0.3",
@@ -7509,8 +7229,7 @@
"node-libs-browser": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz",
- "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==",
- "dev": true,
+ "integrity": "sha1-X5QmPUBPbkR2fXJpAf/wVHjWAN8=",
"requires": {
"assert": "^1.1.1",
"browserify-zlib": "^0.2.0",
@@ -7540,8 +7259,7 @@
"browserify-zlib": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
- "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
- "dev": true,
+ "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=",
"requires": {
"pako": "~1.0.5"
}
@@ -7549,16 +7267,14 @@
"pako": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
- "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==",
- "dev": true
+ "integrity": "sha1-AQEhG6pwxLykoPY/Igbpe3368lg="
}
}
},
"node-releases": {
"version": "1.0.0-alpha.11",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.0.0-alpha.11.tgz",
- "integrity": "sha512-CaViu+2FqTNYOYNihXa5uPS/zry92I3vPU4nCB6JB3OeZ2UGtOpF5gRwuN4+m3hbEcL47bOXyun1jX2iC+3uEQ==",
- "dev": true,
+ "integrity": "sha1-c8gQrMLlt0Ghfd+7Od/Kmrk1nYo=",
"requires": {
"semver": "^5.3.0"
}
@@ -7566,7 +7282,7 @@
"node-sass": {
"version": "4.9.3",
"resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.3.tgz",
- "integrity": "sha512-XzXyGjO+84wxyH7fV6IwBOTrEBe2f0a6SBze9QWWYR/cL74AcQUks2AsqcCZenl/Fp/JVbuEaLpgrLtocwBUww==",
+ "integrity": "sha1-9AfPPWb3gwi7HjRrJPpChwMZYiQ=",
"requires": {
"async-foreach": "^0.1.3",
"chalk": "^1.1.1",
@@ -7600,7 +7316,7 @@
"normalize-package-data": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
- "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==",
+ "integrity": "sha1-EvlaMH1YNSB1oEkHuErIvpisAS8=",
"requires": {
"hosted-git-info": "^2.1.4",
"is-builtin-module": "^1.0.0",
@@ -7619,14 +7335,12 @@
"normalize-range": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
- "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
- "dev": true
+ "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI="
},
"normalize-url": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
"integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
- "dev": true,
"requires": {
"object-assign": "^4.0.1",
"prepend-http": "^1.0.0",
@@ -7637,12 +7351,12 @@
"npm-font-open-sans": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/npm-font-open-sans/-/npm-font-open-sans-1.1.0.tgz",
- "integrity": "sha512-t1y5ShWm6a8FSLwBdINT47XYMcuKY2rkTBsTdz/76YB2MtX0YD89RUkY2eSS2/XOmlZfBe1HFBAwD+b9+/UfmQ=="
+ "integrity": "sha1-jCelbkOHJ0e4RI3MMGU6ZJhmxu8="
},
"npmlog": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
- "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
+ "integrity": "sha1-CKfyqL9zRgR3mp76StXMcXq7lUs=",
"requires": {
"are-we-there-yet": "~1.1.2",
"console-control-strings": "~1.1.0",
@@ -7654,7 +7368,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz",
"integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=",
- "dev": true,
"requires": {
"boolbase": "~1.0.0"
}
@@ -7662,8 +7375,7 @@
"num2fraction": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
- "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
- "dev": true
+ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4="
},
"number-is-nan": {
"version": "1.0.1",
@@ -7703,8 +7415,7 @@
"object-inspect": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz",
- "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==",
- "dev": true
+ "integrity": "sha1-N/+xDnGtrzdI0F9xO0yUUvQCy8Q="
},
"object-visit": {
"version": "1.0.1",
@@ -7725,7 +7436,6 @@
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz",
"integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=",
- "dev": true,
"requires": {
"define-properties": "^1.1.2",
"es-abstract": "^1.5.1"
@@ -7759,7 +7469,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz",
"integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=",
- "dev": true,
"requires": {
"define-properties": "^1.1.2",
"es-abstract": "^1.6.1",
@@ -7792,7 +7501,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
"integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
- "dev": true,
"requires": {
"mimic-fn": "^1.0.0"
}
@@ -7800,8 +7508,7 @@
"opn": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
- "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
- "dev": true,
+ "integrity": "sha1-ZIcVZchjh18FLP31PT48ta21Oxw=",
"requires": {
"is-wsl": "^1.1.0"
}
@@ -7810,7 +7517,6 @@
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
"integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
- "dev": true,
"requires": {
"deep-is": "~0.1.3",
"fast-levenshtein": "~2.0.4",
@@ -7823,16 +7529,14 @@
"wordwrap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
- "dev": true
+ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus="
}
}
},
"ora": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/ora/-/ora-2.1.0.tgz",
- "integrity": "sha512-hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==",
- "dev": true,
+ "integrity": "sha1-bK8oMOuSSUGGHsU6FzeZ4Ai1Hls=",
"requires": {
"chalk": "^2.3.1",
"cli-cursor": "^2.1.0",
@@ -7845,14 +7549,12 @@
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -7860,8 +7562,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -7872,7 +7573,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
"requires": {
"ansi-regex": "^3.0.0"
}
@@ -7905,7 +7605,7 @@
"osenv": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
- "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
+ "integrity": "sha1-hc36+uso6Gd/QW4odZK18/SepBA=",
"requires": {
"os-homedir": "^1.0.0",
"os-tmpdir": "^1.0.0"
@@ -7929,8 +7629,7 @@
"parcel-bundler": {
"version": "1.9.7",
"resolved": "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.9.7.tgz",
- "integrity": "sha512-x+RiXe/C+aOoFuw+acH/NKjKmUJ/2zbFWFUS/KE5jBk2ErsN0Dc3OxLpmEaeIMU4oMPWFeNm5mRXcXdeUwf7GA==",
- "dev": true,
+ "integrity": "sha1-XNAIUN6gJU03cAXVWrS/YEKborw=",
"requires": {
"ansi-to-html": "^0.6.4",
"babel-code-frame": "^6.26.0",
@@ -7991,14 +7690,12 @@
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -8006,20 +7703,17 @@
"arr-diff": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
- "dev": true
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
},
"array-unique": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
- "dev": true
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
},
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -8037,7 +7731,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -8047,8 +7740,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -8058,14 +7750,12 @@
"clone": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
- "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
- "dev": true
+ "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
},
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
+ "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=",
"requires": {
"nice-try": "^1.0.4",
"path-key": "^2.0.1",
@@ -8077,8 +7767,7 @@
"cssnano": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.0.tgz",
- "integrity": "sha512-7x24b/ghbrQv2QRgqMR12H3ZZ38xYCKJSXfg21YCtnIE177/NyvMkeiuQdWauIgMjySaTZ+cd5PN2qvfbsGeSw==",
- "dev": true,
+ "integrity": "sha1-aCw3uEubffYWRQpajckmm5vRBzQ=",
"requires": {
"cosmiconfig": "^5.0.0",
"cssnano-preset-default": "^4.0.0",
@@ -8090,7 +7779,6 @@
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
"integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "dev": true,
"requires": {
"debug": "^2.3.3",
"define-property": "^0.2.5",
@@ -8105,7 +7793,6 @@
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
"integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
@@ -8114,7 +7801,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -8123,7 +7809,6 @@
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
"integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -8132,7 +7817,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -8143,7 +7827,6 @@
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
"integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -8152,7 +7835,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -8162,8 +7844,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -8173,16 +7854,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "dev": true,
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -8198,7 +7877,6 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
"requires": {
"is-descriptor": "^1.0.0"
}
@@ -8207,7 +7885,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -8218,7 +7895,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
"integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
"requires": {
"extend-shallow": "^2.0.1",
"is-number": "^3.0.0",
@@ -8230,7 +7906,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -8240,8 +7915,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -8249,8 +7923,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -8258,8 +7931,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -8269,14 +7941,12 @@
"is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
- "dev": true
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
},
"is-glob": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz",
"integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=",
- "dev": true,
"requires": {
"is-extglob": "^2.1.1"
}
@@ -8285,7 +7955,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
"integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
@@ -8294,7 +7963,6 @@
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -8304,14 +7972,12 @@
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
- "dev": true
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
},
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
- "dev": true,
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -8320,8 +7986,7 @@
"json5": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
+ "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=",
"requires": {
"minimist": "^1.2.0"
}
@@ -8329,14 +7994,12 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
- "dev": true
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -8356,14 +8019,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
"requires": {
"ansi-regex": "^3.0.0"
}
@@ -8381,7 +8042,7 @@
"parse-asn1": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
- "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
+ "integrity": "sha1-9r8pOBgzK9DatU77Fgh3JHRebKg=",
"requires": {
"asn1.js": "^4.0.0",
"browserify-aes": "^1.0.0",
@@ -8393,7 +8054,7 @@
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
- "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
"requires": {
"buffer-xor": "^1.0.3",
"cipher-base": "^1.0.0",
@@ -8458,8 +8119,7 @@
"path-key": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
},
"path-parse": {
"version": "1.0.5",
@@ -8501,7 +8161,7 @@
"pbkdf2": {
"version": "3.0.16",
"resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz",
- "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==",
+ "integrity": "sha1-dAQgjsawG2LYW/g4U6gGT42cKlw=",
"requires": {
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
@@ -8513,7 +8173,7 @@
"ripemd160": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
- "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
"requires": {
"hash-base": "^3.0.0",
"inherits": "^2.0.1"
@@ -8522,7 +8182,7 @@
"sha.js": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -8543,8 +8203,7 @@
"physical-cpu-count": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz",
- "integrity": "sha1-GN4vl+S/epVRrXURlCtUlverpmA=",
- "dev": true
+ "integrity": "sha1-GN4vl+S/epVRrXURlCtUlverpmA="
},
"pinkie": {
"version": "2.0.4",
@@ -8562,18 +8221,18 @@
"platform": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/platform/-/platform-1.3.5.tgz",
- "integrity": "sha512-TuvHS8AOIZNAlE77WUDiR4rySV/VMptyMfcfeoMgs4P8apaZM3JrnbzBiixKUv+XR6i+BXrQh8WAnjaSPFO65Q=="
+ "integrity": "sha1-+2lYxpbgfikY0u7aDwvJRI1zNEQ="
},
"pluralize": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
- "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==",
+ "integrity": "sha1-KYuJ34uTsCIdv0Ia0rGx6iP8Z3c=",
"dev": true
},
"popper": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/popper/-/popper-1.0.1.tgz",
- "integrity": "sha512-i/6yRlY5+VomX0ScQ5TI4Ro8XlQbOj7NMRf0hSnUEVv/aAP6IbrxvNcRsrEG6VsKzvltfINPeD4p++6SKwOTSA==",
+ "integrity": "sha1-oxU5EKAc4yiil8skGSSv/waQg34=",
"requires": {
"browser-icons": "*",
"browserify": "^12.0.0",
@@ -8615,8 +8274,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
- "dev": true,
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -8626,8 +8284,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -8635,8 +8292,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -8646,8 +8302,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
}
}
},
@@ -8655,7 +8310,6 @@
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz",
"integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=",
- "dev": true,
"requires": {
"postcss": "^5.0.2",
"postcss-message-helpers": "^2.0.0",
@@ -8665,14 +8319,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8684,7 +8336,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8695,7 +8346,6 @@
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz",
"integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=",
- "dev": true,
"requires": {
"colormin": "^1.0.5",
"postcss": "^5.0.13",
@@ -8705,14 +8355,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8724,7 +8372,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8735,7 +8382,6 @@
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz",
"integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=",
- "dev": true,
"requires": {
"postcss": "^5.0.11",
"postcss-value-parser": "^3.1.2"
@@ -8744,14 +8390,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8763,7 +8407,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8774,7 +8417,6 @@
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz",
"integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=",
- "dev": true,
"requires": {
"postcss": "^5.0.14"
},
@@ -8782,14 +8424,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8801,7 +8441,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8812,7 +8451,6 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz",
"integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=",
- "dev": true,
"requires": {
"postcss": "^5.0.4"
},
@@ -8820,14 +8458,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8839,7 +8475,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8850,7 +8485,6 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz",
"integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=",
- "dev": true,
"requires": {
"postcss": "^5.0.14"
},
@@ -8858,14 +8492,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8877,7 +8509,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8888,7 +8519,6 @@
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz",
"integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=",
- "dev": true,
"requires": {
"postcss": "^5.0.16"
},
@@ -8896,14 +8526,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8915,7 +8543,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8926,7 +8553,6 @@
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz",
"integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=",
- "dev": true,
"requires": {
"postcss": "^5.0.14",
"uniqs": "^2.0.0"
@@ -8935,14 +8561,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8954,7 +8578,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -8964,8 +8587,7 @@
"postcss-filter-plugins": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz",
- "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==",
- "dev": true,
+ "integrity": "sha1-giRf34IzcEFkXkdxFNjlk6oYuOw=",
"requires": {
"postcss": "^5.0.4"
},
@@ -8973,14 +8595,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -8992,7 +8612,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9003,7 +8622,6 @@
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz",
"integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=",
- "dev": true,
"requires": {
"has": "^1.0.1",
"postcss": "^5.0.10",
@@ -9013,14 +8631,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9032,7 +8648,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9043,7 +8658,6 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz",
"integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=",
- "dev": true,
"requires": {
"postcss": "^5.0.4"
},
@@ -9051,14 +8665,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9070,7 +8682,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9081,7 +8692,6 @@
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz",
"integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=",
- "dev": true,
"requires": {
"browserslist": "^1.5.2",
"caniuse-api": "^1.5.2",
@@ -9094,7 +8704,6 @@
"version": "1.7.7",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
"integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
- "dev": true,
"requires": {
"caniuse-db": "^1.0.30000639",
"electron-to-chromium": "^1.2.7"
@@ -9103,14 +8712,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9122,7 +8729,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9132,14 +8738,12 @@
"postcss-message-helpers": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz",
- "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=",
- "dev": true
+ "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4="
},
"postcss-minify-font-values": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz",
"integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=",
- "dev": true,
"requires": {
"object-assign": "^4.0.1",
"postcss": "^5.0.4",
@@ -9149,14 +8753,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9168,7 +8770,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9179,7 +8780,6 @@
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz",
"integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=",
- "dev": true,
"requires": {
"postcss": "^5.0.12",
"postcss-value-parser": "^3.3.0"
@@ -9188,14 +8788,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9207,7 +8805,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9218,7 +8815,6 @@
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz",
"integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.1",
"postcss": "^5.0.2",
@@ -9229,14 +8825,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9248,7 +8842,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9259,7 +8852,6 @@
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz",
"integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.2",
"has": "^1.0.1",
@@ -9270,14 +8862,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9289,7 +8879,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9299,8 +8888,7 @@
"postcss-modules": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.3.2.tgz",
- "integrity": "sha512-QujH5ZpPtr1fBWTKDa43Hx45gm7p19aEtHaAtkMCBZZiB/D5za2wXSMtAf94tDUZHF3F5KZcTXISUNqgEQRiDw==",
- "dev": true,
+ "integrity": "sha1-CmFrhDh/H2DdKKAfWXaH6Ft7hIE=",
"requires": {
"css-modules-loader-core": "^1.1.0",
"generic-names": "^1.0.3",
@@ -9312,8 +8900,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -9321,8 +8908,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -9332,8 +8918,7 @@
"postcss": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.2.tgz",
- "integrity": "sha512-fmaUY5370keLUTx+CnwRxtGiuFTcNBLQBqr1oE3WZ/euIYmGAo0OAgOhVJ3ByDnVmOR3PK+0V9VebzfjRIUcqw==",
- "dev": true,
+ "integrity": "sha1-e1oQneNWgE4n+VqWC+8OTVvJuxg=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -9343,8 +8928,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
}
}
},
@@ -9352,7 +8936,6 @@
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz",
"integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=",
- "dev": true,
"requires": {
"css-selector-tokenizer": "^0.7.0",
"postcss": "^6.0.1"
@@ -9361,8 +8944,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -9370,8 +8952,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -9381,14 +8962,12 @@
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
- "dev": true,
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -9398,14 +8977,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
- "dev": true,
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -9416,7 +8993,6 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz",
"integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=",
- "dev": true,
"requires": {
"css-selector-tokenizer": "^0.7.0",
"postcss": "^6.0.1"
@@ -9425,8 +9001,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -9434,8 +9009,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -9445,14 +9019,12 @@
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
- "dev": true,
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -9462,14 +9034,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
- "dev": true,
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -9480,7 +9050,6 @@
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz",
"integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=",
- "dev": true,
"requires": {
"icss-replace-symbols": "^1.1.0",
"postcss": "^6.0.1"
@@ -9489,8 +9058,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -9498,8 +9066,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
- "dev": true,
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -9509,14 +9076,12 @@
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
- "dev": true,
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -9526,14 +9091,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
- "dev": true,
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -9544,7 +9107,6 @@
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz",
"integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=",
- "dev": true,
"requires": {
"postcss": "^5.0.5"
},
@@ -9552,14 +9114,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9571,7 +9131,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9582,7 +9141,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz",
"integrity": "sha1-lQ4Me+NEV3ChYP/9a2ZEw8DNj4k=",
- "dev": true,
"requires": {
"cssnano-util-get-match": "^4.0.0",
"postcss": "^6.0.0",
@@ -9593,7 +9151,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.0.tgz",
"integrity": "sha1-7pNDq5gbgixjq3JhXszNCFZERaM=",
- "dev": true,
"requires": {
"cssnano-util-get-arguments": "^4.0.0",
"has": "^1.0.0",
@@ -9605,7 +9162,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.0.tgz",
"integrity": "sha1-txHFks8W+vn/V15C+hALZ5kIPv8=",
- "dev": true,
"requires": {
"cssnano-util-get-arguments": "^4.0.0",
"cssnano-util-get-match": "^4.0.0",
@@ -9617,7 +9173,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.0.tgz",
"integrity": "sha1-cYy20wpvrGrGqDDjLAbAfbxm/l0=",
- "dev": true,
"requires": {
"has": "^1.0.0",
"postcss": "^6.0.0",
@@ -9628,7 +9183,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.0.tgz",
"integrity": "sha1-A1HymIaqmB1D2RssK9GuptCvbSM=",
- "dev": true,
"requires": {
"cssnano-util-get-match": "^4.0.0",
"postcss": "^6.0.0",
@@ -9639,7 +9193,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.0.tgz",
"integrity": "sha1-Ws1dR7rqXRdnSyzMSuUWb6iM35c=",
- "dev": true,
"requires": {
"postcss": "^6.0.0",
"postcss-value-parser": "^3.0.0"
@@ -9649,7 +9202,6 @@
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz",
"integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=",
- "dev": true,
"requires": {
"is-absolute-url": "^2.0.0",
"normalize-url": "^1.4.0",
@@ -9660,14 +9212,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9679,7 +9229,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9690,7 +9239,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.0.tgz",
"integrity": "sha1-HafnaxCuY8EYJ/oE/Du0oe/pnMA=",
- "dev": true,
"requires": {
"postcss": "^6.0.0",
"postcss-value-parser": "^3.0.0"
@@ -9700,7 +9248,6 @@
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz",
"integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=",
- "dev": true,
"requires": {
"postcss": "^5.0.4",
"postcss-value-parser": "^3.0.1"
@@ -9709,14 +9256,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9728,7 +9273,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9739,7 +9283,6 @@
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz",
"integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=",
- "dev": true,
"requires": {
"postcss": "^5.0.4",
"postcss-value-parser": "^3.0.2"
@@ -9748,14 +9291,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9767,7 +9308,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9778,7 +9318,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz",
"integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=",
- "dev": true,
"requires": {
"postcss": "^5.0.4"
},
@@ -9786,14 +9325,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9805,7 +9342,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9816,7 +9352,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz",
"integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=",
- "dev": true,
"requires": {
"has": "^1.0.1",
"postcss": "^5.0.8",
@@ -9826,14 +9361,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9845,7 +9378,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9856,7 +9388,6 @@
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz",
"integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=",
- "dev": true,
"requires": {
"flatten": "^1.0.2",
"indexes-of": "^1.0.1",
@@ -9867,7 +9398,6 @@
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz",
"integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=",
- "dev": true,
"requires": {
"is-svg": "^2.0.0",
"postcss": "^5.0.14",
@@ -9878,14 +9408,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9897,7 +9425,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9908,7 +9435,6 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz",
"integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=",
- "dev": true,
"requires": {
"alphanum-sort": "^1.0.1",
"postcss": "^5.0.4",
@@ -9918,14 +9444,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9937,7 +9461,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9947,14 +9470,12 @@
"postcss-value-parser": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz",
- "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=",
- "dev": true
+ "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU="
},
"postcss-zindex": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz",
"integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=",
- "dev": true,
"requires": {
"has": "^1.0.1",
"postcss": "^5.0.4",
@@ -9964,14 +9485,12 @@
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
},
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
- "dev": true,
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -9983,7 +9502,6 @@
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
"requires": {
"has-flag": "^1.0.0"
}
@@ -9993,8 +9511,7 @@
"posthtml": {
"version": "0.11.3",
"resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.11.3.tgz",
- "integrity": "sha512-quMHnDckt2DQ9lRi6bYLnuyBDnVzK+McHa8+ar4kTdYbWEo/92hREOu3h70ZirudOOp/my2b3r0m5YtxY52yrA==",
- "dev": true,
+ "integrity": "sha1-F+opIbBVW3RV8zyXe9Fti4y3Tyc=",
"requires": {
"object-assign": "^4.1.1",
"posthtml-parser": "^0.3.3",
@@ -10004,8 +9521,7 @@
"posthtml-parser": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.3.3.tgz",
- "integrity": "sha512-H/Z/yXGwl49A7hYQLV1iQ3h87NE0aZ/PMZhFwhw3lKeCAN+Ti4idrHvVvh4/GX10I7u77aQw+QB4vV5/Lzvv5A==",
- "dev": true,
+ "integrity": "sha1-P+mG/KnwDA8QnXMbpZCxkvJud20=",
"requires": {
"htmlparser2": "^3.9.2",
"isobject": "^2.1.0",
@@ -10017,8 +9533,7 @@
"posthtml-parser": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.4.1.tgz",
- "integrity": "sha512-h7vXIQ21Ikz2w5wPClPakNP6mJeJCK6BT0GpqnQrNNABdR7/TchNlFyryL1Bz6Ww53YWCKkr6tdZuHlxY1AVdQ==",
- "dev": true,
+ "integrity": "sha1-lbeP73Zvu+Cm+GG26VWCvD0f+TM=",
"requires": {
"htmlparser2": "^3.9.2",
"object-assign": "^4.1.1"
@@ -10027,20 +9542,17 @@
"posthtml-render": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.1.4.tgz",
- "integrity": "sha512-jL6eFIzoN3xUEvbo33OAkSDE2VIKU4JQ1wENOows1DpfnrdapR/K3Q1/fB43Mq7wQlcSgRm23nFrvoioufM7eA==",
- "dev": true
+ "integrity": "sha1-ldrAmJL08YP61ayCPwj0LAJWVR4="
},
"prelude-ls": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
},
"prepend-http": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
- "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
- "dev": true
+ "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw="
},
"preserve": {
"version": "0.2.0",
@@ -10050,8 +9562,7 @@
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
- "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
- "dev": true
+ "integrity": "sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8="
},
"process": {
"version": "0.11.10",
@@ -10061,7 +9572,7 @@
"process-nextick-args": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
- "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
+ "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o="
},
"progress": {
"version": "2.0.0",
@@ -10072,13 +9583,12 @@
"proto-list": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
- "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
- "dev": true
+ "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk="
},
"proxy-addr": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz",
- "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==",
+ "integrity": "sha1-7PxzO/Iv+Mb0B/onUye5q2fki5M=",
"requires": {
"forwarded": "~0.1.2",
"ipaddr.js": "1.8.0"
@@ -10092,7 +9602,7 @@
"public-encrypt": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz",
- "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==",
+ "integrity": "sha1-RuuRByBr9zSJ+LhbadkTNMZhCZQ=",
"requires": {
"bn.js": "^4.1.0",
"browserify-rsa": "^4.0.0",
@@ -10114,13 +9624,12 @@
"qs": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
+ "integrity": "sha1-yzroBuh0BERYTvFUzo7pjUA/PjY="
},
"query-string": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
"integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
- "dev": true,
"requires": {
"object-assign": "^4.1.0",
"strict-uri-encode": "^1.0.0"
@@ -10140,7 +9649,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz",
"integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=",
- "dev": true,
"requires": {
"buffer-equal": "0.0.1",
"minimist": "^1.1.3",
@@ -10150,8 +9658,7 @@
"buffer-equal": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz",
- "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=",
- "dev": true
+ "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs="
}
}
},
@@ -10163,7 +9670,7 @@
"randomatic": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz",
- "integrity": "sha512-VdxFOIEY3mNO5PtSRkkle/hPJDHvQhK21oa73K4yAc9qmp6N429gAyF1gZMOTMeS0/AYzaV/2Trcef+NaIonSA==",
+ "integrity": "sha1-01SQAw6091eN4pLObfsEqRoSiSM=",
"requires": {
"is-number": "^4.0.0",
"kind-of": "^6.0.0",
@@ -10173,19 +9680,19 @@
"is-number": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
- "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
+ "integrity": "sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8="
},
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"randombytes": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
- "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
+ "integrity": "sha1-0wLFIpSFiISKjTAMkytEwkIx2oA=",
"requires": {
"safe-buffer": "^5.1.0"
}
@@ -10193,7 +9700,7 @@
"randomfill": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
- "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "integrity": "sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=",
"requires": {
"randombytes": "^2.0.5",
"safe-buffer": "^5.1.0"
@@ -10268,7 +9775,7 @@
"readable-stream": {
"version": "2.3.6",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
- "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
+ "integrity": "sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=",
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -10293,7 +9800,7 @@
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -10313,7 +9820,6 @@
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz",
"integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=",
- "dev": true,
"requires": {
"balanced-match": "^0.4.2",
"math-expression-evaluator": "^1.2.14",
@@ -10323,8 +9829,7 @@
"balanced-match": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
- "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
- "dev": true
+ "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
}
}
},
@@ -10332,7 +9837,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz",
"integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=",
- "dev": true,
"requires": {
"balanced-match": "^0.4.2"
},
@@ -10340,8 +9844,7 @@
"balanced-match": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
- "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
- "dev": true
+ "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
}
}
},
@@ -10353,7 +9856,7 @@
"redux": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz",
- "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==",
+ "integrity": "sha1-BrcxIyFZAdJdBlvjQusCa8HIU3s=",
"requires": {
"lodash": "^4.2.1",
"lodash-es": "^4.2.1",
@@ -10364,7 +9867,7 @@
"lodash": {
"version": "4.17.5",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz",
- "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw=="
+ "integrity": "sha1-maktZcAnLevoyWtgV7yPv6O+1RE="
}
}
},
@@ -10389,27 +9892,24 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
}
}
},
"regenerate": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz",
- "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==",
- "dev": true
+ "integrity": "sha1-DDNtOYBVPXVcObWGrjsgqknIK38="
},
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
- "dev": true
+ "integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk="
},
"regenerator-transform": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
- "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
- "dev": true,
+ "integrity": "sha1-HkmWg3Ix2ot/PPQRTXG1aRoGgN0=",
"requires": {
"babel-runtime": "^6.18.0",
"babel-types": "^6.19.0",
@@ -10419,7 +9919,7 @@
"regex-cache": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz",
- "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
+ "integrity": "sha1-db3FiioUls7EihKDW8VMjVYjNt0=",
"requires": {
"is-equal-shallow": "^0.1.3"
}
@@ -10427,7 +9927,7 @@
"regex-not": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "integrity": "sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=",
"requires": {
"extend-shallow": "^3.0.2",
"safe-regex": "^1.1.0"
@@ -10436,14 +9936,13 @@
"regexpp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.0.tgz",
- "integrity": "sha512-g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==",
+ "integrity": "sha1-sqdTSoXKGwM7z1zp/45W1OB1U2U=",
"dev": true
},
"regexpu-core": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz",
"integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=",
- "dev": true,
"requires": {
"regenerate": "^1.2.1",
"regjsgen": "^0.2.0",
@@ -10453,14 +9952,12 @@
"regjsgen": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
- "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
- "dev": true
+ "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc="
},
"regjsparser": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
"integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
- "dev": true,
"requires": {
"jsesc": "~0.5.0"
}
@@ -10491,7 +9988,7 @@
"request": {
"version": "2.87.0",
"resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz",
- "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==",
+ "integrity": "sha1-MvACNc0I1IK00NaNuTqCnA7VdW4=",
"requires": {
"aws-sign2": "~0.7.0",
"aws4": "^1.6.0",
@@ -10558,7 +10055,7 @@
"resolve": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.0.tgz",
- "integrity": "sha512-QdgZ5bjR1WAlpLaO5yHepFvC+o3rCr6wpfE2tpJNMkXdulf2jKomQBdNRQITF3ZKHNlT71syG98yQP03gasgnA==",
+ "integrity": "sha1-K99TdIESByhd8N9lK3jxGKuPPF4=",
"requires": {
"path-parse": "^1.0.5"
}
@@ -10578,7 +10075,6 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
"integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
- "dev": true,
"requires": {
"onetime": "^2.0.0",
"signal-exit": "^3.0.2"
@@ -10587,24 +10083,22 @@
"ret": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
+ "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w="
},
"rgb-regex": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz",
- "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=",
- "dev": true
+ "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE="
},
"rgba-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",
- "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=",
- "dev": true
+ "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM="
},
"rijs": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/rijs/-/rijs-0.9.1.tgz",
- "integrity": "sha512-Hl5yWFZUdVePXIOHRrFXGxQZ2+fzWucqqx/aQjkE0PxbmNyOY0WA/SWdDA1eKeqb7lh2a0vcchR9mZLiQ9rHFQ==",
+ "integrity": "sha1-agVpqJjMWl+Sv9Wa2GbI7xqfJ4c=",
"requires": {
"rijs.components": "*",
"rijs.core": "*",
@@ -10623,7 +10117,7 @@
"rijs.components": {
"version": "3.1.16",
"resolved": "https://registry.npmjs.org/rijs.components/-/rijs.components-3.1.16.tgz",
- "integrity": "sha512-7TneWZIILv20erfzKtU1xnwtFSxiB+/9rwdS/3WGkugUbaXZF811kNfvaOlE4+BEj08CV8o0Dkasih3p4NV/dw==",
+ "integrity": "sha1-l7QyRvGELkWluXu4zOOrro0OVLU=",
"requires": {
"@compone/define": "^1.2.4",
"utilise": "^2.3.5"
@@ -10632,7 +10126,7 @@
"rijs.core": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/rijs.core/-/rijs.core-1.2.6.tgz",
- "integrity": "sha512-bB/tay726eZomQe91ciIuSGM1zDNyIuOkKdg6jRvYOGR8N30x5qHoADVgCEJgpgqlsPjmuBq6qPsJ3Pw4Nv6Uw==",
+ "integrity": "sha1-Y4zVoBuq4Q/M9XaDFygCrfN6dBQ=",
"requires": {
"colors": "^1.1.0",
"utilise": "^2.3.5"
@@ -10641,7 +10135,7 @@
"rijs.css": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/rijs.css/-/rijs.css-1.2.4.tgz",
- "integrity": "sha512-2VKq0iWFki9gZMntUCoOCJVxn/o7tOZu7L0MzD7srPKiynaTsk8A7PjTwFmds1vdJ995v8adg3ax0eS5i+Jbow==",
+ "integrity": "sha1-8MInuljk0KUOcmGpBTapYlTdyd8=",
"requires": {
"djbx": "^1.0.3",
"utilise": "^2.3.3"
@@ -10650,7 +10144,7 @@
"rijs.data": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/rijs.data/-/rijs.data-2.2.4.tgz",
- "integrity": "sha512-zvR1GzRzcqZOeD7K+YVV7MmvLeLFbrLsrkxkEW570WiLQsnjTaZ6hLnftXlHLnPMWMIrGfs8gh6BJLWY3XcjXA==",
+ "integrity": "sha1-e6A8MK+0Y6bqQMjKi8KzoDOTniY=",
"requires": {
"utilise": "^2.3.5"
}
@@ -10658,7 +10152,7 @@
"rijs.fn": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/rijs.fn/-/rijs.fn-1.2.6.tgz",
- "integrity": "sha512-v/xM7OOzS8HXqGA0y9ey/D0YOyAjiujKJT17/4U0CqViVhMi+0AsJCSuJqSMS4CkzLpy3CqdgKkRD6hnet3i+w==",
+ "integrity": "sha1-sqJPLEDrK9xYEZ7e3cY7MPuEis4=",
"requires": {
"browser-resolve": "^1.11.2",
"utilise": "^2.3.5"
@@ -10667,7 +10161,7 @@
"rijs.npm": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/rijs.npm/-/rijs.npm-2.0.0.tgz",
- "integrity": "sha512-xRg5+MH0H5fDe9aMi68xZHq3E6AH1+fouGIJ+a7uFoirnbYdP9YqMK3QYFnvslF0Is08Rhx/R9P/7vwpI1N4rg==",
+ "integrity": "sha1-PdHYaB41mOgTN51E5sBVGfojCIk=",
"requires": {
"browser-resolve": "^1.11.2",
"browserify": "^14.5.0",
@@ -10678,7 +10172,7 @@
"browserify": {
"version": "14.5.0",
"resolved": "https://registry.npmjs.org/browserify/-/browserify-14.5.0.tgz",
- "integrity": "sha512-gKfOsNQv/toWz+60nSPfYzuwSEdzvV2WdxrVPUbPD/qui44rAkB3t3muNtmmGYHqrG56FGwX9SUEQmzNLAeS7g==",
+ "integrity": "sha1-C7vOUhrNbk0dVNjpNlAI77hanMU=",
"requires": {
"JSONStream": "^1.0.3",
"assert": "^1.4.0",
@@ -10732,7 +10226,7 @@
"browserify-zlib": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
- "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=",
"requires": {
"pako": "~1.0.5"
}
@@ -10740,7 +10234,7 @@
"buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz",
- "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==",
+ "integrity": "sha1-3Vf6DxCaxZxgJHkETcp7iz0LcdY=",
"requires": {
"base64-js": "^1.0.2",
"ieee754": "^1.1.4"
@@ -10792,7 +10286,7 @@
"pako": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
- "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg=="
+ "integrity": "sha1-AQEhG6pwxLykoPY/Igbpe3368lg="
},
"process-nextick-args": {
"version": "1.0.7",
@@ -10802,7 +10296,7 @@
"string_decoder": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
- "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
+ "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=",
"requires": {
"safe-buffer": "~5.1.0"
}
@@ -10820,7 +10314,7 @@
"rijs.pages": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/rijs.pages/-/rijs.pages-1.3.0.tgz",
- "integrity": "sha512-230MZ7oyDVPoTBQSHuA3vqawikFgRtvoVRaRq7utWPpbo7NpDO7TaOsJmzM66WPypMXStH5ijyFADXwrqYJvdg==",
+ "integrity": "sha1-jBSVFY8TbzB0O9mfIj4l0NdAt3s=",
"requires": {
"compression": "^1.6.2",
"express": "^4.16.2",
@@ -10831,7 +10325,7 @@
"rijs.resdir": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/rijs.resdir/-/rijs.resdir-1.4.4.tgz",
- "integrity": "sha512-l31HSXq13Rqaxr5wfY4d2MBFdTwmgG1A/FxGNrBc31E2WgBe4Hj86LhnRQage4SN8RjVZnf1JWWakbS7BVfoBw==",
+ "integrity": "sha1-Qe1ALd42ELux3UJVHHkQGUT48C8=",
"requires": {
"chokidar": "^1.0.5",
"glob": "^7.1.2",
@@ -10842,7 +10336,7 @@
"anymatch": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz",
- "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==",
+ "integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=",
"requires": {
"micromatch": "^2.1.5",
"normalize-path": "^2.0.0"
@@ -10869,7 +10363,7 @@
"rijs.serve": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/rijs.serve/-/rijs.serve-1.1.1.tgz",
- "integrity": "sha512-BZ4tNnMakHvfv0pLVLm1xtN7fncAnux5n57A1RsFOma1Y2wexM/ww8BHwQrsCkSYP+3ujfljthyb1J3HJGwXpA==",
+ "integrity": "sha1-N6vPTpPd1p948j8ReDxed5tDRxU=",
"requires": {
"compression": "^1.7.2",
"express": "^4.16.3",
@@ -10879,7 +10373,7 @@
"rijs.sessions": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/rijs.sessions/-/rijs.sessions-1.1.2.tgz",
- "integrity": "sha512-vj9iV8ov5awAnDy5x28FEezafbMClO/1JhnBIIsQg9DQ5vQBysPlwyiSHtNelXmE9gFbaxnsPD1/mUc3hm3FsQ==",
+ "integrity": "sha1-WlzJSSnx92j3bfszr1LASOatg3w=",
"requires": {
"cookie-parser": "^1.3.5",
"express-session": "^1.15.3",
@@ -10889,7 +10383,7 @@
"rijs.singleton": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/rijs.singleton/-/rijs.singleton-1.0.0.tgz",
- "integrity": "sha512-QeVEkimxkU0v06NnMYkKsj7R2AzFewG2FH1wMuUtO88n7gY7C/zdbFkNbYeWxqL+tuK+eLYWGFuoburTNM7rXQ==",
+ "integrity": "sha1-dOf78Yao5NwM07AO1jd6YSj0tpE=",
"requires": {
"utilise": "*"
}
@@ -10897,8 +10391,9 @@
"rijs.sync": {
"version": "2.3.5",
"resolved": "https://registry.npmjs.org/rijs.sync/-/rijs.sync-2.3.5.tgz",
- "integrity": "sha512-tcbhmjLyWb+2s2gdiSmROEoD/OQPFeKC9xBnKgs0H+umY8CaVrVPGFdr1y1qovm7HxUbdk/BKqi94GQDc5XB3A==",
+ "integrity": "sha1-hyjG19cqgBcvy6MWsn0KQ/MESas=",
"requires": {
+ "buble": "github:pemrouz/buble#4e639aeeb64712ac95dc30a52750d1ee4432c9c8",
"express": "^4.14.0",
"lru_map": "^0.3.3",
"platform": "^1.3.4",
@@ -10916,7 +10411,7 @@
},
"buble": {
"version": "github:pemrouz/buble#4e639aeeb64712ac95dc30a52750d1ee4432c9c8",
- "from": "github:pemrouz/buble#4e639aeeb64712ac95dc30a52750d1ee4432c9c8",
+ "from": "github:pemrouz/buble",
"requires": {
"acorn": "^5.1.2",
"acorn-jsx": "^3.0.1",
@@ -10926,16 +10421,6 @@
"minimist": "^1.2.0",
"os-homedir": "^1.0.1",
"vlq": "^0.2.2"
- },
- "dependencies": {
- "acorn5-object-spread": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/acorn5-object-spread/-/acorn5-object-spread-4.0.0.tgz",
- "integrity": "sha1-1XWAge7ZcSGrC+R+Mcqu8qo5lpc=",
- "requires": {
- "acorn": "^5.1.2"
- }
- }
}
},
"chalk": {
@@ -10961,7 +10446,7 @@
"rimraf": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
- "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
+ "integrity": "sha1-LtgVDSShbqhlHm1u8PR8QVjOejY=",
"requires": {
"glob": "^7.0.5"
}
@@ -10978,7 +10463,7 @@
"rxjs": {
"version": "6.3.2",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.3.2.tgz",
- "integrity": "sha512-hV7criqbR0pe7EeL3O66UYVg92IR0XsA97+9y+BWTePK9SKmEI5Qd3Zj6uPnGkNzXsBywBQWTvujPl+1Kn9Zjw==",
+ "integrity": "sha1-amiLFsTm6YDmLqgF7DBkjhxgkH8=",
"dev": true,
"requires": {
"tslib": "^1.9.0"
@@ -10987,7 +10472,7 @@
"safe-buffer": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
- "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
+ "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM="
},
"safe-regex": {
"version": "1.1.0",
@@ -11000,13 +10485,12 @@
"safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo="
},
"safer-eval": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/safer-eval/-/safer-eval-1.2.3.tgz",
- "integrity": "sha512-nDwXOhiheoaBT6op02n8wzsshjLXHhh4YAeqsDEoVmy1k2+lGv/ENLsGaWqkaKArUkUx48VO12/ZPa3sI/OEqQ==",
- "dev": true,
+ "integrity": "sha1-c7p0o0vIoH1qRBNcgV/Rio7r56A=",
"requires": {
"clones": "^1.1.0"
}
@@ -11062,8 +10546,7 @@
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
- "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
- "dev": true
+ "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk="
},
"scss-tokenizer": {
"version": "0.2.3",
@@ -11101,12 +10584,12 @@
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="
+ "integrity": "sha1-3Eu8emyp2Rbe5dQ1FvAJK1j3uKs="
},
"send": {
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
- "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+ "integrity": "sha1-bsyh4PjBVtFBWXVZhI32RzCmu8E=",
"requires": {
"debug": "2.6.9",
"depd": "~1.1.2",
@@ -11126,15 +10609,14 @@
"mime": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="
+ "integrity": "sha1-Eh+evEnjdm8xGnbh+hyAA8SwOqY="
}
}
},
"serialize-to-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.1.tgz",
- "integrity": "sha512-TK6d30GNkOLeFDPuP6Jfy1Q1V31GxzppYTt2lzr8KWmIUKomFj+260QP5o4AhHLu0pr6urgyS8i/Z1PqurjBoA==",
- "dev": true,
+ "integrity": "sha1-Lof2H5OIJtJMRjp8vQ3Skp7DgAg=",
"requires": {
"js-beautify": "^1.7.5",
"safer-eval": "^1.2.3"
@@ -11143,7 +10625,7 @@
"serve-static": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
- "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+ "integrity": "sha1-CV6Ecv1bRiN9tQzkhqQ/S4bGzsE=",
"requires": {
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
@@ -11164,7 +10646,7 @@
"set-value": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
- "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
+ "integrity": "sha1-ca5KiPD+77v1LR6mBPP7MV67YnQ=",
"requires": {
"extend-shallow": "^2.0.1",
"is-extendable": "^0.1.1",
@@ -11185,19 +10667,17 @@
"setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
- "dev": true
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
},
"setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
- "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
+ "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY="
},
"shallow-copy": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz",
- "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=",
- "dev": true
+ "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA="
},
"shasum": {
"version": "1.0.2",
@@ -11219,7 +10699,7 @@
"sha.js": {
"version": "2.4.11",
"resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -11231,7 +10711,6 @@
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
"integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
"requires": {
"shebang-regex": "^1.0.0"
}
@@ -11239,8 +10718,7 @@
"shebang-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
},
"shell-quote": {
"version": "1.6.1",
@@ -11253,14 +10731,23 @@
"jsonify": "~0.0.0"
}
},
+ "shepherd.js": {
+ "version": "2.0.0-beta.18",
+ "resolved": "https://registry.npmjs.org/shepherd.js/-/shepherd.js-2.0.0-beta.18.tgz",
+ "integrity": "sha512-emi0WfQBQYf/qfZmm7yzvVCrjPCIYVudvbhN0eaTwLmNdrtnZvZFRSc+7aA1BoOVgUpgU0UF7WjyqNG9Da0kow==",
+ "requires": {
+ "element-matches": "^0.1.2",
+ "lodash": "^4.17.10",
+ "popper.js": "^1.14.3"
+ }
+ },
"shuup-static-build-tools": {
"version": "file:../../lib/shuup_static_build_tools"
},
"sigmund": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz",
- "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=",
- "dev": true
+ "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA="
},
"signal-exit": {
"version": "3.0.2",
@@ -11276,7 +10763,6 @@
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
"integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
- "dev": true,
"requires": {
"is-arrayish": "^0.3.1"
},
@@ -11284,21 +10770,19 @@
"is-arrayish": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
- "dev": true
+ "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM="
}
}
},
"slash": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
- "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
- "dev": true
+ "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU="
},
"slice-ansi": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz",
- "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==",
+ "integrity": "sha1-BE8aSdiEL/MHqta1Be0Xi9lQE00=",
"dev": true,
"requires": {
"is-fullwidth-code-point": "^2.0.0"
@@ -11315,7 +10799,7 @@
"snapdragon": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "integrity": "sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=",
"requires": {
"base": "^0.11.1",
"debug": "^2.2.0",
@@ -11348,7 +10832,7 @@
"snapdragon-node": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "integrity": "sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=",
"requires": {
"define-property": "^1.0.0",
"isobject": "^3.0.0",
@@ -11366,7 +10850,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -11374,7 +10858,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -11382,7 +10866,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -11397,14 +10881,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"snapdragon-util": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "integrity": "sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=",
"requires": {
"kind-of": "^3.2.0"
}
@@ -11412,7 +10896,7 @@
"sntp": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
- "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==",
+ "integrity": "sha1-LGzsFP7cIiJznK+bXD2F0cxaLMg=",
"requires": {
"hoek": "4.x.x"
}
@@ -11421,7 +10905,6 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
"integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
- "dev": true,
"requires": {
"is-plain-obj": "^1.0.0"
}
@@ -11439,7 +10922,7 @@
"source-map-resolve": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz",
- "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==",
+ "integrity": "sha1-etD1k/IoFZjoVN+A8ZquS5LXoRo=",
"requires": {
"atob": "^2.0.0",
"decode-uri-component": "^0.2.0",
@@ -11451,8 +10934,7 @@
"source-map-support": {
"version": "0.4.18",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
- "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
- "dev": true,
+ "integrity": "sha1-Aoam3ovkJkEzhZTpfM6nXwosWF8=",
"requires": {
"source-map": "^0.5.6"
}
@@ -11465,7 +10947,7 @@
"spdx-correct": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz",
- "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==",
+ "integrity": "sha1-BaW01xU6GVvJLDxCW2nzsqlSTII=",
"requires": {
"spdx-expression-parse": "^3.0.0",
"spdx-license-ids": "^3.0.0"
@@ -11474,12 +10956,12 @@
"spdx-exceptions": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz",
- "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg=="
+ "integrity": "sha1-LHrmEFbHFKW5ubKyr30xHvXHj+k="
},
"spdx-expression-parse": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
- "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
+ "integrity": "sha1-meEZt6XaAOBUkcn6M4t5BII7QdA=",
"requires": {
"spdx-exceptions": "^2.1.0",
"spdx-license-ids": "^3.0.0"
@@ -11488,12 +10970,12 @@
"spdx-license-ids": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz",
- "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA=="
+ "integrity": "sha1-enzShHDMbToc/m1miG9rxDDTrIc="
},
"split-string": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "integrity": "sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=",
"requires": {
"extend-shallow": "^3.0.0"
}
@@ -11522,14 +11004,12 @@
"stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
- "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
- "dev": true
+ "integrity": "sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88="
},
"static-eval": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.0.tgz",
- "integrity": "sha512-6flshd3F1Gwm+Ksxq463LtFd1liC77N/PX1FVVc3OzL3hAmo2fwHFbuArkcfi7s9rTNsLEhcRmXGFZhlgy40uw==",
- "dev": true,
+ "integrity": "sha1-DoIfiSaEfe97S1DNpdVcBKmxOGQ=",
"requires": {
"escodegen": "^1.8.1"
}
@@ -11556,8 +11036,7 @@
"static-module": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz",
- "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==",
- "dev": true,
+ "integrity": "sha1-vUCrzq4z2mt6+4Sg5DKf+IUr+78=",
"requires": {
"concat-stream": "~1.6.0",
"convert-source-map": "^1.5.1",
@@ -11579,7 +11058,6 @@
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
"integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
- "dev": true,
"requires": {
"readable-stream": "^2.0.2"
}
@@ -11587,8 +11065,7 @@
"magic-string": {
"version": "0.22.5",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz",
- "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==",
- "dev": true,
+ "integrity": "sha1-jpz1r930Q4XB2lvCpqDb0QsDZX4=",
"requires": {
"vlq": "^0.2.2"
}
@@ -11598,12 +11075,12 @@
"statuses": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
+ "integrity": "sha1-u3PURtonlhBu/MG2AaJT1sRr0Ic="
},
"stdout-stream": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz",
- "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==",
+ "integrity": "sha1-WsF0zdXNcmEEqgwLK9g4FdjVNd4=",
"requires": {
"readable-stream": "^2.0.1"
}
@@ -11645,7 +11122,7 @@
"stream-http": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.1.tgz",
- "integrity": "sha512-cQ0jo17BLca2r0GfRdZKYAGLU6JRoIWxqSOakUMuKOT6MOK7AAlE856L33QuDmAy/eeOrhLee3dZKX0Uadu93A==",
+ "integrity": "sha1-0EQb4aRXpzpzOop7U1cL69nvZqQ=",
"requires": {
"builtin-status-codes": "^3.0.0",
"inherits": "^2.0.1",
@@ -11666,14 +11143,12 @@
"strict-uri-encode": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
- "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=",
- "dev": true
+ "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
},
"string-hash": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
- "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=",
- "dev": true
+ "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
},
"string-width": {
"version": "1.0.2",
@@ -11688,7 +11163,7 @@
"string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=",
"requires": {
"safe-buffer": "~5.1.0"
}
@@ -11696,7 +11171,7 @@
"stringstream": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz",
- "integrity": "sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="
+ "integrity": "sha1-eIAiWw1K0Q4wkn0Weh1vL9OzOnI="
},
"strip-ansi": {
"version": "3.0.1",
@@ -11726,7 +11201,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.0.tgz",
"integrity": "sha1-ZLMjlRxKJOX8ey7AbBN78y0VXoo=",
- "dev": true,
"requires": {
"browserslist": "^4.0.0",
"postcss": "^6.0.0",
@@ -11736,8 +11210,7 @@
"browserslist": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.1.1.tgz",
- "integrity": "sha512-VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q==",
- "dev": true,
+ "integrity": "sha1-Mo60/xIVsS32WJ6auC+K2qT8jNY=",
"requires": {
"caniuse-lite": "^1.0.30000884",
"electron-to-chromium": "^1.3.62",
@@ -11747,14 +11220,12 @@
"caniuse-lite": {
"version": "1.0.30000885",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000885.tgz",
- "integrity": "sha512-cXKbYwpxBLd7qHyej16JazPoUacqoVuDhvR61U7Fr5vSxMUiodzcYa1rQYRYfZ5GexV03vGZHd722vNPLjPJGQ==",
- "dev": true
+ "integrity": "sha1-6Inp+OflDnafKkljTJMriu5iKYQ="
},
"postcss-selector-parser": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
"integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
- "dev": true,
"requires": {
"dot-prop": "^4.1.1",
"indexes-of": "^1.0.1",
@@ -11774,12 +11245,12 @@
"summernote": {
"version": "0.8.10",
"resolved": "https://registry.npmjs.org/summernote/-/summernote-0.8.10.tgz",
- "integrity": "sha512-1b4ESCiY9HW+12HYXCntjbThVgeYNaYKfKL7pC4Jqjo/WDS4G4mMtd2kPuCw56HxeRT67d+zlehopaE+M4o6aQ=="
+ "integrity": "sha1-IaXX8Yo7B1ALWLYNWQdBelSJdSA="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -11788,7 +11259,6 @@
"version": "0.7.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz",
"integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=",
- "dev": true,
"requires": {
"coa": "~1.0.1",
"colors": "~1.1.2",
@@ -11802,12 +11272,12 @@
"symbol-observable": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
- "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
+ "integrity": "sha1-wiaIrtTqs83C3+rLtWFmBWCgCAQ="
},
"syntax-error": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz",
- "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==",
+ "integrity": "sha1-LZ1P9cBkrLcRWUo+O5UFStUdkHw=",
"requires": {
"acorn-node": "^1.2.0"
}
@@ -11815,7 +11285,7 @@
"table": {
"version": "4.0.3",
"resolved": "http://registry.npmjs.org/table/-/table-4.0.3.tgz",
- "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==",
+ "integrity": "sha1-ALXitgLxeUuayvnKkIp2OGp4E7w=",
"dev": true,
"requires": {
"ajv": "^6.0.1",
@@ -11829,7 +11299,7 @@
"ajv": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz",
- "integrity": "sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==",
+ "integrity": "sha1-caVp0Yns9PTzISJP7LFm8HHdkPk=",
"dev": true,
"requires": {
"fast-deep-equal": "^2.0.1",
@@ -11847,7 +11317,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
@@ -11856,7 +11326,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
@@ -11879,13 +11349,13 @@
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=",
"dev": true
},
"string-width": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "integrity": "sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=",
"dev": true,
"requires": {
"is-fullwidth-code-point": "^2.0.0",
@@ -11916,7 +11386,7 @@
"tar-stream": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz",
- "integrity": "sha512-IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==",
+ "integrity": "sha1-+E7xaWJp1iI8pI9uHu7eP36B85U=",
"requires": {
"bl": "^1.0.0",
"buffer-alloc": "^1.1.0",
@@ -11930,8 +11400,7 @@
"terser": {
"version": "3.8.2",
"resolved": "https://registry.npmjs.org/terser/-/terser-3.8.2.tgz",
- "integrity": "sha512-FGSBXiBJe2TSXy6pWwXpY0YcEWEK35UKL64BBbxX3aHqM4Nj0RMqXvqBuoSGfyd80t8MKQ5JwYm5jRRGTSEFNg==",
- "dev": true,
+ "integrity": "sha1-SLiA+Un40DispN/QCjfFPZbs+fs=",
"requires": {
"commander": "~2.17.1",
"source-map": "~0.6.1",
@@ -11941,20 +11410,17 @@
"commander": {
"version": "2.17.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
- "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
- "dev": true
+ "integrity": "sha1-vXerfebelCBc6sxy8XFtKfIKd78="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"source-map-support": {
"version": "0.5.9",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz",
- "integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==",
- "dev": true,
+ "integrity": "sha1-QbyVOyU0Jn6i1gW8z6e/oxEc7V8=",
"requires": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
@@ -11962,19 +11428,6 @@
}
}
},
- "tether": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/tether/-/tether-1.4.4.tgz",
- "integrity": "sha512-bagKeRRo3vEynHnO3GB7/jB3Q4YIf0mN7gXM/nR0wZvNHkPrwmZemg1w0C32JZP0prHZUwxGwoX5CdA7tuIDEw=="
- },
- "tether-shepherd": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/tether-shepherd/-/tether-shepherd-1.8.1.tgz",
- "integrity": "sha1-T9my/dkFnwS2xCSUVtWuFFo+kiM=",
- "requires": {
- "tether": "^1.0.1"
- }
- },
"text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
@@ -11998,8 +11451,7 @@
"timers-browserify": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
- "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
- "dev": true,
+ "integrity": "sha1-HSjj0qrfHVpZlsTp+VYBzQU0gK4=",
"requires": {
"setimmediate": "^1.0.4"
}
@@ -12007,19 +11459,17 @@
"timsort": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz",
- "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=",
- "dev": true
+ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q="
},
"tiny-inflate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.2.tgz",
- "integrity": "sha1-k9nez/yIBb1X6uQxDwt0Xptvs6c=",
- "dev": true
+ "integrity": "sha1-k9nez/yIBb1X6uQxDwt0Xptvs6c="
},
"tmp": {
"version": "0.0.33",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=",
"dev": true,
"requires": {
"os-tmpdir": "~1.0.2"
@@ -12033,13 +11483,12 @@
"to-buffer": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
- "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg=="
+ "integrity": "sha1-STvUj2LXxD/N7TE6A9ytsuEhOoA="
},
"to-fast-properties": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
- "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
- "dev": true
+ "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc="
},
"to-object-path": {
"version": "0.3.0",
@@ -12052,7 +11501,7 @@
"to-regex": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "integrity": "sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=",
"requires": {
"define-property": "^2.0.2",
"extend-shallow": "^3.0.2",
@@ -12082,19 +11531,17 @@
"toml": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz",
- "integrity": "sha512-O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA==",
- "dev": true
+ "integrity": "sha1-jWg9cpV3yyhiMd/HqK/+WNMXKPs="
},
"tomlify-j0.4": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz",
- "integrity": "sha512-2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ==",
- "dev": true
+ "integrity": "sha1-mUFNRSaMOjuL84voIUW3u6NLdHM="
},
"tooltip.js": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/tooltip.js/-/tooltip.js-1.3.0.tgz",
- "integrity": "sha512-5aj0jSQ2J8OOKRPTricY45HNUPRVbVRJZpZm2Wy9pd5BknGEc6epHwJ1eFvEmhXc3hpocDyRpZq31IiWcmcLVg==",
+ "integrity": "sha1-xWEVzp5LVJ7doLMGo+Q5oXJiGB0=",
"requires": {
"popper.js": "^1.0.2"
}
@@ -12122,7 +11569,7 @@
"tough-cookie": {
"version": "2.3.4",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz",
- "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==",
+ "integrity": "sha1-7GDO44rGdQY//JelwYlwV47oNlU=",
"requires": {
"punycode": "^1.4.1"
}
@@ -12141,13 +11588,12 @@
"trim-right": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
- "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
- "dev": true
+ "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM="
},
"true-case-path": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz",
- "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==",
+ "integrity": "sha1-+BO1qMhrQNpZYGcisUTjIleZ9H0=",
"requires": {
"glob": "^7.1.2"
}
@@ -12155,7 +11601,7 @@
"tslib": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
- "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==",
+ "integrity": "sha1-1+TdeSRdhUKMTX5IIqeZF5VMooY=",
"dev": true
},
"tty-browserify": {
@@ -12181,7 +11627,6 @@
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
"integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
"requires": {
"prelude-ls": "~1.1.2"
}
@@ -12189,12 +11634,12 @@
"type-detect": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
+ "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw="
},
"type-is": {
"version": "1.6.16",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
- "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
+ "integrity": "sha1-+JzjQVQcZysl7nrjxz3uOyvlAZQ=",
"requires": {
"media-typer": "0.3.0",
"mime-types": "~2.1.18"
@@ -12208,7 +11653,7 @@
"uid-safe": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz",
- "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==",
+ "integrity": "sha1-Kz1cckDo/C5Y+Komnl7knAhXvTo=",
"requires": {
"random-bytes": "~1.0.0"
}
@@ -12216,12 +11661,12 @@
"umd": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz",
- "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow=="
+ "integrity": "sha1-qp/mU8QrkJdnhInAEACstp8LJs8="
},
"undeclared-identifiers": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.2.tgz",
- "integrity": "sha512-13EaeocO4edF/3JKime9rD7oB6QI8llAGhgn5fKOPyfkJbRb6NFv9pYV6dFEmpa4uRjKeBqLZP8GpuzqHlKDMQ==",
+ "integrity": "sha1-fYUKmIh8/0vQv2SZnAFNCO1tGsw=",
"requires": {
"acorn-node": "^1.3.0",
"get-assigned-identifiers": "^1.2.0",
@@ -12233,7 +11678,6 @@
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-0.3.1.tgz",
"integrity": "sha1-1nHd3YkQGgi6w3tqUWEBBgIFIIU=",
- "dev": true,
"requires": {
"pako": "^0.2.5",
"tiny-inflate": "^1.0.0"
@@ -12274,14 +11718,12 @@
"uniq": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
- "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
- "dev": true
+ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8="
},
"uniqs": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
- "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=",
- "dev": true
+ "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI="
},
"unpipe": {
"version": "1.0.0",
@@ -12291,8 +11733,7 @@
"unquote": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
- "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=",
- "dev": true
+ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ="
},
"unset-value": {
"version": "1.0.0",
@@ -12338,12 +11779,12 @@
"upath": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
- "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw=="
+ "integrity": "sha1-NSVll+RqWB20eT0M5H+prr/J+r0="
},
"uri-js": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
- "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
+ "integrity": "sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=",
"dev": true,
"requires": {
"punycode": "^2.1.0"
@@ -12352,7 +11793,7 @@
"punycode": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=",
"dev": true
}
}
@@ -12381,7 +11822,7 @@
"use": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",
- "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==",
+ "integrity": "sha1-FHFr8D/f79AwQK71jYtLhfOnxUQ=",
"requires": {
"kind-of": "^6.0.2"
},
@@ -12389,7 +11830,7 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
@@ -12416,8 +11857,7 @@
"util.promisify": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
- "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
- "dev": true,
+ "integrity": "sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=",
"requires": {
"define-properties": "^1.1.2",
"object.getownpropertydescriptors": "^2.0.3"
@@ -12426,7 +11866,7 @@
"utilise": {
"version": "2.3.7",
"resolved": "https://registry.npmjs.org/utilise/-/utilise-2.3.7.tgz",
- "integrity": "sha512-IjGNAQE7txhJI8avL0Vfu6sGwwuMyXhNyO73quQQD3U0ofA4fjjovuAaQvxVuJ3e1wvqVV13VLeuEjsjGv+Jmg==",
+ "integrity": "sha1-ZTTWZ7j9bYNhecXTvcPxMvgg/U0=",
"requires": {
"colors": "^1.2.3",
"through": "^2.3.8"
@@ -12435,7 +11875,7 @@
"colors": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz",
- "integrity": "sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ=="
+ "integrity": "sha1-Lfj/Vz378lWvVi+M5xgda5caNZs="
}
}
},
@@ -12447,23 +11887,22 @@
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
- "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
+ "integrity": "sha1-EsUou51Y0LkmXZovbw/ovhf/HxQ="
},
"uws": {
"version": "9.148.0",
"resolved": "https://registry.npmjs.org/uws/-/uws-9.148.0.tgz",
- "integrity": "sha512-vWt+e8dOdwLM4neb1xIeZuQ7ZUN3l7n0qTKrOUtU1EZrV4BpmrSnsEL30d062/ocqRMGtLpwzVFsLKFgXomA9g=="
+ "integrity": "sha1-Vq/zbLlfdZRXPa/yohEF7Et2RmQ="
},
"v8-compile-cache": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz",
- "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==",
- "dev": true
+ "integrity": "sha1-pCiyi7JnkHNMT8i8n6EG/M6/amw="
},
"validate-npm-package-license": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz",
- "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==",
+ "integrity": "sha1-gWQ7y+8b3+zUYjeT3EZIlIupgzg=",
"requires": {
"spdx-correct": "^3.0.0",
"spdx-expression-parse": "^3.0.0"
@@ -12482,8 +11921,7 @@
"vendors": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.1.tgz",
- "integrity": "sha1-N61zyO5Bf7PVgOeFMSMH0nSEfyI=",
- "dev": true
+ "integrity": "sha1-N61zyO5Bf7PVgOeFMSMH0nSEfyI="
},
"verror": {
"version": "1.10.0",
@@ -12537,7 +11975,7 @@
"vlq": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz",
- "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="
+ "integrity": "sha1-jz5DKM9jsVQMDWfhsneDhviXWyY="
},
"vm-browserify": {
"version": "0.0.4",
@@ -12551,7 +11989,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
"integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
- "dev": true,
"requires": {
"defaults": "^1.0.3"
}
@@ -12559,7 +11996,7 @@
"wd": {
"version": "1.10.3",
"resolved": "https://registry.npmjs.org/wd/-/wd-1.10.3.tgz",
- "integrity": "sha512-ffqqZDtFFLeg5u/4pw2vYKECW+z+vW6vc+7rcqF15uu1/rmw3BydV84BONNc9DIcQ5Z7gQFS/hAuMvj53eVtSg==",
+ "integrity": "sha1-OVrH61ipjlVjafj45fhF2R+xUqM=",
"requires": {
"archiver": "2.1.1",
"async": "2.0.1",
@@ -12578,7 +12015,7 @@
"request": {
"version": "2.85.0",
"resolved": "http://registry.npmjs.org/request/-/request-2.85.0.tgz",
- "integrity": "sha512-8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg==",
+ "integrity": "sha1-WgNhWkfGFCCz65m326IE+DYD4fo=",
"requires": {
"aws-sign2": "~0.7.0",
"aws4": "^1.6.0",
@@ -12609,13 +12046,12 @@
"whet.extend": {
"version": "0.9.9",
"resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz",
- "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=",
- "dev": true
+ "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE="
},
"which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=",
"requires": {
"isexe": "^2.0.0"
}
@@ -12628,7 +12064,7 @@
"wide-align": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
- "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==",
+ "integrity": "sha1-rgdOa9wMFKQx6ATmJFScYzsABFc=",
"requires": {
"string-width": "^1.0.2 || 2"
}
@@ -12659,8 +12095,7 @@
"ws": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz",
- "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==",
- "dev": true,
+ "integrity": "sha1-3/7xSGa46NyRM1glFNG++vlumA8=",
"requires": {
"async-limiter": "~1.0.0"
}
@@ -12668,7 +12103,7 @@
"xrs": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/xrs/-/xrs-1.2.2.tgz",
- "integrity": "sha512-pLmxYQnG3Qm0xtZZMFr7W7ls9DYNtNe9D5KLQpniu3DeoHDMkFXrjo8OjCEyhQ3Pf4Jr/pYFDhuMrQVTfEqEOw==",
+ "integrity": "sha1-dn7pjNCcl+ikudwRkZc9IU6nt6s=",
"requires": {
"colors": "^1.2.1",
"express": "^4.15.4",
@@ -12680,7 +12115,7 @@
"colors": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz",
- "integrity": "sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ=="
+ "integrity": "sha1-Lfj/Vz378lWvVi+M5xgda5caNZs="
}
}
},
diff --git a/shuup/admin/views/menu.py b/shuup/admin/views/menu.py
index e9b34ab127..cc0758d2a7 100644
--- a/shuup/admin/views/menu.py
+++ b/shuup/admin/views/menu.py
@@ -15,5 +15,5 @@ class MenuView(TemplateView):
class MenuToggleView(View):
def post(self, request, *args, **kwargs):
- request.session["menu_open"] = int(request.POST.get("menu_open", 0))
+ request.session["menu_open"] = not bool(request.session.get("menu_open", True))
return JsonResponse({"success": True})
diff --git a/shuup/notify/npm-shrinkwrap.json b/shuup/notify/npm-shrinkwrap.json
index 15c2acd802..ddab45719b 100644
--- a/shuup/notify/npm-shrinkwrap.json
+++ b/shuup/notify/npm-shrinkwrap.json
@@ -7,7 +7,7 @@
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
- "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
+ "integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=",
"requires": {
"call-me-maybe": "^1.0.1",
"glob-to-regexp": "^0.3.0"
@@ -16,12 +16,12 @@
"@nodelib/fs.stat": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz",
- "integrity": "sha512-LAQ1d4OPfSJ/BMbI2DuizmYrrkD9JMaTdi2hQTlI53lQ4kRQPyZQRS4CYQ7O66bnBBnP/oYdRxbk++X0xuFU6A=="
+ "integrity": "sha1-UMHiJgrA7ZQ5oYHeNyWgFo1ZxIo="
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+ "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
},
"ajv": {
"version": "5.5.2",
@@ -53,7 +53,7 @@
"ansi-to-html": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.6.tgz",
- "integrity": "sha512-90M/2sZna3OsoOEbSyXK46poFnlClBC53Rx6etNKQK7iShsX5fI5E/M9Ld6FurtLaxAWLuAPi0Jp8p3y5oAkxg==",
+ "integrity": "sha1-WKjQS4fsmoXjrSc8EqX7xxR7nEI=",
"requires": {
"entities": "^1.1.1"
}
@@ -61,7 +61,7 @@
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
"requires": {
"sprintf-js": "~1.0.2"
}
@@ -69,7 +69,7 @@
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
+ "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
},
"arr-union": {
"version": "3.1.0",
@@ -91,7 +91,7 @@
"asn1.js": {
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
- "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+ "integrity": "sha1-ucK/WAXx5kqt7tbfOiv6+1pz9aA=",
"requires": {
"bn.js": "^4.0.0",
"inherits": "^2.0.1",
@@ -134,7 +134,7 @@
"async-limiter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
- "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="
+ "integrity": "sha1-ePrtjD0HSrgfIrTphdeehzj3IPg="
},
"asynckit": {
"version": "0.4.0",
@@ -150,7 +150,7 @@
"autoprefixer": {
"version": "8.6.5",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.6.5.tgz",
- "integrity": "sha512-PLWJN3Xo/rycNkx+mp8iBDMTm3FeWe4VmYaZDSqL5QQB9sLsQkG5k8n+LNDFnhh9kdq2K+egL/icpctOmDHwig==",
+ "integrity": "sha1-ND89GT7VaLMgjgARehuW62kdTuk=",
"requires": {
"browserslist": "^3.2.8",
"caniuse-lite": "^1.0.30000864",
@@ -163,7 +163,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -171,7 +171,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -180,7 +180,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -195,7 +195,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -205,12 +205,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -226,7 +226,7 @@
"aws4": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz",
- "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w==",
+ "integrity": "sha1-1NDpudv8p3vwjusKikcVUP454ok=",
"optional": true
},
"babel-code-frame": {
@@ -242,7 +242,7 @@
"babel-core": {
"version": "6.26.3",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
- "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
+ "integrity": "sha1-suLwnjQtDwyI4vAuBneUEl51wgc=",
"requires": {
"babel-code-frame": "^6.26.0",
"babel-generator": "^6.26.0",
@@ -268,7 +268,7 @@
"babel-generator": {
"version": "6.26.1",
"resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
- "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
+ "integrity": "sha1-GERAjTuPDTWkBOp6wYDwh6YBvZA=",
"requires": {
"babel-messages": "^6.23.0",
"babel-runtime": "^6.26.0",
@@ -577,7 +577,7 @@
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.2",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
- "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
+ "integrity": "sha1-WKeThjqefKhwvcWogRF/+sJ9tvM=",
"requires": {
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-runtime": "^6.26.0",
@@ -732,7 +732,7 @@
"babel-preset-env": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
- "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
+ "integrity": "sha1-3qefpOvriDzTXasH4mDBycBN93o=",
"requires": {
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
@@ -769,7 +769,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -842,7 +842,7 @@
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
+ "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"babylon-walk": {
"version": "1.0.2",
@@ -862,7 +862,7 @@
"base": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
@@ -884,7 +884,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -892,7 +892,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -900,7 +900,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -915,14 +915,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"base64-js": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
- "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="
+ "integrity": "sha1-yrHmEY8FEJXli1KBrqjBzSK/wOM="
},
"bcrypt-pbkdf": {
"version": "1.0.1",
@@ -936,7 +936,7 @@
"big.js": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
- "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="
+ "integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4="
},
"binary-extensions": {
"version": "1.11.0",
@@ -951,12 +951,12 @@
"bluebird": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
- "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
+ "integrity": "sha1-2VUfnemPH82h5oPRfukaBgLuLrk="
},
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
- "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
+ "integrity": "sha1-LN4J617jQfSEdGuwMJsyU7GxRC8="
},
"boolbase": {
"version": "1.0.0",
@@ -966,7 +966,7 @@
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
@@ -982,7 +982,7 @@
"brfs": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz",
- "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==",
+ "integrity": "sha1-t4ziM22BjiXuoEoJR8um1PuIScM=",
"requires": {
"quote-stream": "^1.0.1",
"resolve": "^1.1.5",
@@ -998,7 +998,7 @@
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
- "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
"requires": {
"buffer-xor": "^1.0.3",
"cipher-base": "^1.0.0",
@@ -1011,7 +1011,7 @@
"browserify-cipher": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
- "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=",
"requires": {
"browserify-aes": "^1.0.4",
"browserify-des": "^1.0.0",
@@ -1021,7 +1021,7 @@
"browserify-des": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz",
- "integrity": "sha512-zy0Cobe3hhgpiOM32Tj7KQ3Vl91m0njwsjzZQK1L+JDf11dzP9qIvjreVinsvXrgfjhStXwUWAEpB9D7Gwmayw==",
+ "integrity": "sha1-M0MSTbbXrVPiaogmMYcSvchFD5w=",
"requires": {
"cipher-base": "^1.0.1",
"des.js": "^1.0.0",
@@ -1054,7 +1054,7 @@
"browserify-zlib": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
- "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=",
"requires": {
"pako": "~1.0.5"
}
@@ -1086,7 +1086,7 @@
"buffer-from": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
- "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
+ "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8="
},
"buffer-xor": {
"version": "1.0.3",
@@ -1101,7 +1101,7 @@
"cache-base": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=",
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
@@ -1145,7 +1145,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
},
"caseless": {
"version": "0.12.0",
@@ -1175,7 +1175,7 @@
"cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
- "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -1184,7 +1184,7 @@
"clap": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz",
- "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==",
+ "integrity": "sha1-TzZ0WzIAhJJVf0ZBLWbVDLmbzlE=",
"requires": {
"chalk": "^1.1.3"
}
@@ -1192,7 +1192,7 @@
"class-utils": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=",
"requires": {
"arr-union": "^3.1.0",
"define-property": "^0.2.5",
@@ -1226,7 +1226,7 @@
"cli-spinners": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz",
- "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg=="
+ "integrity": "sha1-ACwZkJEtDVlYDJO9NsBW3pnkJZo="
},
"clone": {
"version": "1.0.4",
@@ -1274,7 +1274,7 @@
"color-convert": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
- "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
+ "integrity": "sha1-wSYRB66y8pTr/+ye2eytUppgl+0=",
"requires": {
"color-name": "^1.1.1"
}
@@ -1318,12 +1318,12 @@
"command-exists": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz",
- "integrity": "sha512-doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw=="
+ "integrity": "sha1-FoKPDD/ysMWIBYYe8hG2T8FWkqg="
},
"commander": {
"version": "2.17.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.0.tgz",
- "integrity": "sha512-477o1hdVORiFlZxw8wgsXYCef3lh0zl/OV0FTftqiDxJSWw6dPQ2ipS4k20J2qBcsmsmLKSyr2iFrf9e3JGi4w=="
+ "integrity": "sha1-nQeyXipvGYt22LdWoOipYEpqGmA="
},
"component-emitter": {
"version": "1.2.1",
@@ -1338,7 +1338,7 @@
"concat-stream": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=",
"requires": {
"buffer-from": "^1.0.0",
"inherits": "^2.0.3",
@@ -1388,7 +1388,7 @@
"core-js": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
- "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw=="
+ "integrity": "sha1-+XJgj/DOrWi4QaFqky0LGDeRgU4="
},
"core-util-is": {
"version": "1.0.2",
@@ -1398,7 +1398,7 @@
"cosmiconfig": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.5.tgz",
- "integrity": "sha512-94j37OtvxS5w7qr7Ta6dt67tWdnOxigBVN4VnSxNXFez9o18PGQ0D33SchKP17r9LAcWVTYV72G6vDayAUBFIg==",
+ "integrity": "sha1-qAnjwjBokc4Xq3A1nci99mH+LNA=",
"requires": {
"is-directory": "^0.3.1",
"js-yaml": "^3.9.0",
@@ -1408,12 +1408,12 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -1424,7 +1424,7 @@
"create-ecdh": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
- "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+ "integrity": "sha1-yREbbzMEXEaX8UR4f5JUzcd8Rf8=",
"requires": {
"bn.js": "^4.1.0",
"elliptic": "^6.0.0"
@@ -1433,7 +1433,7 @@
"create-hash": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
- "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "integrity": "sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=",
"requires": {
"cipher-base": "^1.0.1",
"inherits": "^2.0.1",
@@ -1445,7 +1445,7 @@
"create-hmac": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
- "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "integrity": "sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=",
"requires": {
"cipher-base": "^1.0.3",
"create-hash": "^1.1.0",
@@ -1458,7 +1458,7 @@
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=",
"requires": {
"nice-try": "^1.0.4",
"path-key": "^2.0.1",
@@ -1470,7 +1470,7 @@
"crypto-browserify": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
- "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "integrity": "sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=",
"requires": {
"browserify-cipher": "^1.0.0",
"browserify-sign": "^4.0.0",
@@ -1493,7 +1493,7 @@
"css-declaration-sorter": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-3.0.1.tgz",
- "integrity": "sha512-jH4024SHZ3e0M7ann9VxpFpH3moplRXNz9ZBqvFMZqi09Yo5ARbs2wdPH8GqN9iRTlQynrbGbraNbBxBLei85Q==",
+ "integrity": "sha1-0OMFaw/YjcHqnc7/Q1rb6ccCp/g=",
"requires": {
"postcss": "^6.0.0",
"timsort": "^0.3.0"
@@ -1502,7 +1502,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -1510,7 +1510,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -1525,7 +1525,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -1535,12 +1535,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -1609,7 +1609,7 @@
"css-tree": {
"version": "1.0.0-alpha25",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz",
- "integrity": "sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==",
+ "integrity": "sha1-G7+r+/bu708B2RCP8u3Qvi/jVZc=",
"requires": {
"mdn-data": "^1.0.0",
"source-map": "^0.5.3"
@@ -1729,7 +1729,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -1737,7 +1737,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -1747,7 +1747,7 @@
"caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "integrity": "sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=",
"requires": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.0",
@@ -1758,7 +1758,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -1768,7 +1768,7 @@
"coa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
- "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
+ "integrity": "sha1-8/iwsVBz411wJj+xBCyywCPbOK8=",
"requires": {
"q": "^1.1.2"
}
@@ -1776,7 +1776,7 @@
"color": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz",
- "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==",
+ "integrity": "sha1-2SC0Mo1TSjrIKV1o971LpsQnvpo=",
"requires": {
"color-convert": "^1.9.1",
"color-string": "^1.5.2"
@@ -1785,7 +1785,7 @@
"color-string": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
- "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
+ "integrity": "sha1-ybvF8BtYtUkvPWhXRZy2WQziBMw=",
"requires": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
@@ -1794,7 +1794,7 @@
"csso": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz",
- "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==",
+ "integrity": "sha1-e564vmFiiXPBsmHhadLwJACOdYs=",
"requires": {
"css-tree": "1.0.0-alpha.29"
},
@@ -1802,7 +1802,7 @@
"css-tree": {
"version": "1.0.0-alpha.29",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
- "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
+ "integrity": "sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=",
"requires": {
"mdn-data": "~1.1.0",
"source-map": "^0.5.3"
@@ -1823,7 +1823,7 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"has-flag": {
"version": "3.0.0",
@@ -1833,7 +1833,7 @@
"is-svg": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
- "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
+ "integrity": "sha1-kyHb0pwhLlypnE+peUxxS8r6L3U=",
"requires": {
"html-comment-regex": "^1.1.0"
}
@@ -1841,7 +1841,7 @@
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
+ "integrity": "sha1-LnhEFka9RoLpY/IrbpKCPDCcYtw=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -1850,12 +1850,12 @@
"normalize-url": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.2.0.tgz",
- "integrity": "sha512-WvF3Myk0NhXkG8S9bygFM4IC1KOvnVJGq0QoGeoqOYOBeinBZp5ybW3QuYbTc89lkWBMM9ZBO4QGRoc0353kKA=="
+ "integrity": "sha1-mNCUivyCgp83QyD0Bf6cpVpfhWc="
},
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -1929,7 +1929,7 @@
"postcss-merge-longhand": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.4.tgz",
- "integrity": "sha512-wLi2u22mSdBDBjLF8pyaPCNppOmqb+B4O0Dlt/4nUwn79EltDUJmCeCDYqo7SB2z9puOHTftnxviY4J9xS+ygQ==",
+ "integrity": "sha1-v/x8b/oUZZHJk6C7g3PWX5oG1NA=",
"requires": {
"css-color-names": "0.0.4",
"postcss": "^6.0.0",
@@ -2092,7 +2092,7 @@
"reduce-css-calc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.4.tgz",
- "integrity": "sha512-i/vWQbyd3aJRmip9OVSN9V6nIjLf/gg/ctxb0CpvHWtcRysFl/ngDBQD+rqavxdw/doScA3GMBXhzkHQ4GCzFQ==",
+ "integrity": "sha1-wg6c2oRFrXPU/0vqlgxvg1N5Fwg=",
"requires": {
"css-unit-converter": "^1.1.1",
"postcss-value-parser": "^3.3.0"
@@ -2101,12 +2101,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -2114,7 +2114,7 @@
"svgo": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
- "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
+ "integrity": "sha1-cEA2TAYqBTirrP9EAc6momp6OJo=",
"requires": {
"coa": "~2.0.1",
"colors": "~1.1.2",
@@ -2155,7 +2155,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -2163,7 +2163,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -2178,7 +2178,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -2188,12 +2188,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -2231,7 +2231,7 @@
"deasync": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.13.tgz",
- "integrity": "sha512-/6ngYM7AapueqLtvOzjv9+11N2fHDSrkxeMF1YPE20WIfaaawiBg+HZH1E5lHrcJxlKR42t6XPOEmMmqcAsU1g==",
+ "integrity": "sha1-gVwrabvREXyuVwFSzYlWYcCfIOo=",
"requires": {
"bindings": "~1.2.1",
"nan": "^2.0.7"
@@ -2240,7 +2240,7 @@
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"requires": {
"ms": "2.0.0"
}
@@ -2280,7 +2280,7 @@
"define-property": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=",
"requires": {
"is-descriptor": "^1.0.2",
"isobject": "^3.0.1"
@@ -2289,7 +2289,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2297,7 +2297,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2305,7 +2305,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -2320,7 +2320,7 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
@@ -2364,7 +2364,7 @@
"diffie-hellman": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
- "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "integrity": "sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=",
"requires": {
"bn.js": "^4.1.0",
"miller-rabin": "^4.0.0",
@@ -2390,7 +2390,7 @@
"domain-browser": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
- "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
+ "integrity": "sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto="
},
"domelementtype": {
"version": "1.3.0",
@@ -2400,7 +2400,7 @@
"domhandler": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
+ "integrity": "sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=",
"requires": {
"domelementtype": "1"
}
@@ -2417,7 +2417,7 @@
"dot-prop": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
- "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
+ "integrity": "sha1-HxngwuGqDjJ5fEl5nyg3rGr2nFc=",
"requires": {
"is-obj": "^1.0.0"
}
@@ -2425,7 +2425,7 @@
"dotenv": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz",
- "integrity": "sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow=="
+ "integrity": "sha1-pTF0Wb09eauIz/bkQFemo/ux/O8="
},
"duplexer2": {
"version": "0.1.4",
@@ -2447,7 +2447,7 @@
"editorconfig": {
"version": "0.13.3",
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz",
- "integrity": "sha512-WkjsUNVCu+ITKDj73QDvi0trvpdDWdkDyHybDGSXPfekLCqwmpD7CP7iPbvBgosNuLcI96XTDwNa75JyFl7tEQ==",
+ "integrity": "sha1-5SGeWHlR1glY/ZTqmpoAjN7/GzQ=",
"requires": {
"bluebird": "^3.0.5",
"commander": "^2.9.0",
@@ -2498,7 +2498,7 @@
"errno": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
- "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
+ "integrity": "sha1-RoTXF3mtOa8Xfj8AeZb3xnyFJhg=",
"optional": true,
"requires": {
"prr": "~1.0.1"
@@ -2507,7 +2507,7 @@
"error-ex": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=",
"requires": {
"is-arrayish": "^0.2.1"
}
@@ -2515,7 +2515,7 @@
"es-abstract": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
- "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
+ "integrity": "sha1-nbvdJ8aFbwABQhyhh4LXhr+KYWU=",
"requires": {
"es-to-primitive": "^1.1.1",
"function-bind": "^1.1.1",
@@ -2547,7 +2547,7 @@
"escodegen": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz",
- "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==",
+ "integrity": "sha1-264X75bI5L7bE1b0UE+kzC98t+I=",
"requires": {
"esprima": "^3.1.3",
"estraverse": "^4.2.0",
@@ -2564,7 +2564,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=",
"optional": true
}
}
@@ -2597,7 +2597,7 @@
"evp_bytestokey": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
- "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "integrity": "sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=",
"requires": {
"md5.js": "^1.3.4",
"safe-buffer": "^5.1.1"
@@ -2621,7 +2621,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -2647,7 +2647,7 @@
"acorn": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz",
- "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ=="
+ "integrity": "sha1-8JWCkpdwanyXdpWMCvyJMKm52dg="
},
"isarray": {
"version": "0.0.1",
@@ -2665,7 +2665,7 @@
"fast-glob": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz",
- "integrity": "sha512-TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==",
+ "integrity": "sha1-cXIzOKybTg4v/x1nSKKhPV7TUr8=",
"requires": {
"@mrmlnc/readdir-enhanced": "^2.2.1",
"@nodelib/fs.stat": "^1.0.1",
@@ -2688,7 +2688,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -2781,7 +2781,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -2791,14 +2791,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -2871,7 +2871,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2879,7 +2879,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2887,7 +2887,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -2933,12 +2933,12 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -2976,7 +2976,7 @@
"filesize": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
- "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg=="
+ "integrity": "sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc="
},
"flatten": {
"version": "1.0.2",
@@ -3026,7 +3026,7 @@
"fsevents": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
- "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
+ "integrity": "sha1-9B3LGvJYKvNpLaNvxVy9jhBBxCY=",
"optional": true,
"requires": {
"nan": "^2.9.2",
@@ -3488,7 +3488,7 @@
"fswatcher-child": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/fswatcher-child/-/fswatcher-child-1.0.5.tgz",
- "integrity": "sha512-T5BsoXc63WcPKLcQh77g3oJOqCHnXPp/QLuLgD9jhRBwDuOiVXL8PL6Dcy3ByfsdZmHKYQuPYN8PXEphyoS4qA==",
+ "integrity": "sha1-E00BL/p0kYl1YX4A5W5BOfNssUA=",
"requires": {
"chokidar": "^2.0.3"
},
@@ -3496,7 +3496,7 @@
"anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=",
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
@@ -3515,7 +3515,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -3542,7 +3542,7 @@
"chokidar": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
- "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
+ "integrity": "sha1-NW/04rDo5D4yLRijckYLvPOszSY=",
"requires": {
"anymatch": "^2.0.0",
"async-each": "^1.0.0",
@@ -3628,7 +3628,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -3638,14 +3638,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -3718,7 +3718,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -3726,7 +3726,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -3734,7 +3734,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -3780,12 +3780,12 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -3807,7 +3807,7 @@
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
},
"generic-names": {
"version": "1.0.3",
@@ -3844,7 +3844,7 @@
"globals": {
"version": "9.18.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="
+ "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo="
},
"graceful-fs": {
"version": "4.1.11",
@@ -3879,7 +3879,7 @@
"has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=",
"requires": {
"function-bind": "^1.1.1"
}
@@ -3963,7 +3963,7 @@
"hash.js": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz",
- "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==",
+ "integrity": "sha1-NA3tvmKQGHFRweodd3o0SJNd+EY=",
"requires": {
"inherits": "^2.0.3",
"minimalistic-assert": "^1.0.0"
@@ -3979,7 +3979,7 @@
"hex-color-regex": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
- "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="
+ "integrity": "sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4="
},
"hmac-drbg": {
"version": "1.0.1",
@@ -4018,7 +4018,7 @@
"htmlnano": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/htmlnano/-/htmlnano-0.1.10.tgz",
- "integrity": "sha512-eTEUzz8VdWYp+w/KUdb99kwao4reR64epUySyZkQeepcyzPQ2n2EPWzibf6QDxmkGy10Kr+CKxYqI3izSbmhJQ==",
+ "integrity": "sha1-oKVI60x2rizyQj7HolyIFzTT3qY=",
"requires": {
"cssnano": "^3.4.0",
"object-assign": "^4.0.1",
@@ -4031,7 +4031,7 @@
"coa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
- "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
+ "integrity": "sha1-8/iwsVBz411wJj+xBCyywCPbOK8=",
"requires": {
"q": "^1.1.2"
}
@@ -4039,7 +4039,7 @@
"csso": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz",
- "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==",
+ "integrity": "sha1-e564vmFiiXPBsmHhadLwJACOdYs=",
"requires": {
"css-tree": "1.0.0-alpha.29"
},
@@ -4047,7 +4047,7 @@
"css-tree": {
"version": "1.0.0-alpha.29",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
- "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
+ "integrity": "sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=",
"requires": {
"mdn-data": "~1.1.0",
"source-map": "^0.5.3"
@@ -4058,12 +4058,12 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
+ "integrity": "sha1-LnhEFka9RoLpY/IrbpKCPDCcYtw=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -4072,7 +4072,7 @@
"svgo": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
- "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
+ "integrity": "sha1-cEA2TAYqBTirrP9EAc6momp6OJo=",
"requires": {
"coa": "~2.0.1",
"colors": "~1.1.2",
@@ -4147,7 +4147,7 @@
"ieee754": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz",
- "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg=="
+ "integrity": "sha1-wWOE/+APW3g1gk5ntvK9RKUilFU="
},
"image-size": {
"version": "0.5.5",
@@ -4173,12 +4173,12 @@
"ini": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
+ "integrity": "sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc="
},
"invariant": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=",
"requires": {
"loose-envify": "^1.0.0"
}
@@ -4212,12 +4212,12 @@
"is-buffer": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
+ "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4="
},
"is-callable": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz",
- "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA=="
+ "integrity": "sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU="
},
"is-color-stop": {
"version": "1.1.0",
@@ -4248,7 +4248,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -4258,7 +4258,7 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
@@ -4293,7 +4293,7 @@
"is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=",
"requires": {
"isobject": "^3.0.1"
},
@@ -4316,7 +4316,7 @@
"is-resolvable": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
- "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg=="
+ "integrity": "sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg="
},
"is-svg": {
"version": "2.1.0",
@@ -4340,12 +4340,12 @@
"is-url": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
- "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+ "integrity": "sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI="
},
"is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
+ "integrity": "sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0="
},
"is-wsl": {
"version": "1.1.0",
@@ -4379,12 +4379,12 @@
"js-base64": {
"version": "2.4.5",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.5.tgz",
- "integrity": "sha512-aUnNwqMOXw3yvErjMPSQu6qIIzUmT1e5KcU1OZxRDU1g/am6mzBvcrmLAYwzmB59BHPrh5/tKaiF4OPhqRWESQ=="
+ "integrity": "sha1-4pPNPHyC8HDXAPx6HKCi5p8QH5I="
},
"js-beautify": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.5.tgz",
- "integrity": "sha512-9OhfAqGOrD7hoQBLJMTA+BKuKmoEtTJXzZ7WDF/9gvjtey1koVLuZqIY6c51aPDjbNdNtIXAkiWKVhziawE9Og==",
+ "integrity": "sha1-adllHvYNu2SfZVJ7U2dJUBOKeRk=",
"requires": {
"config-chain": "~1.1.5",
"editorconfig": "^0.13.2",
@@ -4420,7 +4420,7 @@
"json-parse-better-errors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
+ "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk="
},
"json-schema": {
"version": "0.2.3",
@@ -4468,7 +4468,7 @@
"less": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/less/-/less-3.0.4.tgz",
- "integrity": "sha512-q3SyEnPKbk9zh4l36PGeW2fgynKu+FpbhiUNx/yaiBUQ3V0CbACCgb9FzYWcRgI2DJlP6eI4jc8XPrCTi55YcQ==",
+ "integrity": "sha1-0n3O26yWAxyee3bx2h5LfYN2CBQ=",
"requires": {
"errno": "^0.1.1",
"graceful-fs": "^4.1.2",
@@ -4483,7 +4483,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=",
"optional": true
}
}
@@ -4511,7 +4511,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
},
"lodash.camelcase": {
"version": "4.3.0",
@@ -4541,7 +4541,7 @@
"log-symbols": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
- "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
+ "integrity": "sha1-V0Dhxdbw39pK2TI7UzIQfva0xAo=",
"requires": {
"chalk": "^2.0.1"
},
@@ -4549,7 +4549,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -4557,7 +4557,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -4572,7 +4572,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -4582,7 +4582,7 @@
"loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=",
"requires": {
"js-tokens": "^3.0.0 || ^4.0.0"
}
@@ -4598,7 +4598,7 @@
"magic-string": {
"version": "0.22.5",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz",
- "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==",
+ "integrity": "sha1-jpz1r930Q4XB2lvCpqDb0QsDZX4=",
"requires": {
"vlq": "^0.2.2"
}
@@ -4633,7 +4633,7 @@
"mdn-data": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz",
- "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA=="
+ "integrity": "sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE="
},
"merge-source-map": {
"version": "1.0.4",
@@ -4646,12 +4646,12 @@
"merge2": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz",
- "integrity": "sha512-bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg=="
+ "integrity": "sha1-AyEuPajYbE2FI869YxgZNBT5TjQ="
},
"miller-rabin": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
- "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "integrity": "sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=",
"requires": {
"bn.js": "^4.0.0",
"brorand": "^1.0.1"
@@ -4660,18 +4660,18 @@
"mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=",
"optional": true
},
"mime-db": {
"version": "1.33.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
- "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
+ "integrity": "sha1-o0kgUKXLm2NFBUHjnZeI0icng9s="
},
"mime-types": {
"version": "2.1.18",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
- "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
+ "integrity": "sha1-bzI/YKg9ERRvgx/xH9ZuL+VQO7g=",
"requires": {
"mime-db": "~1.33.0"
}
@@ -4679,12 +4679,12 @@
"mimic-fn": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
- "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
+ "integrity": "sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI="
},
"minimalistic-assert": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
- "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
+ "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc="
},
"minimalistic-crypto-utils": {
"version": "1.0.1",
@@ -4694,7 +4694,7 @@
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -4707,7 +4707,7 @@
"mixin-deep": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
- "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
+ "integrity": "sha1-pJ5yaNzhoNlpjkUybFYm3zVD0P4=",
"requires": {
"for-in": "^1.0.2",
"is-extendable": "^1.0.1"
@@ -4716,7 +4716,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -4739,12 +4739,12 @@
"nan": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
- "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA=="
+ "integrity": "sha1-ltDNYQ69WNS03pzAxoKM2pnHVI8="
},
"nanomatch": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "integrity": "sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -4772,24 +4772,24 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"nice-try": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz",
- "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA=="
+ "integrity": "sha1-2Tli9sUvLBVYwPvabVEoGfHv4cQ="
},
"node-forge": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz",
- "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ=="
+ "integrity": "sha1-bBUsNFzhHFL0ZcKr2VfoY5zWdN8="
},
"node-libs-browser": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz",
- "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==",
+ "integrity": "sha1-X5QmPUBPbkR2fXJpAf/wVHjWAN8=",
"requires": {
"assert": "^1.1.1",
"browserify-zlib": "^0.2.0",
@@ -4819,7 +4819,7 @@
"node-releases": {
"version": "1.0.0-alpha.10",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.0.0-alpha.10.tgz",
- "integrity": "sha512-BSQrRgOfN6L/MoKIa7pRUc7dHvflCXMcqyTBvphixcSsgJTuUd24vAFONuNfVsuwTyz28S1HEc9XN6ZKylk4Hg==",
+ "integrity": "sha1-YcjV+bWy4F2E66lB0FtvUgL2iio=",
"requires": {
"semver": "^5.3.0"
}
@@ -4908,12 +4908,12 @@
"object-inspect": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz",
- "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw=="
+ "integrity": "sha1-N/+xDnGtrzdI0F9xO0yUUvQCy8Q="
},
"object-keys": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
- "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag=="
+ "integrity": "sha1-CcU4VTd1dTEMymL1W7M0q/97PtI="
},
"object-visit": {
"version": "1.0.1",
@@ -4984,7 +4984,7 @@
"opn": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
- "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+ "integrity": "sha1-ZIcVZchjh18FLP31PT48ta21Oxw=",
"requires": {
"is-wsl": "^1.1.0"
}
@@ -5012,7 +5012,7 @@
"ora": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/ora/-/ora-2.1.0.tgz",
- "integrity": "sha512-hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==",
+ "integrity": "sha1-bK8oMOuSSUGGHsU6FzeZ4Ai1Hls=",
"requires": {
"chalk": "^2.3.1",
"cli-cursor": "^2.1.0",
@@ -5030,7 +5030,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5038,7 +5038,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5061,7 +5061,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -5086,12 +5086,12 @@
"pako": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
- "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg=="
+ "integrity": "sha1-AQEhG6pwxLykoPY/Igbpe3368lg="
},
"parcel-bundler": {
"version": "1.9.7",
"resolved": "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.9.7.tgz",
- "integrity": "sha512-x+RiXe/C+aOoFuw+acH/NKjKmUJ/2zbFWFUS/KE5jBk2ErsN0Dc3OxLpmEaeIMU4oMPWFeNm5mRXcXdeUwf7GA==",
+ "integrity": "sha1-XNAIUN6gJU03cAXVWrS/YEKborw=",
"requires": {
"ansi-to-html": "^0.6.4",
"babel-code-frame": "^6.26.0",
@@ -5157,7 +5157,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5175,7 +5175,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -5202,7 +5202,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -5211,7 +5211,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5226,7 +5226,7 @@
"cssnano": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.0.5.tgz",
- "integrity": "sha512-P2O0sz/YAAzqZVsSWOrbliPCr0c6abwVNQmFZ48AgejN/GbzwEf6IVFGQAj0UKHC+crv60wUAPQocAnDmeWlkg==",
+ "integrity": "sha1-h4m1/b574F2KD35FxMeJ6+cS9ao=",
"requires": {
"cosmiconfig": "^5.0.0",
"cssnano-preset-default": "^4.0.0",
@@ -5237,7 +5237,7 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"expand-brackets": {
"version": "2.1.4",
@@ -5308,7 +5308,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -5318,14 +5318,14 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -5384,7 +5384,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -5392,7 +5392,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -5400,7 +5400,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -5446,7 +5446,7 @@
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -5455,7 +5455,7 @@
"json5": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=",
"requires": {
"minimist": "^1.2.0"
}
@@ -5463,12 +5463,12 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -5493,7 +5493,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -5503,7 +5503,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"strip-ansi": {
"version": "4.0.0",
@@ -5516,7 +5516,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -5526,7 +5526,7 @@
"parse-asn1": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
- "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
+ "integrity": "sha1-9r8pOBgzK9DatU77Fgh3JHRebKg=",
"requires": {
"asn1.js": "^4.0.0",
"browserify-aes": "^1.0.0",
@@ -5577,12 +5577,12 @@
"path-parse": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
+ "integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw="
},
"pbkdf2": {
"version": "3.0.16",
"resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz",
- "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==",
+ "integrity": "sha1-dAQgjsawG2LYW/g4U6gGT42cKlw=",
"requires": {
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
@@ -5610,7 +5610,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -5691,7 +5691,7 @@
"postcss-filter-plugins": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz",
- "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==",
+ "integrity": "sha1-giRf34IzcEFkXkdxFNjlk6oYuOw=",
"requires": {
"postcss": "^5.0.4"
}
@@ -5775,7 +5775,7 @@
"postcss-modules": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.3.2.tgz",
- "integrity": "sha512-QujH5ZpPtr1fBWTKDa43Hx45gm7p19aEtHaAtkMCBZZiB/D5za2wXSMtAf94tDUZHF3F5KZcTXISUNqgEQRiDw==",
+ "integrity": "sha1-CmFrhDh/H2DdKKAfWXaH6Ft7hIE=",
"requires": {
"css-modules-loader-core": "^1.1.0",
"generic-names": "^1.0.3",
@@ -5787,7 +5787,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5795,7 +5795,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5810,7 +5810,7 @@
"postcss": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.2.tgz",
- "integrity": "sha512-fmaUY5370keLUTx+CnwRxtGiuFTcNBLQBqr1oE3WZ/euIYmGAo0OAgOhVJ3ByDnVmOR3PK+0V9VebzfjRIUcqw==",
+ "integrity": "sha1-e1oQneNWgE4n+VqWC+8OTVvJuxg=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -5820,12 +5820,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -5844,7 +5844,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5852,7 +5852,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5867,7 +5867,7 @@
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -5877,12 +5877,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -5901,7 +5901,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5909,7 +5909,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5924,7 +5924,7 @@
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -5934,12 +5934,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -5958,7 +5958,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -5966,7 +5966,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -5981,7 +5981,7 @@
"postcss": {
"version": "6.0.22",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
+ "integrity": "sha1-4jt4MUkFw7kMvWFwISHnp4hI8qM=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -5991,12 +5991,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6024,7 +6024,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6032,7 +6032,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6047,7 +6047,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6057,12 +6057,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6083,7 +6083,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6091,7 +6091,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6106,7 +6106,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6116,12 +6116,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6142,7 +6142,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6150,7 +6150,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6165,7 +6165,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6175,12 +6175,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6200,7 +6200,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6208,7 +6208,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6223,7 +6223,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6233,12 +6233,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6258,7 +6258,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6266,7 +6266,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6281,7 +6281,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6291,12 +6291,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6315,7 +6315,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6323,7 +6323,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6338,7 +6338,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6348,12 +6348,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6383,7 +6383,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -6391,7 +6391,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -6406,7 +6406,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -6416,12 +6416,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -6513,7 +6513,7 @@
"posthtml": {
"version": "0.11.3",
"resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.11.3.tgz",
- "integrity": "sha512-quMHnDckt2DQ9lRi6bYLnuyBDnVzK+McHa8+ar4kTdYbWEo/92hREOu3h70ZirudOOp/my2b3r0m5YtxY52yrA==",
+ "integrity": "sha1-F+opIbBVW3RV8zyXe9Fti4y3Tyc=",
"requires": {
"object-assign": "^4.1.1",
"posthtml-parser": "^0.3.3",
@@ -6523,7 +6523,7 @@
"posthtml-parser": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.3.3.tgz",
- "integrity": "sha512-H/Z/yXGwl49A7hYQLV1iQ3h87NE0aZ/PMZhFwhw3lKeCAN+Ti4idrHvVvh4/GX10I7u77aQw+QB4vV5/Lzvv5A==",
+ "integrity": "sha1-P+mG/KnwDA8QnXMbpZCxkvJud20=",
"requires": {
"htmlparser2": "^3.9.2",
"isobject": "^2.1.0",
@@ -6535,7 +6535,7 @@
"posthtml-parser": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.4.1.tgz",
- "integrity": "sha512-h7vXIQ21Ikz2w5wPClPakNP6mJeJCK6BT0GpqnQrNNABdR7/TchNlFyryL1Bz6Ww53YWCKkr6tdZuHlxY1AVdQ==",
+ "integrity": "sha1-lbeP73Zvu+Cm+GG26VWCvD0f+TM=",
"requires": {
"htmlparser2": "^3.9.2",
"object-assign": "^4.1.1"
@@ -6544,7 +6544,7 @@
"posthtml-render": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.1.4.tgz",
- "integrity": "sha512-jL6eFIzoN3xUEvbo33OAkSDE2VIKU4JQ1wENOows1DpfnrdapR/K3Q1/fB43Mq7wQlcSgRm23nFrvoioufM7eA=="
+ "integrity": "sha1-ldrAmJL08YP61ayCPwj0LAJWVR4="
},
"prelude-ls": {
"version": "1.1.2",
@@ -6559,7 +6559,7 @@
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
- "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="
+ "integrity": "sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8="
},
"process": {
"version": "0.11.10",
@@ -6569,12 +6569,12 @@
"process-nextick-args": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
- "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
+ "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o="
},
"promise": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
- "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
+ "integrity": "sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=",
"optional": true,
"requires": {
"asap": "~2.0.3"
@@ -6599,7 +6599,7 @@
"public-encrypt": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz",
- "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==",
+ "integrity": "sha1-RuuRByBr9zSJ+LhbadkTNMZhCZQ=",
"requires": {
"bn.js": "^4.1.0",
"browserify-rsa": "^4.0.0",
@@ -6621,7 +6621,7 @@
"qs": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
+ "integrity": "sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=",
"optional": true
},
"query-string": {
@@ -6663,7 +6663,7 @@
"randombytes": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
- "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
+ "integrity": "sha1-0wLFIpSFiISKjTAMkytEwkIx2oA=",
"requires": {
"safe-buffer": "^5.1.0"
}
@@ -6671,7 +6671,7 @@
"randomfill": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
- "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "integrity": "sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=",
"requires": {
"randombytes": "^2.0.5",
"safe-buffer": "^5.1.0"
@@ -6685,7 +6685,7 @@
"readable-stream": {
"version": "2.3.6",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
- "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
+ "integrity": "sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=",
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -6735,17 +6735,17 @@
"regenerate": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
- "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg=="
+ "integrity": "sha1-SoVuxLVuQHfFV1icroXnpMiGmhE="
},
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
+ "integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk="
},
"regenerator-transform": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
- "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
+ "integrity": "sha1-HkmWg3Ix2ot/PPQRTXG1aRoGgN0=",
"requires": {
"babel-runtime": "^6.18.0",
"babel-types": "^6.19.0",
@@ -6755,7 +6755,7 @@
"regex-not": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "integrity": "sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=",
"requires": {
"extend-shallow": "^3.0.2",
"safe-regex": "^1.1.0"
@@ -6810,7 +6810,7 @@
"request": {
"version": "2.87.0",
"resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz",
- "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==",
+ "integrity": "sha1-MvACNc0I1IK00NaNuTqCnA7VdW4=",
"optional": true,
"requires": {
"aws-sign2": "~0.7.0",
@@ -6838,7 +6838,7 @@
"resolve": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz",
- "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==",
+ "integrity": "sha1-gvHsGaQjrB+9CAsLqwa6NuhKeiY=",
"requires": {
"path-parse": "^1.0.5"
}
@@ -6860,7 +6860,7 @@
"ret": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
+ "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w="
},
"rgb-regex": {
"version": "1.0.1",
@@ -6875,7 +6875,7 @@
"ripemd160": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
- "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
"requires": {
"hash-base": "^3.0.0",
"inherits": "^2.0.1"
@@ -6884,7 +6884,7 @@
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
},
"safe-regex": {
"version": "1.1.0",
@@ -6897,13 +6897,13 @@
"safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=",
"optional": true
},
"safer-eval": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/safer-eval/-/safer-eval-1.2.3.tgz",
- "integrity": "sha512-nDwXOhiheoaBT6op02n8wzsshjLXHhh4YAeqsDEoVmy1k2+lGv/ENLsGaWqkaKArUkUx48VO12/ZPa3sI/OEqQ==",
+ "integrity": "sha1-c7p0o0vIoH1qRBNcgV/Rio7r56A=",
"requires": {
"clones": "^1.1.0"
}
@@ -6911,17 +6911,17 @@
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
- "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+ "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk="
},
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="
+ "integrity": "sha1-3Eu8emyp2Rbe5dQ1FvAJK1j3uKs="
},
"send": {
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
- "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+ "integrity": "sha1-bsyh4PjBVtFBWXVZhI32RzCmu8E=",
"requires": {
"debug": "2.6.9",
"depd": "~1.1.2",
@@ -6941,14 +6941,14 @@
"mime": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="
+ "integrity": "sha1-Eh+evEnjdm8xGnbh+hyAA8SwOqY="
}
}
},
"serialize-to-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.1.tgz",
- "integrity": "sha512-TK6d30GNkOLeFDPuP6Jfy1Q1V31GxzppYTt2lzr8KWmIUKomFj+260QP5o4AhHLu0pr6urgyS8i/Z1PqurjBoA==",
+ "integrity": "sha1-Lof2H5OIJtJMRjp8vQ3Skp7DgAg=",
"requires": {
"js-beautify": "^1.7.5",
"safer-eval": "^1.2.3"
@@ -6957,7 +6957,7 @@
"serve-static": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
- "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+ "integrity": "sha1-CV6Ecv1bRiN9tQzkhqQ/S4bGzsE=",
"requires": {
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
@@ -6973,7 +6973,7 @@
"set-value": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
- "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
+ "integrity": "sha1-ca5KiPD+77v1LR6mBPP7MV67YnQ=",
"requires": {
"extend-shallow": "^2.0.1",
"is-extendable": "^0.1.1",
@@ -6999,12 +6999,12 @@
"setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
- "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
+ "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY="
},
"sha.js": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -7052,7 +7052,7 @@
"is-arrayish": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM="
}
}
},
@@ -7064,7 +7064,7 @@
"snapdragon": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "integrity": "sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=",
"requires": {
"base": "^0.11.1",
"debug": "^2.2.0",
@@ -7097,7 +7097,7 @@
"snapdragon-node": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "integrity": "sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=",
"requires": {
"define-property": "^1.0.0",
"isobject": "^3.0.0",
@@ -7115,7 +7115,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -7123,7 +7123,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -7131,7 +7131,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -7146,14 +7146,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"snapdragon-util": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "integrity": "sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=",
"requires": {
"kind-of": "^3.2.0"
}
@@ -7174,7 +7174,7 @@
"source-map-resolve": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
- "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
+ "integrity": "sha1-cuLMNAlVQ+Q7LGKyxMENSpBU8lk=",
"requires": {
"atob": "^2.1.1",
"decode-uri-component": "^0.2.0",
@@ -7186,7 +7186,7 @@
"source-map-support": {
"version": "0.4.18",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
- "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
+ "integrity": "sha1-Aoam3ovkJkEzhZTpfM6nXwosWF8=",
"requires": {
"source-map": "^0.5.6"
}
@@ -7199,7 +7199,7 @@
"split-string": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "integrity": "sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=",
"requires": {
"extend-shallow": "^3.0.0"
}
@@ -7229,12 +7229,12 @@
"stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
- "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
+ "integrity": "sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88="
},
"static-eval": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.0.tgz",
- "integrity": "sha512-6flshd3F1Gwm+Ksxq463LtFd1liC77N/PX1FVVc3OzL3hAmo2fwHFbuArkcfi7s9rTNsLEhcRmXGFZhlgy40uw==",
+ "integrity": "sha1-DoIfiSaEfe97S1DNpdVcBKmxOGQ=",
"requires": {
"escodegen": "^1.8.1"
}
@@ -7261,7 +7261,7 @@
"static-module": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz",
- "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==",
+ "integrity": "sha1-vUCrzq4z2mt6+4Sg5DKf+IUr+78=",
"requires": {
"concat-stream": "~1.6.0",
"convert-source-map": "^1.5.1",
@@ -7282,7 +7282,7 @@
"statuses": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
+ "integrity": "sha1-u3PURtonlhBu/MG2AaJT1sRr0Ic="
},
"stream-browserify": {
"version": "2.0.1",
@@ -7296,7 +7296,7 @@
"stream-http": {
"version": "2.8.3",
"resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
- "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "integrity": "sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=",
"requires": {
"builtin-status-codes": "^3.0.0",
"inherits": "^2.0.1",
@@ -7318,7 +7318,7 @@
"string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=",
"requires": {
"safe-buffer": "~5.1.0"
}
@@ -7344,7 +7344,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -7352,7 +7352,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -7362,7 +7362,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -7382,7 +7382,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -7402,12 +7402,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -7439,7 +7439,7 @@
"terser": {
"version": "3.8.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-3.8.1.tgz",
- "integrity": "sha512-FRin3gKQ0vm0xPPLuxw1FqpVgv1b2pBpYCaFb5qe6A7sD749Fnq1VbDiX3CEFM0BV0fqDzFtBfgmxhxCdzKQIg==",
+ "integrity": "sha1-y3AHCsngpxrdFp37Y8CmT8onOKw=",
"requires": {
"commander": "~2.16.0",
"source-map": "~0.6.1",
@@ -7449,17 +7449,17 @@
"commander": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz",
- "integrity": "sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew=="
+ "integrity": "sha1-8WOQWTmWzrTz7rAgsx14Uo9/ilA="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"source-map-support": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz",
- "integrity": "sha512-N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g==",
+ "integrity": "sha1-RDXO5Gsaq2K46GEM5g94gJHFHBM=",
"requires": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
@@ -7479,7 +7479,7 @@
"timers-browserify": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
- "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
+ "integrity": "sha1-HSjj0qrfHVpZlsTp+VYBzQU0gK4=",
"requires": {
"setimmediate": "^1.0.4"
}
@@ -7515,7 +7515,7 @@
"to-regex": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "integrity": "sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=",
"requires": {
"define-property": "^2.0.2",
"extend-shallow": "^3.0.2",
@@ -7545,17 +7545,17 @@
"toml": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz",
- "integrity": "sha512-O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA=="
+ "integrity": "sha1-jWg9cpV3yyhiMd/HqK/+WNMXKPs="
},
"tomlify-j0.4": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz",
- "integrity": "sha512-2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ=="
+ "integrity": "sha1-mUFNRSaMOjuL84voIUW3u6NLdHM="
},
"tough-cookie": {
"version": "2.3.4",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz",
- "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==",
+ "integrity": "sha1-7GDO44rGdQY//JelwYlwV47oNlU=",
"optional": true,
"requires": {
"punycode": "^1.4.1"
@@ -7706,7 +7706,7 @@
"upath": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
- "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw=="
+ "integrity": "sha1-NSVll+RqWB20eT0M5H+prr/J+r0="
},
"urix": {
"version": "0.1.0",
@@ -7732,12 +7732,12 @@
"use": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
+ "integrity": "sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8="
},
"util": {
"version": "0.10.4",
"resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
- "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
+ "integrity": "sha1-OqASW/5mikZy3liFfTrOJ+y3aQE=",
"requires": {
"inherits": "2.0.3"
},
@@ -7757,7 +7757,7 @@
"util.promisify": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
- "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "integrity": "sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=",
"requires": {
"define-properties": "^1.1.2",
"object.getownpropertydescriptors": "^2.0.3"
@@ -7766,18 +7766,18 @@
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
- "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==",
+ "integrity": "sha1-EsUou51Y0LkmXZovbw/ovhf/HxQ=",
"optional": true
},
"v8-compile-cache": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.0.tgz",
- "integrity": "sha512-qNdTUMaCjPs4eEnM3W9H94R3sU70YCuT+/ST7nUf+id1bVOrdjrpUaeZLqPBPRph3hsgn4a4BvwpxhHZx+oSDg=="
+ "integrity": "sha1-UmSS41/GFoZChHALcEPgG67gnwo="
},
"vendors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz",
- "integrity": "sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ=="
+ "integrity": "sha1-f8te759WI7FWvOqJ7DfWNnbyGAE="
},
"verror": {
"version": "1.10.0",
@@ -7793,7 +7793,7 @@
"vlq": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz",
- "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="
+ "integrity": "sha1-jz5DKM9jsVQMDWfhsneDhviXWyY="
},
"vm-browserify": {
"version": "0.0.4",
@@ -7819,7 +7819,7 @@
"which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=",
"requires": {
"isexe": "^2.0.0"
}
@@ -7827,7 +7827,7 @@
"ws": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz",
- "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==",
+ "integrity": "sha1-3/7xSGa46NyRM1glFNG++vlumA8=",
"requires": {
"async-limiter": "~1.0.0"
}
diff --git a/shuup/regions/npm-shrinkwrap.json b/shuup/regions/npm-shrinkwrap.json
index 910dbb0ee0..f3d8b89a08 100644
--- a/shuup/regions/npm-shrinkwrap.json
+++ b/shuup/regions/npm-shrinkwrap.json
@@ -7,7 +7,7 @@
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
- "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
+ "integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=",
"requires": {
"call-me-maybe": "^1.0.1",
"glob-to-regexp": "^0.3.0"
@@ -16,17 +16,17 @@
"@nodelib/fs.stat": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz",
- "integrity": "sha512-LAQ1d4OPfSJ/BMbI2DuizmYrrkD9JMaTdi2hQTlI53lQ4kRQPyZQRS4CYQ7O66bnBBnP/oYdRxbk++X0xuFU6A=="
+ "integrity": "sha1-UMHiJgrA7ZQ5oYHeNyWgFo1ZxIo="
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+ "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
},
"acorn": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz",
- "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ=="
+ "integrity": "sha1-8JWCkpdwanyXdpWMCvyJMKm52dg="
},
"alphanum-sort": {
"version": "1.0.2",
@@ -46,7 +46,7 @@
"ansi-to-html": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.6.tgz",
- "integrity": "sha512-90M/2sZna3OsoOEbSyXK46poFnlClBC53Rx6etNKQK7iShsX5fI5E/M9Ld6FurtLaxAWLuAPi0Jp8p3y5oAkxg==",
+ "integrity": "sha1-WKjQS4fsmoXjrSc8EqX7xxR7nEI=",
"requires": {
"entities": "^1.1.1"
}
@@ -54,7 +54,7 @@
"anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=",
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
@@ -63,7 +63,7 @@
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
"requires": {
"sprintf-js": "~1.0.2"
}
@@ -76,7 +76,7 @@
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
+ "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
},
"arr-union": {
"version": "3.1.0",
@@ -91,7 +91,7 @@
"asn1.js": {
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
- "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+ "integrity": "sha1-ucK/WAXx5kqt7tbfOiv6+1pz9aA=",
"requires": {
"bn.js": "^4.0.0",
"inherits": "^2.0.1",
@@ -134,7 +134,7 @@
"async-limiter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
- "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="
+ "integrity": "sha1-ePrtjD0HSrgfIrTphdeehzj3IPg="
},
"atob": {
"version": "2.1.1",
@@ -171,7 +171,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -202,7 +202,7 @@
"babel-core": {
"version": "6.26.3",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
- "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
+ "integrity": "sha1-suLwnjQtDwyI4vAuBneUEl51wgc=",
"requires": {
"babel-code-frame": "^6.26.0",
"babel-generator": "^6.26.0",
@@ -228,7 +228,7 @@
"babel-generator": {
"version": "6.26.1",
"resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
- "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
+ "integrity": "sha1-GERAjTuPDTWkBOp6wYDwh6YBvZA=",
"requires": {
"babel-messages": "^6.23.0",
"babel-runtime": "^6.26.0",
@@ -530,7 +530,7 @@
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.2",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
- "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
+ "integrity": "sha1-WKeThjqefKhwvcWogRF/+sJ9tvM=",
"requires": {
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-runtime": "^6.26.0",
@@ -673,7 +673,7 @@
"babel-preset-env": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
- "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
+ "integrity": "sha1-3qefpOvriDzTXasH4mDBycBN93o=",
"requires": {
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
@@ -772,7 +772,7 @@
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
+ "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"babylon-walk": {
"version": "1.0.2",
@@ -792,7 +792,7 @@
"base": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
@@ -814,7 +814,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -822,7 +822,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -830,7 +830,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -840,14 +840,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"base64-js": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
- "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="
+ "integrity": "sha1-yrHmEY8FEJXli1KBrqjBzSK/wOM="
},
"binary-extensions": {
"version": "1.11.0",
@@ -862,12 +862,12 @@
"bluebird": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
- "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
+ "integrity": "sha1-2VUfnemPH82h5oPRfukaBgLuLrk="
},
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
- "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
+ "integrity": "sha1-LN4J617jQfSEdGuwMJsyU7GxRC8="
},
"boolbase": {
"version": "1.0.0",
@@ -877,7 +877,7 @@
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
@@ -886,7 +886,7 @@
"braces": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
@@ -913,7 +913,7 @@
"brfs": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz",
- "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==",
+ "integrity": "sha1-t4ziM22BjiXuoEoJR8um1PuIScM=",
"requires": {
"quote-stream": "^1.0.1",
"resolve": "^1.1.5",
@@ -929,7 +929,7 @@
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
- "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
"requires": {
"buffer-xor": "^1.0.3",
"cipher-base": "^1.0.0",
@@ -942,7 +942,7 @@
"browserify-cipher": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
- "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=",
"requires": {
"browserify-aes": "^1.0.4",
"browserify-des": "^1.0.0",
@@ -952,7 +952,7 @@
"browserify-des": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz",
- "integrity": "sha512-zy0Cobe3hhgpiOM32Tj7KQ3Vl91m0njwsjzZQK1L+JDf11dzP9qIvjreVinsvXrgfjhStXwUWAEpB9D7Gwmayw==",
+ "integrity": "sha1-M0MSTbbXrVPiaogmMYcSvchFD5w=",
"requires": {
"cipher-base": "^1.0.1",
"des.js": "^1.0.0",
@@ -985,7 +985,7 @@
"browserify-zlib": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
- "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=",
"requires": {
"pako": "~1.0.5"
}
@@ -993,7 +993,7 @@
"browserslist": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
- "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
+ "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=",
"requires": {
"caniuse-lite": "^1.0.30000844",
"electron-to-chromium": "^1.3.47"
@@ -1017,7 +1017,7 @@
"buffer-from": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz",
- "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="
+ "integrity": "sha1-h/yqOimDWOCt5uRCz86EB0DRrQQ="
},
"buffer-xor": {
"version": "1.0.3",
@@ -1032,7 +1032,7 @@
"cache-base": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=",
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
@@ -1053,7 +1053,7 @@
"caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "integrity": "sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=",
"requires": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.0",
@@ -1064,7 +1064,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -1074,7 +1074,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
}
}
},
@@ -1093,7 +1093,7 @@
"caniuse-lite": {
"version": "1.0.30000860",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000860.tgz",
- "integrity": "sha512-6HCqcu+cCwWCY+WLL+rtAsAFt1ufvqMhA8dTfhMQhCJHYhJDhRRrh105DfjqRlTrDK3vvbEq8K0drNsJbymDtQ=="
+ "integrity": "sha1-yQLj3zzEMD9jGrx6FXmjzgphU6M="
},
"chalk": {
"version": "1.1.3",
@@ -1110,7 +1110,7 @@
"chokidar": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
- "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
+ "integrity": "sha1-NW/04rDo5D4yLRijckYLvPOszSY=",
"requires": {
"anymatch": "^2.0.0",
"async-each": "^1.0.0",
@@ -1130,7 +1130,7 @@
"cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
- "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -1139,7 +1139,7 @@
"clap": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz",
- "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==",
+ "integrity": "sha1-TzZ0WzIAhJJVf0ZBLWbVDLmbzlE=",
"requires": {
"chalk": "^1.1.3"
}
@@ -1147,7 +1147,7 @@
"class-utils": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=",
"requires": {
"arr-union": "^3.1.0",
"define-property": "^0.2.5",
@@ -1176,7 +1176,7 @@
"cli-spinners": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz",
- "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg=="
+ "integrity": "sha1-ACwZkJEtDVlYDJO9NsBW3pnkJZo="
},
"clone": {
"version": "2.1.2",
@@ -1191,7 +1191,7 @@
"coa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
- "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
+ "integrity": "sha1-8/iwsVBz411wJj+xBCyywCPbOK8=",
"requires": {
"q": "^1.1.2"
}
@@ -1208,7 +1208,7 @@
"color": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz",
- "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==",
+ "integrity": "sha1-2SC0Mo1TSjrIKV1o971LpsQnvpo=",
"requires": {
"color-convert": "^1.9.1",
"color-string": "^1.5.2"
@@ -1217,7 +1217,7 @@
"color-convert": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz",
- "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==",
+ "integrity": "sha1-SYgbj7pn3xKpa98/VsCqueeRMUc=",
"requires": {
"color-name": "1.1.1"
}
@@ -1230,7 +1230,7 @@
"color-string": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
- "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
+ "integrity": "sha1-ybvF8BtYtUkvPWhXRZy2WQziBMw=",
"requires": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
@@ -1279,12 +1279,12 @@
"command-exists": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz",
- "integrity": "sha512-doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw=="
+ "integrity": "sha1-FoKPDD/ysMWIBYYe8hG2T8FWkqg="
},
"commander": {
"version": "2.13.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz",
- "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA=="
+ "integrity": "sha1-aWS8pnaF33wfFDDFhPB9dZeIW5w="
},
"component-emitter": {
"version": "1.2.1",
@@ -1299,7 +1299,7 @@
"concat-stream": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=",
"requires": {
"buffer-from": "^1.0.0",
"inherits": "^2.0.3",
@@ -1342,7 +1342,7 @@
"core-js": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
- "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw=="
+ "integrity": "sha1-+XJgj/DOrWi4QaFqky0LGDeRgU4="
},
"core-util-is": {
"version": "1.0.2",
@@ -1352,7 +1352,7 @@
"cosmiconfig": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.5.tgz",
- "integrity": "sha512-94j37OtvxS5w7qr7Ta6dt67tWdnOxigBVN4VnSxNXFez9o18PGQ0D33SchKP17r9LAcWVTYV72G6vDayAUBFIg==",
+ "integrity": "sha1-qAnjwjBokc4Xq3A1nci99mH+LNA=",
"requires": {
"is-directory": "^0.3.1",
"js-yaml": "^3.9.0",
@@ -1373,7 +1373,7 @@
"create-ecdh": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
- "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+ "integrity": "sha1-yREbbzMEXEaX8UR4f5JUzcd8Rf8=",
"requires": {
"bn.js": "^4.1.0",
"elliptic": "^6.0.0"
@@ -1382,7 +1382,7 @@
"create-hash": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
- "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "integrity": "sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=",
"requires": {
"cipher-base": "^1.0.1",
"inherits": "^2.0.1",
@@ -1394,7 +1394,7 @@
"create-hmac": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
- "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "integrity": "sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=",
"requires": {
"cipher-base": "^1.0.3",
"create-hash": "^1.1.0",
@@ -1407,7 +1407,7 @@
"crypto-browserify": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
- "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "integrity": "sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=",
"requires": {
"browserify-cipher": "^1.0.0",
"browserify-sign": "^4.0.0",
@@ -1430,7 +1430,7 @@
"css-declaration-sorter": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-3.0.1.tgz",
- "integrity": "sha512-jH4024SHZ3e0M7ann9VxpFpH3moplRXNz9ZBqvFMZqi09Yo5ARbs2wdPH8GqN9iRTlQynrbGbraNbBxBLei85Q==",
+ "integrity": "sha1-0OMFaw/YjcHqnc7/Q1rb6ccCp/g=",
"requires": {
"postcss": "^6.0.0",
"timsort": "^0.3.0"
@@ -1455,7 +1455,7 @@
"css-tree": {
"version": "1.0.0-alpha25",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz",
- "integrity": "sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==",
+ "integrity": "sha1-G7+r+/bu708B2RCP8u3Qvi/jVZc=",
"requires": {
"mdn-data": "^1.0.0",
"source-map": "^0.5.3"
@@ -1479,7 +1479,7 @@
"cssnano": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.0.5.tgz",
- "integrity": "sha512-P2O0sz/YAAzqZVsSWOrbliPCr0c6abwVNQmFZ48AgejN/GbzwEf6IVFGQAj0UKHC+crv60wUAPQocAnDmeWlkg==",
+ "integrity": "sha1-h4m1/b574F2KD35FxMeJ6+cS9ao=",
"requires": {
"cosmiconfig": "^5.0.0",
"cssnano-preset-default": "^4.0.0",
@@ -1550,7 +1550,7 @@
"csso": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz",
- "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==",
+ "integrity": "sha1-e564vmFiiXPBsmHhadLwJACOdYs=",
"requires": {
"css-tree": "1.0.0-alpha.29"
},
@@ -1558,7 +1558,7 @@
"css-tree": {
"version": "1.0.0-alpha.29",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
- "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
+ "integrity": "sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=",
"requires": {
"mdn-data": "~1.1.0",
"source-map": "^0.5.3"
@@ -1574,7 +1574,7 @@
"deasync": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.13.tgz",
- "integrity": "sha512-/6ngYM7AapueqLtvOzjv9+11N2fHDSrkxeMF1YPE20WIfaaawiBg+HZH1E5lHrcJxlKR42t6XPOEmMmqcAsU1g==",
+ "integrity": "sha1-gVwrabvREXyuVwFSzYlWYcCfIOo=",
"requires": {
"bindings": "~1.2.1",
"nan": "^2.0.7"
@@ -1583,7 +1583,7 @@
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"requires": {
"ms": "2.0.0"
}
@@ -1630,7 +1630,7 @@
"define-property": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=",
"requires": {
"is-descriptor": "^1.0.2",
"isobject": "^3.0.1"
@@ -1639,7 +1639,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -1647,7 +1647,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -1655,7 +1655,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -1665,7 +1665,7 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
@@ -1704,7 +1704,7 @@
"diffie-hellman": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
- "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "integrity": "sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=",
"requires": {
"bn.js": "^4.1.0",
"miller-rabin": "^4.0.0",
@@ -1730,7 +1730,7 @@
"domain-browser": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
- "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
+ "integrity": "sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto="
},
"domelementtype": {
"version": "1.3.0",
@@ -1740,7 +1740,7 @@
"domhandler": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
+ "integrity": "sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=",
"requires": {
"domelementtype": "1"
}
@@ -1757,7 +1757,7 @@
"dot-prop": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
- "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
+ "integrity": "sha1-HxngwuGqDjJ5fEl5nyg3rGr2nFc=",
"requires": {
"is-obj": "^1.0.0"
}
@@ -1765,7 +1765,7 @@
"dotenv": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz",
- "integrity": "sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow=="
+ "integrity": "sha1-pTF0Wb09eauIz/bkQFemo/ux/O8="
},
"duplexer2": {
"version": "0.1.4",
@@ -1778,7 +1778,7 @@
"editorconfig": {
"version": "0.13.3",
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz",
- "integrity": "sha512-WkjsUNVCu+ITKDj73QDvi0trvpdDWdkDyHybDGSXPfekLCqwmpD7CP7iPbvBgosNuLcI96XTDwNa75JyFl7tEQ==",
+ "integrity": "sha1-5SGeWHlR1glY/ZTqmpoAjN7/GzQ=",
"requires": {
"bluebird": "^3.0.5",
"commander": "^2.9.0",
@@ -1834,7 +1834,7 @@
"error-ex": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=",
"requires": {
"is-arrayish": "^0.2.1"
}
@@ -1842,7 +1842,7 @@
"es-abstract": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
- "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
+ "integrity": "sha1-nbvdJ8aFbwABQhyhh4LXhr+KYWU=",
"requires": {
"es-to-primitive": "^1.1.1",
"function-bind": "^1.1.1",
@@ -1874,7 +1874,7 @@
"escodegen": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz",
- "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==",
+ "integrity": "sha1-264X75bI5L7bE1b0UE+kzC98t+I=",
"requires": {
"esprima": "^3.1.3",
"estraverse": "^4.2.0",
@@ -1891,7 +1891,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=",
"optional": true
}
}
@@ -1899,7 +1899,7 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"estraverse": {
"version": "4.2.0",
@@ -1924,7 +1924,7 @@
"evp_bytestokey": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
- "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "integrity": "sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=",
"requires": {
"md5.js": "^1.3.4",
"safe-buffer": "^5.1.1"
@@ -1974,7 +1974,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -1984,7 +1984,7 @@
"extglob": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=",
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -2015,7 +2015,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2023,7 +2023,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -2031,7 +2031,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -2041,7 +2041,7 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
@@ -2066,7 +2066,7 @@
"fast-glob": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz",
- "integrity": "sha512-TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==",
+ "integrity": "sha1-cXIzOKybTg4v/x1nSKKhPV7TUr8=",
"requires": {
"@mrmlnc/readdir-enhanced": "^2.2.1",
"@nodelib/fs.stat": "^1.0.1",
@@ -2084,7 +2084,7 @@
"filesize": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
- "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg=="
+ "integrity": "sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc="
},
"fill-range": {
"version": "4.0.0",
@@ -2138,7 +2138,7 @@
"fsevents": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
- "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
+ "integrity": "sha1-9B3LGvJYKvNpLaNvxVy9jhBBxCY=",
"optional": true,
"requires": {
"nan": "^2.9.2",
@@ -2600,7 +2600,7 @@
"fswatcher-child": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/fswatcher-child/-/fswatcher-child-1.0.5.tgz",
- "integrity": "sha512-T5BsoXc63WcPKLcQh77g3oJOqCHnXPp/QLuLgD9jhRBwDuOiVXL8PL6Dcy3ByfsdZmHKYQuPYN8PXEphyoS4qA==",
+ "integrity": "sha1-E00BL/p0kYl1YX4A5W5BOfNssUA=",
"requires": {
"chokidar": "^2.0.3"
}
@@ -2608,7 +2608,7 @@
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
},
"get-port": {
"version": "3.2.0",
@@ -2647,7 +2647,7 @@
"globals": {
"version": "9.18.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="
+ "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo="
},
"graceful-fs": {
"version": "4.1.11",
@@ -2666,7 +2666,7 @@
"has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=",
"requires": {
"function-bind": "^1.1.1"
}
@@ -2720,7 +2720,7 @@
"hash.js": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.4.tgz",
- "integrity": "sha512-A6RlQvvZEtFS5fLU43IDu0QUmBy+fDO9VMdTXvufKwIkt/rFfvICAViCax5fbDO4zdNzaC3/27ZhKUok5bAJyw==",
+ "integrity": "sha1-i1Dh811RvQHl7Z7OTb41Scz6Cjw=",
"requires": {
"inherits": "^2.0.3",
"minimalistic-assert": "^1.0.0"
@@ -2729,7 +2729,7 @@
"hex-color-regex": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
- "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="
+ "integrity": "sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4="
},
"hmac-drbg": {
"version": "1.0.1",
@@ -2768,7 +2768,7 @@
"htmlnano": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/htmlnano/-/htmlnano-0.1.10.tgz",
- "integrity": "sha512-eTEUzz8VdWYp+w/KUdb99kwao4reR64epUySyZkQeepcyzPQ2n2EPWzibf6QDxmkGy10Kr+CKxYqI3izSbmhJQ==",
+ "integrity": "sha1-oKVI60x2rizyQj7HolyIFzTT3qY=",
"requires": {
"cssnano": "^3.4.0",
"object-assign": "^4.0.1",
@@ -2900,7 +2900,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -3165,7 +3165,7 @@
"ieee754": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz",
- "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA=="
+ "integrity": "sha1-UL8k5bnIu5ivSWTJQc2wkY2ntgs="
},
"indexes-of": {
"version": "1.0.1",
@@ -3185,12 +3185,12 @@
"ini": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
+ "integrity": "sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc="
},
"invariant": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=",
"requires": {
"loose-envify": "^1.0.0"
}
@@ -3224,12 +3224,12 @@
"is-buffer": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
+ "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4="
},
"is-callable": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz",
- "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA=="
+ "integrity": "sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU="
},
"is-color-stop": {
"version": "1.1.0",
@@ -3260,7 +3260,7 @@
"is-descriptor": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=",
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -3270,7 +3270,7 @@
"kind-of": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
@@ -3326,7 +3326,7 @@
"is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=",
"requires": {
"isobject": "^3.0.1"
}
@@ -3342,12 +3342,12 @@
"is-resolvable": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
- "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg=="
+ "integrity": "sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg="
},
"is-svg": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
- "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
+ "integrity": "sha1-kyHb0pwhLlypnE+peUxxS8r6L3U=",
"requires": {
"html-comment-regex": "^1.1.0"
}
@@ -3360,12 +3360,12 @@
"is-url": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
- "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+ "integrity": "sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI="
},
"is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
+ "integrity": "sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0="
},
"is-wsl": {
"version": "1.1.0",
@@ -3390,12 +3390,12 @@
"js-base64": {
"version": "2.4.8",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz",
- "integrity": "sha512-hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q=="
+ "integrity": "sha1-V6mxMIiPlWg0qkDFsWW6WcdY8DM="
},
"js-beautify": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.5.tgz",
- "integrity": "sha512-9OhfAqGOrD7hoQBLJMTA+BKuKmoEtTJXzZ7WDF/9gvjtey1koVLuZqIY6c51aPDjbNdNtIXAkiWKVhziawE9Og==",
+ "integrity": "sha1-adllHvYNu2SfZVJ7U2dJUBOKeRk=",
"requires": {
"config-chain": "~1.1.5",
"editorconfig": "^0.13.2",
@@ -3411,7 +3411,7 @@
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
- "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
+ "integrity": "sha1-6u1lbsg0TxD1J8a/obbiJE3hZ9E=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -3425,7 +3425,7 @@
"json-parse-better-errors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
+ "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk="
},
"json5": {
"version": "0.5.1",
@@ -3452,7 +3452,7 @@
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
+ "integrity": "sha1-G3eTz3JZ6jj7NmHU04syYK+K5Oc="
},
"lodash.clone": {
"version": "4.5.0",
@@ -3477,7 +3477,7 @@
"log-symbols": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
- "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
+ "integrity": "sha1-V0Dhxdbw39pK2TI7UzIQfva0xAo=",
"requires": {
"chalk": "^2.0.1"
},
@@ -3485,7 +3485,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -3493,7 +3493,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -3508,7 +3508,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -3526,7 +3526,7 @@
"magic-string": {
"version": "0.22.5",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz",
- "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==",
+ "integrity": "sha1-jpz1r930Q4XB2lvCpqDb0QsDZX4=",
"requires": {
"vlq": "^0.2.2"
}
@@ -3561,7 +3561,7 @@
"mdn-data": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz",
- "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA=="
+ "integrity": "sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE="
},
"merge-source-map": {
"version": "1.0.4",
@@ -3574,12 +3574,12 @@
"merge2": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz",
- "integrity": "sha512-bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg=="
+ "integrity": "sha1-AyEuPajYbE2FI869YxgZNBT5TjQ="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -3599,14 +3599,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"miller-rabin": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
- "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "integrity": "sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=",
"requires": {
"bn.js": "^4.0.0",
"brorand": "^1.0.1"
@@ -3615,17 +3615,17 @@
"mime": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="
+ "integrity": "sha1-Eh+evEnjdm8xGnbh+hyAA8SwOqY="
},
"mimic-fn": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
- "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
+ "integrity": "sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI="
},
"minimalistic-assert": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
- "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
+ "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc="
},
"minimalistic-crypto-utils": {
"version": "1.0.1",
@@ -3635,7 +3635,7 @@
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
"requires": {
"brace-expansion": "^1.1.7"
}
@@ -3648,7 +3648,7 @@
"mixin-deep": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
- "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
+ "integrity": "sha1-pJ5yaNzhoNlpjkUybFYm3zVD0P4=",
"requires": {
"for-in": "^1.0.2",
"is-extendable": "^1.0.1"
@@ -3657,7 +3657,7 @@
"is-extendable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=",
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -3680,12 +3680,12 @@
"nan": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
- "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA=="
+ "integrity": "sha1-ltDNYQ69WNS03pzAxoKM2pnHVI8="
},
"nanomatch": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "integrity": "sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=",
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -3703,24 +3703,24 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"nice-try": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz",
- "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA=="
+ "integrity": "sha1-2Tli9sUvLBVYwPvabVEoGfHv4cQ="
},
"node-forge": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz",
- "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ=="
+ "integrity": "sha1-bBUsNFzhHFL0ZcKr2VfoY5zWdN8="
},
"node-libs-browser": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz",
- "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==",
+ "integrity": "sha1-X5QmPUBPbkR2fXJpAf/wVHjWAN8=",
"requires": {
"assert": "^1.1.1",
"browserify-zlib": "^0.2.0",
@@ -3757,7 +3757,7 @@
"node-releases": {
"version": "1.0.0-alpha.10",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.0.0-alpha.10.tgz",
- "integrity": "sha512-BSQrRgOfN6L/MoKIa7pRUc7dHvflCXMcqyTBvphixcSsgJTuUd24vAFONuNfVsuwTyz28S1HEc9XN6ZKylk4Hg==",
+ "integrity": "sha1-YcjV+bWy4F2E66lB0FtvUgL2iio=",
"requires": {
"semver": "^5.3.0"
}
@@ -3786,7 +3786,7 @@
"normalize-url": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.2.0.tgz",
- "integrity": "sha512-WvF3Myk0NhXkG8S9bygFM4IC1KOvnVJGq0QoGeoqOYOBeinBZp5ybW3QuYbTc89lkWBMM9ZBO4QGRoc0353kKA=="
+ "integrity": "sha1-mNCUivyCgp83QyD0Bf6cpVpfhWc="
},
"nth-check": {
"version": "1.0.1",
@@ -3834,12 +3834,12 @@
"object-inspect": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz",
- "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw=="
+ "integrity": "sha1-N/+xDnGtrzdI0F9xO0yUUvQCy8Q="
},
"object-keys": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
- "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag=="
+ "integrity": "sha1-CcU4VTd1dTEMymL1W7M0q/97PtI="
},
"object-visit": {
"version": "1.0.1",
@@ -3896,7 +3896,7 @@
"opn": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
- "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+ "integrity": "sha1-ZIcVZchjh18FLP31PT48ta21Oxw=",
"requires": {
"is-wsl": "^1.1.0"
}
@@ -3924,7 +3924,7 @@
"ora": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/ora/-/ora-2.1.0.tgz",
- "integrity": "sha512-hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==",
+ "integrity": "sha1-bK8oMOuSSUGGHsU6FzeZ4Ai1Hls=",
"requires": {
"chalk": "^2.3.1",
"cli-cursor": "^2.1.0",
@@ -3942,7 +3942,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -3950,7 +3950,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -3973,7 +3973,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -3998,12 +3998,12 @@
"pako": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
- "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg=="
+ "integrity": "sha1-AQEhG6pwxLykoPY/Igbpe3368lg="
},
"parcel-bundler": {
"version": "1.9.7",
"resolved": "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.9.7.tgz",
- "integrity": "sha512-x+RiXe/C+aOoFuw+acH/NKjKmUJ/2zbFWFUS/KE5jBk2ErsN0Dc3OxLpmEaeIMU4oMPWFeNm5mRXcXdeUwf7GA==",
+ "integrity": "sha1-XNAIUN6gJU03cAXVWrS/YEKborw=",
"requires": {
"ansi-to-html": "^0.6.4",
"babel-code-frame": "^6.26.0",
@@ -4069,7 +4069,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -4077,7 +4077,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -4087,7 +4087,7 @@
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=",
"requires": {
"nice-try": "^1.0.4",
"path-key": "^2.0.1",
@@ -4104,7 +4104,7 @@
"json5": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=",
"requires": {
"minimist": "^1.2.0"
}
@@ -4117,7 +4117,7 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"strip-ansi": {
"version": "4.0.0",
@@ -4130,7 +4130,7 @@
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -4140,7 +4140,7 @@
"parse-asn1": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
- "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
+ "integrity": "sha1-9r8pOBgzK9DatU77Fgh3JHRebKg=",
"requires": {
"asn1.js": "^4.0.0",
"browserify-aes": "^1.0.0",
@@ -4182,12 +4182,12 @@
"path-parse": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
+ "integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw="
},
"pbkdf2": {
"version": "3.0.16",
"resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz",
- "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==",
+ "integrity": "sha1-dAQgjsawG2LYW/g4U6gGT42cKlw=",
"requires": {
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
@@ -4209,7 +4209,7 @@
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "integrity": "sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=",
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
@@ -4219,7 +4219,7 @@
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"requires": {
"color-convert": "^1.9.0"
}
@@ -4227,7 +4227,7 @@
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
- "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -4242,12 +4242,12 @@
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"supports-color": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=",
"requires": {
"has-flag": "^3.0.0"
}
@@ -4280,7 +4280,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -4290,7 +4290,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
},
"electron-to-chromium": {
"version": "1.3.55",
@@ -4357,7 +4357,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -4378,7 +4378,7 @@
"postcss-filter-plugins": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz",
- "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==",
+ "integrity": "sha1-giRf34IzcEFkXkdxFNjlk6oYuOw=",
"requires": {
"postcss": "^5.0.4"
},
@@ -4391,7 +4391,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -4427,7 +4427,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -4448,7 +4448,7 @@
"postcss-merge-longhand": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.4.tgz",
- "integrity": "sha512-wLi2u22mSdBDBjLF8pyaPCNppOmqb+B4O0Dlt/4nUwn79EltDUJmCeCDYqo7SB2z9puOHTftnxviY4J9xS+ygQ==",
+ "integrity": "sha1-v/x8b/oUZZHJk6C7g3PWX5oG1NA=",
"requires": {
"css-color-names": "0.0.4",
"postcss": "^6.0.0",
@@ -4472,7 +4472,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -4482,7 +4482,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
},
"electron-to-chromium": {
"version": "1.3.55",
@@ -4677,7 +4677,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -4709,7 +4709,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -4719,7 +4719,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
},
"electron-to-chromium": {
"version": "1.3.55",
@@ -4793,7 +4793,7 @@
"postcss": {
"version": "5.2.18",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
- "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+ "integrity": "sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=",
"requires": {
"chalk": "^1.1.3",
"js-base64": "^2.1.9",
@@ -4814,7 +4814,7 @@
"posthtml": {
"version": "0.11.3",
"resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.11.3.tgz",
- "integrity": "sha512-quMHnDckt2DQ9lRi6bYLnuyBDnVzK+McHa8+ar4kTdYbWEo/92hREOu3h70ZirudOOp/my2b3r0m5YtxY52yrA==",
+ "integrity": "sha1-F+opIbBVW3RV8zyXe9Fti4y3Tyc=",
"requires": {
"object-assign": "^4.1.1",
"posthtml-parser": "^0.3.3",
@@ -4832,7 +4832,7 @@
"posthtml-parser": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.3.3.tgz",
- "integrity": "sha512-H/Z/yXGwl49A7hYQLV1iQ3h87NE0aZ/PMZhFwhw3lKeCAN+Ti4idrHvVvh4/GX10I7u77aQw+QB4vV5/Lzvv5A==",
+ "integrity": "sha1-P+mG/KnwDA8QnXMbpZCxkvJud20=",
"requires": {
"htmlparser2": "^3.9.2",
"isobject": "^2.1.0",
@@ -4844,7 +4844,7 @@
"posthtml-parser": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.4.1.tgz",
- "integrity": "sha512-h7vXIQ21Ikz2w5wPClPakNP6mJeJCK6BT0GpqnQrNNABdR7/TchNlFyryL1Bz6Ww53YWCKkr6tdZuHlxY1AVdQ==",
+ "integrity": "sha1-lbeP73Zvu+Cm+GG26VWCvD0f+TM=",
"requires": {
"htmlparser2": "^3.9.2",
"object-assign": "^4.1.1"
@@ -4853,7 +4853,7 @@
"posthtml-render": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.1.4.tgz",
- "integrity": "sha512-jL6eFIzoN3xUEvbo33OAkSDE2VIKU4JQ1wENOows1DpfnrdapR/K3Q1/fB43Mq7wQlcSgRm23nFrvoioufM7eA=="
+ "integrity": "sha1-ldrAmJL08YP61ayCPwj0LAJWVR4="
},
"prelude-ls": {
"version": "1.1.2",
@@ -4868,7 +4868,7 @@
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
- "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="
+ "integrity": "sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8="
},
"process": {
"version": "0.11.10",
@@ -4878,7 +4878,7 @@
"process-nextick-args": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
- "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
+ "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o="
},
"proto-list": {
"version": "1.2.4",
@@ -4893,7 +4893,7 @@
"public-encrypt": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz",
- "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==",
+ "integrity": "sha1-RuuRByBr9zSJ+LhbadkTNMZhCZQ=",
"requires": {
"bn.js": "^4.1.0",
"browserify-rsa": "^4.0.0",
@@ -4946,7 +4946,7 @@
"randombytes": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
- "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
+ "integrity": "sha1-0wLFIpSFiISKjTAMkytEwkIx2oA=",
"requires": {
"safe-buffer": "^5.1.0"
}
@@ -4954,7 +4954,7 @@
"randomfill": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
- "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "integrity": "sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=",
"requires": {
"randombytes": "^2.0.5",
"safe-buffer": "^5.1.0"
@@ -4968,7 +4968,7 @@
"readable-stream": {
"version": "2.3.6",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
- "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
+ "integrity": "sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=",
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -4993,7 +4993,7 @@
"reduce-css-calc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.4.tgz",
- "integrity": "sha512-i/vWQbyd3aJRmip9OVSN9V6nIjLf/gg/ctxb0CpvHWtcRysFl/ngDBQD+rqavxdw/doScA3GMBXhzkHQ4GCzFQ==",
+ "integrity": "sha1-wg6c2oRFrXPU/0vqlgxvg1N5Fwg=",
"requires": {
"css-unit-converter": "^1.1.1",
"postcss-value-parser": "^3.3.0"
@@ -5017,17 +5017,17 @@
"regenerate": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
- "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg=="
+ "integrity": "sha1-SoVuxLVuQHfFV1icroXnpMiGmhE="
},
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
+ "integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk="
},
"regenerator-transform": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
- "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
+ "integrity": "sha1-HkmWg3Ix2ot/PPQRTXG1aRoGgN0=",
"requires": {
"babel-runtime": "^6.18.0",
"babel-types": "^6.19.0",
@@ -5037,7 +5037,7 @@
"regex-not": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "integrity": "sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=",
"requires": {
"extend-shallow": "^3.0.2",
"safe-regex": "^1.1.0"
@@ -5099,7 +5099,7 @@
"resolve": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz",
- "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==",
+ "integrity": "sha1-gvHsGaQjrB+9CAsLqwa6NuhKeiY=",
"requires": {
"path-parse": "^1.0.5"
}
@@ -5121,7 +5121,7 @@
"ret": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
+ "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w="
},
"rgb-regex": {
"version": "1.0.1",
@@ -5136,7 +5136,7 @@
"ripemd160": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
- "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
"requires": {
"hash-base": "^3.0.0",
"inherits": "^2.0.1"
@@ -5145,7 +5145,7 @@
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
},
"safe-regex": {
"version": "1.1.0",
@@ -5158,7 +5158,7 @@
"safer-eval": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/safer-eval/-/safer-eval-1.2.3.tgz",
- "integrity": "sha512-nDwXOhiheoaBT6op02n8wzsshjLXHhh4YAeqsDEoVmy1k2+lGv/ENLsGaWqkaKArUkUx48VO12/ZPa3sI/OEqQ==",
+ "integrity": "sha1-c7p0o0vIoH1qRBNcgV/Rio7r56A=",
"requires": {
"clones": "^1.1.0"
}
@@ -5166,17 +5166,17 @@
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
- "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+ "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk="
},
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="
+ "integrity": "sha1-3Eu8emyp2Rbe5dQ1FvAJK1j3uKs="
},
"send": {
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
- "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+ "integrity": "sha1-bsyh4PjBVtFBWXVZhI32RzCmu8E=",
"requires": {
"debug": "2.6.9",
"depd": "~1.1.2",
@@ -5196,7 +5196,7 @@
"serialize-to-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.1.tgz",
- "integrity": "sha512-TK6d30GNkOLeFDPuP6Jfy1Q1V31GxzppYTt2lzr8KWmIUKomFj+260QP5o4AhHLu0pr6urgyS8i/Z1PqurjBoA==",
+ "integrity": "sha1-Lof2H5OIJtJMRjp8vQ3Skp7DgAg=",
"requires": {
"js-beautify": "^1.7.5",
"safer-eval": "^1.2.3"
@@ -5205,7 +5205,7 @@
"serve-static": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
- "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+ "integrity": "sha1-CV6Ecv1bRiN9tQzkhqQ/S4bGzsE=",
"requires": {
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
@@ -5221,7 +5221,7 @@
"set-value": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
- "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
+ "integrity": "sha1-ca5KiPD+77v1LR6mBPP7MV67YnQ=",
"requires": {
"extend-shallow": "^2.0.1",
"is-extendable": "^0.1.1",
@@ -5247,12 +5247,12 @@
"setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
- "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
+ "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY="
},
"sha.js": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
- "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
@@ -5300,7 +5300,7 @@
"is-arrayish": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM="
}
}
},
@@ -5312,7 +5312,7 @@
"snapdragon": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "integrity": "sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=",
"requires": {
"base": "^0.11.1",
"debug": "^2.2.0",
@@ -5345,7 +5345,7 @@
"snapdragon-node": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "integrity": "sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=",
"requires": {
"define-property": "^1.0.0",
"isobject": "^3.0.0",
@@ -5363,7 +5363,7 @@
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -5371,7 +5371,7 @@
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
@@ -5379,7 +5379,7 @@
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -5389,14 +5389,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"snapdragon-util": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "integrity": "sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=",
"requires": {
"kind-of": "^3.2.0"
}
@@ -5417,7 +5417,7 @@
"source-map-resolve": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
- "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
+ "integrity": "sha1-cuLMNAlVQ+Q7LGKyxMENSpBU8lk=",
"requires": {
"atob": "^2.1.1",
"decode-uri-component": "^0.2.0",
@@ -5429,7 +5429,7 @@
"source-map-support": {
"version": "0.4.18",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
- "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
+ "integrity": "sha1-Aoam3ovkJkEzhZTpfM6nXwosWF8=",
"requires": {
"source-map": "^0.5.6"
}
@@ -5442,7 +5442,7 @@
"split-string": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "integrity": "sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=",
"requires": {
"extend-shallow": "^3.0.0"
}
@@ -5455,12 +5455,12 @@
"stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
- "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
+ "integrity": "sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88="
},
"static-eval": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.0.tgz",
- "integrity": "sha512-6flshd3F1Gwm+Ksxq463LtFd1liC77N/PX1FVVc3OzL3hAmo2fwHFbuArkcfi7s9rTNsLEhcRmXGFZhlgy40uw==",
+ "integrity": "sha1-DoIfiSaEfe97S1DNpdVcBKmxOGQ=",
"requires": {
"escodegen": "^1.8.1"
}
@@ -5487,7 +5487,7 @@
"static-module": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz",
- "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==",
+ "integrity": "sha1-vUCrzq4z2mt6+4Sg5DKf+IUr+78=",
"requires": {
"concat-stream": "~1.6.0",
"convert-source-map": "^1.5.1",
@@ -5508,7 +5508,7 @@
"statuses": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
+ "integrity": "sha1-u3PURtonlhBu/MG2AaJT1sRr0Ic="
},
"stream-browserify": {
"version": "2.0.1",
@@ -5522,7 +5522,7 @@
"stream-http": {
"version": "2.8.3",
"resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
- "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "integrity": "sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=",
"requires": {
"builtin-status-codes": "^3.0.0",
"inherits": "^2.0.1",
@@ -5539,7 +5539,7 @@
"string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=",
"requires": {
"safe-buffer": "~5.1.0"
}
@@ -5565,7 +5565,7 @@
"browserslist": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.0.1.tgz",
- "integrity": "sha512-QqiiIWchEIkney3wY53/huI7ZErouNAdvOkjorUALAwRcu3tEwOV3Sh6He0DnP38mz1JjBpCBb50jQBmaYuHPw==",
+ "integrity": "sha1-YcBc4qWEPH2WFmQIvCPVi1QW6Bg=",
"requires": {
"caniuse-lite": "^1.0.30000865",
"electron-to-chromium": "^1.3.52",
@@ -5575,7 +5575,7 @@
"caniuse-lite": {
"version": "1.0.30000874",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz",
- "integrity": "sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w=="
+ "integrity": "sha1-pkGx8cQg1Y2bEykg72uoe73NIiM="
},
"electron-to-chromium": {
"version": "1.3.55",
@@ -5602,7 +5602,7 @@
"svgo": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
- "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
+ "integrity": "sha1-cEA2TAYqBTirrP9EAc6momp6OJo=",
"requires": {
"coa": "~2.0.1",
"colors": "~1.1.2",
@@ -5623,7 +5623,7 @@
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
+ "integrity": "sha1-LnhEFka9RoLpY/IrbpKCPDCcYtw=",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -5634,7 +5634,7 @@
"terser": {
"version": "3.8.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-3.8.1.tgz",
- "integrity": "sha512-FRin3gKQ0vm0xPPLuxw1FqpVgv1b2pBpYCaFb5qe6A7sD749Fnq1VbDiX3CEFM0BV0fqDzFtBfgmxhxCdzKQIg==",
+ "integrity": "sha1-y3AHCsngpxrdFp37Y8CmT8onOKw=",
"requires": {
"commander": "~2.16.0",
"source-map": "~0.6.1",
@@ -5644,17 +5644,17 @@
"commander": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz",
- "integrity": "sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew=="
+ "integrity": "sha1-8WOQWTmWzrTz7rAgsx14Uo9/ilA="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM="
},
"source-map-support": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz",
- "integrity": "sha512-N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g==",
+ "integrity": "sha1-RDXO5Gsaq2K46GEM5g94gJHFHBM=",
"requires": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
@@ -5674,7 +5674,7 @@
"timers-browserify": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
- "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
+ "integrity": "sha1-HSjj0qrfHVpZlsTp+VYBzQU0gK4=",
"requires": {
"setimmediate": "^1.0.4"
}
@@ -5710,7 +5710,7 @@
"to-regex": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "integrity": "sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=",
"requires": {
"define-property": "^2.0.2",
"extend-shallow": "^3.0.2",
@@ -5730,12 +5730,12 @@
"toml": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz",
- "integrity": "sha512-O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA=="
+ "integrity": "sha1-jWg9cpV3yyhiMd/HqK/+WNMXKPs="
},
"tomlify-j0.4": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz",
- "integrity": "sha512-2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ=="
+ "integrity": "sha1-mUFNRSaMOjuL84voIUW3u6NLdHM="
},
"trim-right": {
"version": "1.0.1",
@@ -5862,7 +5862,7 @@
"upath": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
- "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw=="
+ "integrity": "sha1-NSVll+RqWB20eT0M5H+prr/J+r0="
},
"urix": {
"version": "0.1.0",
@@ -5888,7 +5888,7 @@
"use": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",
- "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==",
+ "integrity": "sha1-FHFr8D/f79AwQK71jYtLhfOnxUQ=",
"requires": {
"kind-of": "^6.0.2"
},
@@ -5896,14 +5896,14 @@
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+ "integrity": "sha1-ARRrNqYhjmTljzqNZt5df8b20FE="
}
}
},
"util": {
"version": "0.10.4",
"resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
- "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
+ "integrity": "sha1-OqASW/5mikZy3liFfTrOJ+y3aQE=",
"requires": {
"inherits": "2.0.3"
}
@@ -5916,7 +5916,7 @@
"util.promisify": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
- "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "integrity": "sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=",
"requires": {
"define-properties": "^1.1.2",
"object.getownpropertydescriptors": "^2.0.3"
@@ -5925,17 +5925,17 @@
"v8-compile-cache": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.0.tgz",
- "integrity": "sha512-qNdTUMaCjPs4eEnM3W9H94R3sU70YCuT+/ST7nUf+id1bVOrdjrpUaeZLqPBPRph3hsgn4a4BvwpxhHZx+oSDg=="
+ "integrity": "sha1-UmSS41/GFoZChHALcEPgG67gnwo="
},
"vendors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz",
- "integrity": "sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ=="
+ "integrity": "sha1-f8te759WI7FWvOqJ7DfWNnbyGAE="
},
"vlq": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz",
- "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="
+ "integrity": "sha1-jz5DKM9jsVQMDWfhsneDhviXWyY="
},
"vm-browserify": {
"version": "0.0.4",
@@ -5961,7 +5961,7 @@
"which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=",
"requires": {
"isexe": "^2.0.0"
}
@@ -5969,7 +5969,7 @@
"ws": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz",
- "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==",
+ "integrity": "sha1-3/7xSGa46NyRM1glFNG++vlumA8=",
"requires": {
"async-limiter": "~1.0.0"
}
diff --git a/shuup_tests/browser/admin/test_menu.py b/shuup_tests/browser/admin/test_menu.py
index 37ac2b6ad3..a0d26120de 100644
--- a/shuup_tests/browser/admin/test_menu.py
+++ b/shuup_tests/browser/admin/test_menu.py
@@ -82,11 +82,29 @@ def test_menu_toggle(browser, admin_user, live_server, settings):
wait_until_condition(browser, lambda x: x.is_text_present("Welcome!"))
wait_until_condition(browser, lambda x: x.is_text_present("Quicklinks"))
- browser.find_by_css("#menu-button").first.click()
- url = live_server + "/sa"
- browser.visit(url)
- assert browser.find_by_css(".desktop-menu-closed")
+ wait_until_condition(browser, lambda x: x.is_element_present_by_css("#menu-button"))
+ # Close menu
+ try:
+ browser.find_by_css("#menu-button").first.click()
+ except selenium.common.exceptions.TimeoutException as e:
+ browser.find_by_css("#menu-button").first.click()
+ wait_until_condition(browser, lambda x: x.is_element_present_by_css(".desktop-menu-closed"))
+
+ url = reverse("shuup_admin:order.list")
+ browser.visit("%s%s" % (live_server, url))
+ wait_until_condition(browser, condition=lambda x: x.is_text_present("Orders"))
+
+ # Should be closed after page load
+ wait_until_condition(browser, lambda x: x.is_element_present_by_css(".desktop-menu-closed"))
+
+ # Open menu
browser.find_by_css("#menu-button").first.click()
- browser.visit(url)
- assert not browser.find_by_css(".desktop-menu-closed")
+ wait_until_condition(browser, lambda x: not x.is_element_present_by_css(".desktop-menu-closed"))
+
+ url = reverse("shuup_admin:shop_product.list")
+ browser.visit("%s%s" % (live_server, url))
+ wait_until_condition(browser, condition=lambda x: x.is_text_present("Products"))
+
+ # Should be still open after page load
+ wait_until_condition(browser, lambda x: not x.is_element_present_by_css(".desktop-menu-closed"))
|
pallets__click-123 | Automatically dedent help text of options?
```
import click
@click.command()
@click.option('--foo', help="""
heyho
i am
multiline
""")
def cli(foo):
click.echo(foo)
cli()
```
This currently does not remove the leading whitespace from each paragraph in the help text for `--foo`:
```
untitaker@untibox:~/projects/click, branch master
$ python lol.py --help
Usage: lol.py [OPTIONS]
Options:
--foo TEXT
heyho
i am
multiline
--help Show this message and exit.
```
Although i am not sure if help texts for options are even supposed to get that
complex.
| [
{
"content": "import sys\nimport inspect\n\nfrom functools import update_wrapper\n\nfrom ._compat import iteritems\nfrom .utils import echo\n\n\ndef pass_context(f):\n \"\"\"Marks a callback as wanting to receive the current context\n object as first argument.\n \"\"\"\n f.__click_pass_context__ = T... | [
{
"content": "import sys\nimport inspect\n\nfrom functools import update_wrapper\n\nfrom ._compat import iteritems\nfrom .utils import echo\n\n\ndef pass_context(f):\n \"\"\"Marks a callback as wanting to receive the current context\n object as first argument.\n \"\"\"\n f.__click_pass_context__ = T... | diff --git a/click/decorators.py b/click/decorators.py
index 4b81ac50f..25623f3f7 100644
--- a/click/decorators.py
+++ b/click/decorators.py
@@ -150,6 +150,8 @@ def option(*param_decls, **attrs):
:attr:`Command.params` list.
"""
def decorator(f):
+ if 'help' in attrs:
+ attrs['help'] = inspect.cleandoc(attrs['help'])
_param_memo(f, Option(param_decls, **attrs))
return f
return decorator
diff --git a/tests/test_options.py b/tests/test_options.py
index d6ed48303..ec34cc300 100644
--- a/tests/test_options.py
+++ b/tests/test_options.py
@@ -169,3 +169,23 @@ def cmd(foo):
assert result.exit_code == 2
assert 'Error: Missing option "--foo". Choose from foo, bar.' \
in result.output
+
+
+def test_multiline_help(runner):
+ @click.command()
+ @click.option('--foo', help="""
+ hello
+
+ i am
+
+ multiline
+ """)
+ def cmd(foo):
+ click.echo(foo)
+
+ result = runner.invoke(cmd, ['--help'])
+ assert result.exit_code == 0
+ out = result.output.splitlines()
+ assert ' --foo TEXT hello' in out
+ assert ' i am' in out
+ assert ' multiline' in out
|
dpgmediamagazines__django-arctic-341 | QuickFiltersSelectMultiple add default attrs
For quick filters Arctic has 2 widget: `QuickFiltersSelect` and `QuickFiltersSelectMultiple`. They use same template and it requires `select_multiple` property in `attrs` to make it work checkbox-like.
It would be much easier to have this attribute be set by deafult in `QuickFiltersSelectMultiple` to do not specify it each time manually.
| [
{
"content": "from datetime import datetime\n\nimport django\nfrom django.forms.widgets import (\n ClearableFileInput,\n DateInput,\n DateTimeInput,\n Select,\n SelectMultiple,\n TextInput,\n TimeInput,\n Input,\n CheckboxSelectMultiple,\n RadioSelect,\n)\nfrom django.template.load... | [
{
"content": "from datetime import datetime\n\nimport django\nfrom django.forms.widgets import (\n ClearableFileInput,\n DateInput,\n DateTimeInput,\n Select,\n SelectMultiple,\n TextInput,\n TimeInput,\n Input,\n CheckboxSelectMultiple,\n RadioSelect,\n)\nfrom django.template.load... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d0e637e..d1050210 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,8 +13,10 @@ Always reference the ticket number at the end of the issue description.
### Fixed
- BREAKING! Fixed response in DeletionMixin after `delete` method is called [#334][334]
+- Added default `select_multiple` attr for `QuickFiltersSelectMultiple` widget [#340][340]
[334]: //github.com/sanoma/django-arctic/issues/334
+[340]: //github.com/sanoma/django-arctic/issues/340
## 1.3.6 (2019-01-22)
diff --git a/arctic/widgets.py b/arctic/widgets.py
index 2b1982da..f8c3989f 100644
--- a/arctic/widgets.py
+++ b/arctic/widgets.py
@@ -151,6 +151,10 @@ class QuickFiltersSelectMultiple(
"""
This widget is used to be able to have a more than one active filters
"""
+ def __init__(self, attrs=None, **kwargs):
+ attrs = attrs or {}
+ attrs['select_multiple'] = True
+ super().__init__(attrs, **kwargs)
class SearchInput(TextInput):
diff --git a/tests/test_layout_mixin.py b/tests/test_layout_mixin.py
index 69c3357a..a30d50f0 100644
--- a/tests/test_layout_mixin.py
+++ b/tests/test_layout_mixin.py
@@ -101,7 +101,7 @@ def test_layout_example_4(layout):
assert layout[0]['fieldset']['title'] == 'fieldset'
assert layout[0]['fieldset']['description'] is None
- assert layout[0]['fieldset']['collapsible'] is 'closed'
+ assert layout[0]['fieldset']['collapsible'] == 'closed'
assert layout[0]['rows'][0]['name'] == 'title'
assert layout[0]['rows'][0]['column'] is None
assert layout[0]['rows'][1]['name'] == 'title'
@@ -121,6 +121,6 @@ def test_layout_example_4(layout):
assert layout[2]['fieldset']['title'] == 'fieldset3'
assert layout[2]['fieldset']['description'] is None
- assert layout[2]['fieldset']['collapsible'] is 'open'
+ assert layout[2]['fieldset']['collapsible'] == 'open'
assert layout[2]['rows'][0]['name'] == 'published'
assert layout[2]['rows'][0]['column'] is None
|
pytorch__vision-2612 | Unable to build with Spack/from source, ffmpeg libraries not found
## 🐛 Bug
I'm trying to install `torchvision` from source using the [Spack](https://spack.io) package manager, but the build can't find my `ffmpeg` libraries, which are in a non-standard location. There are a couple of reasons for this:
1. Mismatch of compilers. At some points of the build, it is using the compiler I defined in `CXX`, which is a compiler wrapper designed to automatically inject the appropriate linker args. At other points of the build, it is using the system compiler, possibly picked up from Python's distutils, which is not a compiler wrapper.
2. `TORCHVISION_LIBRARY` seems to be ignored. The README says to set `TORCHVISION_LIBRARY` with the path to all dependency libraries, but this isn't working either.
## To Reproduce
```console
$ spack install -v py-torchvision
...
[15/15] /Users/Adam/spack/lib/spack/env/clang/clang++ -MMD -MF /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/video_reader/VideoReader.o.d -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder -I/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/video_reader -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/ffmpeg-4.2.2-hoilb6sa2j6ggatrb2xvmuazqrtgcoa7/include -I/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/include -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/include/torch/csrc/api/include -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/include/TH -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/include/THC -I/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/python-3.7.8-skt55xepunmc5rj2diqoljahpau3zwrm/include/python3.7m -c -c /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/video_reader/VideoReader.cpp -o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/video_reader/VideoReader.o -std=c++14 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=video_reader -D_GLIBCXX_USE_CXX11_ABI=0
...
/usr/bin/clang++ -bundle -undefined dynamic_lookup /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/video_reader/VideoReader.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/seekable_buffer.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/cc_stream.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/util.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/subtitle_sampler.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/audio_stream.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/subtitle_stream.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/audio_sampler.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/stream.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/time_keeper.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/memory_buffer.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/decoder.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/sync_decoder.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/video_stream.o /private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/build/temp.macosx-10.15.6-x86_64-3.7/private/var/folders/21/hwq39zyj4g36x6zjfyl5l8080000gn/T/Adam/spack-stage/spack-stage-py-torchvision-0.7.0-732klihrqrcpdkrv4mispep23skf2cbr/spack-src/torchvision/csrc/cpu/decoder/video_sampler.o -L/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/lib -L/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/python-3.7.8-skt55xepunmc5rj2diqoljahpau3zwrm/lib -lavcodec -lavformat -lavutil -lswresample -lswscale -lc10 -ltorch -ltorch_cpu -ltorch_python -o build/lib.macosx-10.15.6-x86_64-3.7/torchvision/video_reader.so -std=c++14
ld: library not found for -lavcodec
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command '/usr/bin/clang++' failed with exit status 1
```
As you can see, at some points of the build, it is using the compiler wrapper `/Users/Adam/spack/lib/spack/env/clang/clang++`, while at other parts it's using the actual compiler `/usr/bin/clang++`. This is true whether or not I use the `ninja` backend for building.
Note that I have a few local patches to Spack's torchvision recipe to add `TORCHVISION_LIBRARY` and `TORCHVISION_INCLUDE`, see below.
## Expected behavior
If `CXX` is set to a particular compiler, I would expect the build to use that compiler for all compilation. Secondly, if `TORCHVISION_LIBRARY` is mentioned in the README as a way to locate libraries, I would expect that to work.
## Environment
- PyTorch / torchvision Version: 1.6.0 / 0.7.0 (also reproduced with 1.5.1 / 0.6.1)
- OS: macOS 10.15.6
- Compiler: Apple Clang 11.0.3
- How you installed PyTorch / torchvision: `spack` (source)
- Build command you used (if compiling from source): `python setup.py build && python setup.py install`
- Python version: 3.7.8
- CUDA/cuDNN version: N/A
- GPU models and configuration: N/A
- Any other relevant information: build environment contains the following env vars:
```bash
TORCHVISION_INCLUDE=/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/python-3.7.8-skt55xepunmc5rj2diqoljahpau3zwrm/include/python3.7m:/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/include:/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/ffmpeg-4.2.2-hoilb6sa2j6ggatrb2xvmuazqrtgcoa7/include
TORCHVISION_LIBRARY=/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/python-3.7.8-skt55xepunmc5rj2diqoljahpau3zwrm/lib:/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/py-torch-1.6.0-7zhzk2mza5nl3hvalsoql43dq56p7vs6/lib/python3.7/site-packages/torch/lib:/Users/Adam/spack/opt/spack/darwin-catalina-x86_64/apple-clang-11.0.3/ffmpeg-4.2.2-hoilb6sa2j6ggatrb2xvmuazqrtgcoa7/lib
```
## Additional context
I realize that you likely don't get a lot of bug reports from people installing torchvision with Spack. I'm a Spack developer, so I'm happy to handle all of the Spack-specific questions. Also, if any torch/torchvision developers would like to help me maintain our Spack recipes, let me know!
| [
{
"content": "import os\nimport io\nimport sys\nfrom setuptools import setup, find_packages\nfrom pkg_resources import parse_version, get_distribution, DistributionNotFound\nimport subprocess\nimport distutils.command.clean\nimport distutils.spawn\nimport glob\nimport shutil\n\nimport torch\nfrom torch.utils.cp... | [
{
"content": "import os\nimport io\nimport sys\nfrom setuptools import setup, find_packages\nfrom pkg_resources import parse_version, get_distribution, DistributionNotFound\nimport subprocess\nimport distutils.command.clean\nimport distutils.spawn\nimport glob\nimport shutil\n\nimport torch\nfrom torch.utils.cp... | diff --git a/setup.py b/setup.py
index 030e6627e1c..1bc84897fa6 100644
--- a/setup.py
+++ b/setup.py
@@ -358,6 +358,7 @@ def get_extensions():
ffmpeg_include_dir,
extensions_dir,
],
+ library_dirs=library_dirs,
libraries=[
'avcodec',
'avformat',
|
Project-MONAI__MONAI-2793 | `HighResBlock` may have wrong conv block
The `Convolution` block in `HighResBlock` does not utilize acti and norm parameters thus will used default instance norm layer and prelu activation layer. However, it is different from all other `Convolution` blocks in `HighResNet`. Is is a mistake? @wyli
`HighResBlock` may have wrong conv block
The `Convolution` block in `HighResBlock` does not utilize acti and norm parameters thus will used default instance norm layer and prelu activation layer. However, it is different from all other `Convolution` blocks in `HighResNet`. Is is a mistake? @wyli
| [
{
"content": "# Copyright 2020 - 2021 MONAI Consortium\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n# http://www.apache.org/licenses/LICENSE-2.0\n# Unless required by appli... | [
{
"content": "# Copyright 2020 - 2021 MONAI Consortium\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n# http://www.apache.org/licenses/LICENSE-2.0\n# Unless required by appli... | diff --git a/monai/networks/nets/highresnet.py b/monai/networks/nets/highresnet.py
index 12908a9119..f644a7835a 100644
--- a/monai/networks/nets/highresnet.py
+++ b/monai/networks/nets/highresnet.py
@@ -90,6 +90,7 @@ def __init__(
kernel_size=kernel_size,
dilation=dilation,
bias=bias,
+ conv_only=True,
)
)
_in_chns = _out_chns
|
ansible__ansible-31337 | nxos_config intended should be intended_config
##### ISSUE TYPE
- Documentation Report
##### COMPONENT NAME
nxos_config module
http://docs.ansible.com/ansible/latest/nxos_config_module.html
##### ANSIBLE VERSION
N/A
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
The example shown in the documentation is wrong, it won't actually work (intended versus intended_config). The intended_config is even shown in the parameters above (which are right).
##### STEPS TO REPRODUCE
```yaml
- name: diff the running-config against a provided config
nxos_config:
diff_against: intended
intended: "{{ lookup('file', 'master.cfg') }}"
```
##### EXPECTED RESULTS
Playbook can run without failing on
```"msg": "Unsupported parameters for (nxos_config) module: intended Supported parameters include: after,backup,before,defaults,diff_against,diff_ignore_lines,force,host,intended_config,lines,match,parents,password,port,provider,replace,running_config,save,save_when,src,ssh_keyfile,timeout,transport,use_ssl,username,validate_certs"
```
##### ACTUAL RESULTS
```
[root@localhost ~]# ansible-playbook --diff prompt_example.yml
PLAY [cisco] ****************************************************************************************************************************************************************************************************************************
TASK [diff the running-config against a provided config] ********************************************************************************************************************************************************************************
[DEPRECATION WARNING]: Param 'transport' is deprecated. See the module docs for more information. This feature will be removed in version 2.9. Deprecation warnings can be disabled by setting deprecation_warnings=False in
ansible.cfg.
fatal: [n9k]: FAILED! => {"changed": false, "failed": true, "msg": "Unsupported parameters for (nxos_config) module: intended Supported parameters include: after,backup,before,defaults,diff_against,diff_ignore_lines,force,host,intended_config,lines,match,parents,password,port,provider,replace,running_config,save,save_when,src,ssh_keyfile,timeout,transport,use_ssl,username,validate_certs"}
to retry, use: --limit @/root/prompt_example.retry
PLAY RECAP ******************************************************************************************************************************************************************************************************************************
n9k : ok=0 changed=0 unreachable=0 failed=1
[root@localhost ~]# ansible-playbook --diff prompt_example.yml -vvvv
ansible-playbook 2.5.0
config file = /root/ansible.cfg
configured module search path = [u'/usr/lib/python2.7/site-packages/napalm_ansible']
ansible python module location = /usr/lib/python2.7/site-packages/ansible
executable location = /usr/bin/ansible-playbook
python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)]
Using /root/ansible.cfg as config file
setting up inventory plugins
Set default localhost to localhost
Parsed /root/hosts inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
PLAYBOOK: prompt_example.yml ************************************************************************************************************************************************************************************************************
1 plays in prompt_example.yml
PLAY [cisco] ****************************************************************************************************************************************************************************************************************************
META: ran handlers
TASK [diff the running-config against a provided config] ********************************************************************************************************************************************************************************
task path: /root/prompt_example.yml:5
File lookup using /root/nxos_base.cfg as file
<192.168.2.3> connection transport is cli
<192.168.2.3> using connection plugin network_cli
<192.168.2.3> socket_path: /root/.ansible/pc/f7aec45378
Using module file /usr/lib/python2.7/site-packages/ansible/modules/network/nxos/nxos_config.py
<192.168.2.3> ESTABLISH LOCAL CONNECTION FOR USER: root
<192.168.2.3> EXEC /bin/sh -c 'echo ~ && sleep 0'
<192.168.2.3> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875 `" && echo ansible-tmp-1506529319.72-174572742773875="` echo /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875 `" ) && sleep 0'
<192.168.2.3> PUT /tmp/tmpVp9oMN TO /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875/nxos_config.py
<192.168.2.3> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875/ /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875/nxos_config.py && sleep 0'
<192.168.2.3> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875/nxos_config.py; rm -rf "/root/.ansible/tmp/ansible-tmp-1506529319.72-174572742773875/" > /dev/null 2>&1 && sleep 0'
[DEPRECATION WARNING]: Param 'transport' is deprecated. See the module docs for more information. This feature will be removed in version 2.9. Deprecation warnings can be disabled by setting deprecation_warnings=False in
ansible.cfg.
fatal: [n9k]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"diff_against": "intended",
"intended": "!Command: show running-config\n!Time: Tue Sep 19 22:45:38 2017\n\nversion 7.0(3)I7(1)\nvdc switch id 1\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 511\n limit-resource u4route-mem minimum 248 maximum 248\n limit-resource u6route-mem minimum 96 maximum 96\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\nfeature nxapi\nfeature scp-server\n\nusername admin password 5 $5$2RzjXhgx$xZRU9GHh6fdN2koy1r6pJMIXpTIo2tP.ZZ6YI7Z11Y3 role network-admin\nusername exampleuser password 5 $5$itSlZrxc$gixqzCwyQjO4SBjrMsu2k2qkWD1H7fygx7qYuzhgFp8 role network-admin\n\nbanner motd @\nthis is a fake banner\n@\n\nip domain-lookup\nsnmp-server user admin network-admin auth md5 0xc1ddb036df145c775510428fe3c6b553 priv 0xc1ddb036df145c775510428fe3c6b553 localizedkey\nsnmp-server user exampleuser network-admin auth sha 0x7071c014b53743ca568dd2c3fd70005c5e21db5e localizedkey\nrmon event 1 description FATAL(1) owner PMON@FATAL\nrmon event 2 description CRITICAL(2) owner PMON@CRITICAL\nrmon event 3 description ERROR(3) owner PMON@ERROR\nrmon event 4 description WARNING(4) owner PMON@WARNING\nrmon event 5 description INFORMATION(5) owner PMON@INFO\n\nvlan 1,10\nvlan 10\n name STORAGE\n\nvrf context management\n\ninterface Ethernet1/1\n\ninterface Ethernet1/2\n\ninterface Ethernet1/3\n\ninterface Ethernet1/4\n\ninterface Ethernet1/5\n\ninterface Ethernet1/6\n\ninterface Ethernet1/7\n\ninterface Ethernet1/8\n\ninterface Ethernet1/9\n\ninterface Ethernet1/10\n\ninterface Ethernet1/11\n\ninterface Ethernet1/12\n\ninterface Ethernet1/13\n\ninterface Ethernet1/14\n\ninterface Ethernet1/15\n\ninterface Ethernet1/16\n\ninterface Ethernet1/17\n\ninterface Ethernet1/18\n\ninterface Ethernet1/19\n\ninterface Ethernet1/20\n no switchport\n ip address 172.16.1.1/24\n\ninterface Ethernet1/21\n\ninterface Ethernet1/22\n\ninterface Ethernet1/23\n\ninterface Ethernet1/24\n\ninterface Ethernet1/25\n\ninterface Ethernet1/26\n\ninterface Ethernet1/27\n\ninterface Ethernet1/28\n\ninterface Ethernet1/29\n\ninterface Ethernet1/30\n\ninterface Ethernet1/31\n\ninterface Ethernet1/32\n\ninterface Ethernet1/33\n\ninterface Ethernet1/34\n\ninterface Ethernet1/35\n\ninterface Ethernet1/36\n\ninterface Ethernet1/37\n\ninterface Ethernet1/38\n\ninterface Ethernet1/39\n\ninterface Ethernet1/40\n\ninterface Ethernet1/41\n\ninterface Ethernet1/42\n\ninterface Ethernet1/43\n\ninterface Ethernet1/44\n\ninterface Ethernet1/45\n\ninterface Ethernet1/46\n\ninterface Ethernet1/47\n\ninterface Ethernet1/48\n\ninterface Ethernet1/49\n\ninterface Ethernet1/50\n\ninterface Ethernet1/51\n\ninterface Ethernet1/52\n\ninterface Ethernet1/53\n\ninterface Ethernet1/54\n\ninterface Ethernet1/55\n\ninterface Ethernet1/56\n\ninterface Ethernet1/57\n\ninterface Ethernet1/58\n\ninterface Ethernet1/59\n\ninterface Ethernet1/60\n\ninterface Ethernet1/61\n\ninterface Ethernet1/62\n\ninterface Ethernet1/63\n\ninterface Ethernet1/64\n description this is a port change\n\ninterface mgmt0\n description this is the mgmt0 port\n vrf member management\n ip address 192.168.2.3/24\nline console\nline vty\nboot nxos bootflash:/nxos.7.0.3.I7.1.bin \nip route 0.0.0.0/0 192.168.2.1",
"provider": {
"host": null,
"password": "Bullf00d",
"port": null,
"ssh_keyfile": null,
"timeout": null,
"transport": "cli",
"use_ssl": null,
"username": "admin",
"validate_certs": null
},
"transport": "cli"
}
},
"msg": "Unsupported parameters for (nxos_config) module: intended Supported parameters include: after,backup,before,defaults,diff_against,diff_ignore_lines,force,host,intended_config,lines,match,parents,password,port,provider,replace,running_config,save,save_when,src,ssh_keyfile,timeout,transport,use_ssl,username,validate_certs"
}
to retry, use: --limit @/root/prompt_example.retry
PLAY RECAP ******************************************************************************************************************************************************************************************************************************
n9k : ok=0 changed=0 unreachable=0 failed=1
```
| [
{
"content": "#!/usr/bin/python\n#\n# This file is part of Ansible\n#\n# Ansible is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later vers... | [
{
"content": "#!/usr/bin/python\n#\n# This file is part of Ansible\n#\n# Ansible is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later vers... | diff --git a/lib/ansible/modules/network/nxos/nxos_config.py b/lib/ansible/modules/network/nxos/nxos_config.py
index 6e289de80206f0..8dae1f1f044dd6 100644
--- a/lib/ansible/modules/network/nxos/nxos_config.py
+++ b/lib/ansible/modules/network/nxos/nxos_config.py
@@ -227,7 +227,7 @@
- name: diff the running-config against a provided config
nxos_config:
diff_against: intended
- intended: "{{ lookup('file', 'master.cfg') }}"
+ intended_config: "{{ lookup('file', 'master.cfg') }}"
- nxos_config:
lines:
|
django-cms__django-cms-3844 | Non-existent method Page.get_title_object
If you specify a language to `ExtensionToolbar.get_title_extension_admin`, it calls `Page.get_title_object`, which doesn’t exist. This should probably be `Page.get_title_obj` instead.
| [
{
"content": "# -*- coding: utf-8 -*-\nfrom cms.utils.urlutils import admin_reverse\nfrom cms.api import get_page_draft\nfrom cms.toolbar_base import CMSToolbar\nfrom cms.utils import get_cms_setting\nfrom cms.utils.permissions import has_page_change_permission\nfrom django.core.urlresolvers import NoReverseMat... | [
{
"content": "# -*- coding: utf-8 -*-\nfrom cms.utils.urlutils import admin_reverse\nfrom cms.api import get_page_draft\nfrom cms.toolbar_base import CMSToolbar\nfrom cms.utils import get_cms_setting\nfrom cms.utils.permissions import has_page_change_permission\nfrom django.core.urlresolvers import NoReverseMat... | diff --git a/cms/extensions/toolbar.py b/cms/extensions/toolbar.py
index e8e3870fd03..92eefe1f43f 100644
--- a/cms/extensions/toolbar.py
+++ b/cms/extensions/toolbar.py
@@ -123,7 +123,7 @@ def get_title_extension_admin(self, language=None):
page = self._get_page()
urls = []
if language:
- titles = page.get_title_object(language),
+ titles = page.get_title_obj(language),
else:
titles = page.title_set.all()
# Titles
|
urllib3__urllib3-2840 | 2.0.0a2: Logging error with `StreamHandler` / `urllib3.add_stderr_logger`
### Subject
When using `urllib3.add_stderr_logger` (or using a StreamHandler), the formatting for the message to print out the request details fails.
This happens on the current main (2.0.0a2), release 2.0.0a2 and 2.0.0a1. 1.26.13 works fine.
### Environment
Describe your environment.
At least, paste here the output of:
```python
import platform
import urllib3
print("OS", platform.platform())
print("Python", platform.python_version())
print("urllib3", urllib3.__version__)
```
```
OS Linux-5.15.72-1-lts-x86_64-with-glibc2.35
Python 3.8.14
urllib3 2.0.0a2
```
### Steps to Reproduce
A simple and isolated way to reproduce the issue. A code snippet would be great.
```python
import urllib3
urllib3.add_stderr_logger()
pool = urllib3.PoolManager()
pool.request('GET', 'https://github.com/urllib3/urllib3')
```
### Expected Behavior
What should happen.
No logging error
### Actual Behavior
What happens instead.
```
(venv) [dev@dev-vm urllib3-test]$ python urllib3_test.py
2022-11-30 15:34:40,252 DEBUG Added a stderr logging handler to logger: urllib3
2022-11-30 15:34:40,252 DEBUG Starting new HTTPS connection (1): github.com:443
--- Logging error ---
Traceback (most recent call last):
File "/home/dev/.pyenv/versions/3.8.14/lib/python3.8/logging/__init__.py", line 1085, in emit
msg = self.format(record)
File "/home/dev/.pyenv/versions/3.8.14/lib/python3.8/logging/__init__.py", line 929, in format
return fmt.format(record)
File "/home/dev/.pyenv/versions/3.8.14/lib/python3.8/logging/__init__.py", line 668, in format
record.message = record.getMessage()
File "/home/dev/.pyenv/versions/3.8.14/lib/python3.8/logging/__init__.py", line 373, in getMessage
msg = msg % self.args
TypeError: not all arguments converted during string formatting
Call stack:
File "urllib3_test.py", line 7, in <module>
pool.request('GET', 'https://github.com/urllib3/urllib3')
File "/home/dev/urllib3-test/venv/lib/python3.8/site-packages/urllib3/_request_methods.py", line 110, in request
return self.request_encode_url(
File "/home/dev/urllib3-test/venv/lib/python3.8/site-packages/urllib3/_request_methods.py", line 143, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/home/dev/urllib3-test/venv/lib/python3.8/site-packages/urllib3/poolmanager.py", line 433, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/home/dev/urllib3-test/venv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 791, in urlopen
response = self._make_request(
File "/home/dev/urllib3-test/venv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 547, in _make_request
log.debug(
Message: '%s://%s:%s "%s %s %s" %s'
Arguments: ('https', 'github.com', 443, 'GET', '/urllib3/urllib3', 'HTTP/1.1', 200, None)
```
| [
{
"content": "from __future__ import annotations\n\nimport errno\nimport logging\nimport queue\nimport sys\nimport typing\nimport warnings\nimport weakref\nfrom socket import timeout as SocketTimeout\nfrom types import TracebackType\n\nfrom ._base_connection import _TYPE_BODY\nfrom ._request_methods import Requ... | [
{
"content": "from __future__ import annotations\n\nimport errno\nimport logging\nimport queue\nimport sys\nimport typing\nimport warnings\nimport weakref\nfrom socket import timeout as SocketTimeout\nfrom types import TracebackType\n\nfrom ._base_connection import _TYPE_BODY\nfrom ._request_methods import Requ... | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7458b12591..e9c0bf3af5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -54,7 +54,7 @@ jobs:
experimental: false
nox-session: test-pypy
- python-version: "2.7"
- os: ubuntu-latest
+ os: ubuntu-20.04 # CPython 2.7 is not available for ubuntu-22.04
experimental: false
nox-session: unsupported_setup_py
- python-version: "3.9"
diff --git a/changelog/2839.bugfix.rst b/changelog/2839.bugfix.rst
new file mode 100644
index 0000000000..9c3ff7091d
--- /dev/null
+++ b/changelog/2839.bugfix.rst
@@ -0,0 +1 @@
+Fix logging error when using ``add_stderr_logger``.
diff --git a/pyproject.toml b/pyproject.toml
index 4df6f6d9da..bf7ba371bd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -81,6 +81,7 @@ include = [
xfail_strict = true
python_classes = ["Test", "*TestCase"]
markers = ["limit_memory"]
+log_level = "DEBUG"
filterwarnings = [
"error",
'''default:'urllib3\[secure\]' extra is deprecated and will be removed in urllib3 v2\.1\.0.*:DeprecationWarning''',
diff --git a/src/urllib3/connectionpool.py b/src/urllib3/connectionpool.py
index 02724a378a..7dfb846ee2 100644
--- a/src/urllib3/connectionpool.py
+++ b/src/urllib3/connectionpool.py
@@ -545,7 +545,7 @@ def _make_request(
response._pool = self # type: ignore[attr-defined]
log.debug(
- '%s://%s:%s "%s %s %s" %s',
+ '%s://%s:%s "%s %s %s" %s %s',
self.scheme,
self.host,
self.port,
diff --git a/test/with_dummyserver/test_connectionpool.py b/test/with_dummyserver/test_connectionpool.py
index 6aea007a21..aea46c8935 100644
--- a/test/with_dummyserver/test_connectionpool.py
+++ b/test/with_dummyserver/test_connectionpool.py
@@ -1,9 +1,7 @@
from __future__ import annotations
import io
-import logging
import socket
-import sys
import time
import typing
import warnings
@@ -39,10 +37,6 @@
pytestmark = pytest.mark.flaky
-log = logging.getLogger("urllib3.connectionpool")
-log.setLevel(logging.NOTSET)
-log.addHandler(logging.StreamHandler(sys.stdout))
-
def wait_for_socket(ready_event: Event) -> None:
ready_event.wait()
diff --git a/test/with_dummyserver/test_https.py b/test/with_dummyserver/test_https.py
index 440a83d906..ac0fa9419c 100644
--- a/test/with_dummyserver/test_https.py
+++ b/test/with_dummyserver/test_https.py
@@ -1,7 +1,6 @@
from __future__ import annotations
import datetime
-import logging
import os.path
import shutil
import ssl
@@ -52,11 +51,6 @@
pytestmark = pytest.mark.flaky
-log = logging.getLogger("urllib3.connectionpool")
-log.setLevel(logging.NOTSET)
-log.addHandler(logging.StreamHandler(sys.stdout))
-
-
TLSv1_CERTS = DEFAULT_CERTS.copy()
TLSv1_CERTS["ssl_version"] = getattr(ssl, "PROTOCOL_TLSv1", None)
|
pwr-Solaar__Solaar-1425 | Add support for g733 lightspeed headphones
It would be great to support the g733 lightspeed headphones. I have a pair of these so can help gather any information required to display stuff such as battery life etc. Not sure where to start adding support myself though...
| [
{
"content": "# -*- python-mode -*-\n\n## Copyright (C) 2012-2013 Daniel Pavel\n##\n## This program is free software; you can redistribute it and/or modify\n## it under the terms of the GNU General Public License as published by\n## the Free Software Foundation; either version 2 of the License, or\n## (at your... | [
{
"content": "# -*- python-mode -*-\n\n## Copyright (C) 2012-2013 Daniel Pavel\n##\n## This program is free software; you can redistribute it and/or modify\n## it under the terms of the GNU General Public License as published by\n## the Free Software Foundation; either version 2 of the License, or\n## (at your... | diff --git a/lib/logitech_receiver/descriptors.py b/lib/logitech_receiver/descriptors.py
index 0793ab8859..8af064baca 100644
--- a/lib/logitech_receiver/descriptors.py
+++ b/lib/logitech_receiver/descriptors.py
@@ -463,4 +463,5 @@ class _PerformanceMXDpi(_ST.RegisterDpi):
# Headset
+_D('Logitech G733 Gaming Headset', codename='G733 Headset', protocol=2.0, interface=3, kind=_DK.headset, usbid=0x0ab5)
_D('Logitech PRO X Wireless Gaming Headset', codename='PRO Headset', protocol=2.0, interface=3, kind=_DK.headset, usbid=0x0aba)
|
rasterio__rasterio-1754 | Proposal: Add option in CRS.from_user_input to check if it has the to_wkt method
https://github.com/mapbox/rasterio/blob/b9f34ee559039239c7c0c97bd911b466701a39cd/rasterio/crs.py#L427-L456
It would be nice for interoperability between the rasterio, fiona, and pyproj CRS classes. Thoughts?
| [
{
"content": "\"\"\"Coordinate Reference Systems\n\nNotes\n-----\n\nIn Rasterio versions <= 1.0.13, coordinate reference system support was limited\nto the CRS that can be described by PROJ parameters. This limitation is gone in\nversions >= 1.0.14. Any CRS that can be defined using WKT (version 1) may be\nused... | [
{
"content": "\"\"\"Coordinate Reference Systems\n\nNotes\n-----\n\nIn Rasterio versions <= 1.0.13, coordinate reference system support was limited\nto the CRS that can be described by PROJ parameters. This limitation is gone in\nversions >= 1.0.14. Any CRS that can be defined using WKT (version 1) may be\nused... | diff --git a/CHANGES.txt b/CHANGES.txt
index cfc3bba79..715d4975e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -12,7 +12,10 @@ Changes
- Several Python deprecation warnings have been eliminated (#1742).
- When a MemoryFile is opened in write mode, a TypeError will be raised if
integer width and height are not given, fixing #1748.
-- Support CRS.from_user_input with other CRS object with `to_wkt()` method (#1718)
+- Return False when checking equality with objects incompatible with
+ ``CRS.from_user_input()`` (#1719)
+- Support CRS.from_user_input with other CRS object with ``to_wkt()`` method
+ (#1718)
1.0.25 (2019-08-06)
-------------------
diff --git a/rasterio/crs.py b/rasterio/crs.py
index a6b7869df..b027a4f2f 100644
--- a/rasterio/crs.py
+++ b/rasterio/crs.py
@@ -86,7 +86,10 @@ def __bool__(self):
__nonzero__ = __bool__
def __eq__(self, other):
- other = CRS.from_user_input(other)
+ try:
+ other = CRS.from_user_input(other)
+ except CRSError:
+ return False
return (self._crs == other._crs)
def __getstate__(self):
diff --git a/tests/test_crs.py b/tests/test_crs.py
index 86cc7497e..b3f3fcd64 100644
--- a/tests/test_crs.py
+++ b/tests/test_crs.py
@@ -478,5 +478,12 @@ def test_crs84():
assert "WGS 84" in CRS.from_user_input("urn:ogc:def:crs:OGC::CRS84").wkt
+@pytest.mark.parametrize("other", ["", 4.2, 0])
+def test_equals_different_type(other):
+ """Comparison to non-CRS objects is False"""
+ assert CRS.from_epsg(4326) != other
+
+
def test_from_user_input_custom_crs_class():
- assert CRS.from_user_input(CustomCRS()) == CRS.from_epsg(4326)
+ """Support comparison to foreign objects that provide to_wkt()"""
+ assert CRS.from_user_input(CustomCRS()) == CRS.from_epsg(4326)
\ No newline at end of file
|
Qiskit__qiskit-1940 | rzz gate
<!-- ⚠️ If you do not respect this template, your issue will be closed -->
<!-- ⚠️ Make sure to browse the opened and closed issues -->
### Information
- **Qiskit Terra version**: 0.7.2
- **Python version**: 3.6.6
- **Operating system**: Windows 10
### What is the current behavior?
rzz gate appears to give incorrect results
### Steps to reproduce the problem
rzz gate rule defined in https://github.com/Qiskit/qiskit-terra/blob/master/qiskit/extensions/standard/rzz.py
```
CnotGate(q[0], q[1]),
U1Gate(self.params[0], q[0]),
CnotGate(q[0], q[1])
```
### What is the expected behavior?
I think it should be
```
CnotGate(q[0], q[1]),
U1Gate(self.params[0], q[1]),
CnotGate(q[0], q[1])
```
the u1 phase should be on the target instead of control
### Suggested solutions
modify rzz gate definition to give the right behavior.
| [
{
"content": "# -*- coding: utf-8 -*-\n\n# Copyright 2017, IBM.\n#\n# This source code is licensed under the Apache License, Version 2.0 found in\n# the LICENSE.txt file in the root directory of this source tree.\n\n\"\"\"\ntwo-qubit ZZ-rotation gate.\n\"\"\"\nfrom qiskit.circuit import CompositeGate\nfrom qisk... | [
{
"content": "# -*- coding: utf-8 -*-\n\n# Copyright 2017, IBM.\n#\n# This source code is licensed under the Apache License, Version 2.0 found in\n# the LICENSE.txt file in the root directory of this source tree.\n\n\"\"\"\ntwo-qubit ZZ-rotation gate.\n\"\"\"\nfrom qiskit.circuit import CompositeGate\nfrom qisk... | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 36b89565b366..1d0058015624 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -95,6 +95,7 @@ Fixed
used in conditional operations (#1705).
- Fixed a bug that with transpile ignoring initial layout when
coupling map is provided (#1711).
+- Fixed a bug in the definition of the rzz gate (#1940).
Removed
-------
diff --git a/qiskit/extensions/standard/rzz.py b/qiskit/extensions/standard/rzz.py
index bba403cfef8e..d51147b140ae 100644
--- a/qiskit/extensions/standard/rzz.py
+++ b/qiskit/extensions/standard/rzz.py
@@ -34,7 +34,7 @@ def _define_decompositions(self):
decomposition.add_qreg(q)
rule = [
CnotGate(q[0], q[1]),
- U1Gate(self.params[0], q[0]),
+ U1Gate(self.params[0], q[1]),
CnotGate(q[0], q[1])
]
for inst in rule:
|
localstack__localstack-5793 | bug: KMS_PROVIDER=local-kms not honored
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
When updating from 0.14.1 to 0.14.2 it appears that the `KMS_PROVIDER` environment variable is no longer honored, and `local-kms` is not used.
### Expected Behavior
Setting `KMS_PROVIDER=local-kms` and using the KMS service should launch `local-kms` as it did previously.
### How are you starting LocalStack?
With a `docker run` command
### Steps To Reproduce
#### How are you starting localstack (e.g., `bin/localstack` command, arguments, or `docker-compose.yml`)
docker run -e KMS_PROVIDER=local-kms localstack/localstack:0.14.1
docker run -e KMS_PROVIDER=local-kms localstack/localstack:0.14.2
#### Client commands (e.g., AWS SDK code snippet, or sequence of "awslocal" commands)
##### 0.14.1
awslocal kms list-keys
# {
# "Keys": []
# }
ps x|grep kms
# 164 ? Ss 0:00 /bin/sh -c /opt/code/localstack/localstack/infra/kms/local-kms.linux-arm64.bin
# 165 ? Sl 0:00 /opt/code/localstack/localstack/infra/kms/local-kms.linux-arm64.bin
# 179 pts/0 S+ 0:00 grep kms
##### 0.14.2
awslocal kms list-keys
# {
# "Keys": []
# }
ps x|grep kms
# 151 pts/0 S+ 0:00 grep kms
### Environment
```markdown
- OS: macOS 12.3
- LocalStack: 0.14.2
- Docker: 20.10.13, build a224086
```
### Anything else?
_No response_
| [
{
"content": "from localstack import config\nfrom localstack.aws.proxy import AwsApiListener\nfrom localstack.services.moto import MotoFallbackDispatcher\nfrom localstack.services.plugins import Service, aws_provider\n\n\n@aws_provider()\ndef acm():\n from localstack.services.acm.provider import AcmProvider\... | [
{
"content": "from localstack import config\nfrom localstack.aws.proxy import AwsApiListener\nfrom localstack.services.moto import MotoFallbackDispatcher\nfrom localstack.services.plugins import Service, aws_provider\n\n\n@aws_provider()\ndef acm():\n from localstack.services.acm.provider import AcmProvider\... | diff --git a/localstack/services/providers.py b/localstack/services/providers.py
index 1aa898198d429..936d9536036cd 100644
--- a/localstack/services/providers.py
+++ b/localstack/services/providers.py
@@ -140,7 +140,7 @@ def kinesis():
@aws_provider()
def kms():
- if config.KMS_PROVIDER == "kms-local":
+ if config.KMS_PROVIDER == "local-kms":
from localstack.services.kms import kms_starter
return Service("kms", start=kms_starter.start_kms_local)
|
pytorch__vision-2201 | VideoClips Assertion Error
Hello,
I'm trying to load a big video. Following https://github.com/pytorch/vision/issues/1446 I used a VideoClips object, but it's crashing when trying to get clips with certain ids with this error:
> AssertionError Traceback (most recent call last)
> <ipython-input-9-6e97949ad7f5> in <module>()
> ----> 1 x = video_clips.get_clip(1)
>
> /usr/local/lib/python3.6/dist-packages/torchvision/datasets/video_utils.py in get_clip(self, idx)
> 324 video = video[resampling_idx]
> 325 info["video_fps"] = self.frame_rate
> --> 326 assert len(video) == self.num_frames, "{} x {}".format(video.shape, self.num_frames)
> 327 return video, audio, info, video_idx
>
> AssertionError: torch.Size([0, 1, 1, 3]) x 32
The code I use is just this:
```
from torchvision.datasets.video_utils import VideoClips
video_clips = VideoClips(["test_video.mp4"], clip_length_in_frames=32, frames_between_clips=32)
for i in range(video_clips.num_clips()):
x = video_clips.get_clip(i)
```
`video_clips.num_clips()` is much bigger than the ids that are failing. Changing the clipt_length or frames_between doesn't help.
Checking the code I see [0,1,1,3] is returned by `read_video` when no vframes are read:
https://github.com/pytorch/vision/blob/85b8fbfd31e9324e64e24ca25410284ef238bcb3/torchvision/io/video.py#L251-L254
But, for some clip ids and clip_lengths it's just that the sizes don't match, as the assertion error is something like this `AssertionError: torch.Size([19, 360, 640, 3]) x 128`
I followed the issue to `_read_from_stream` and checked no AV exceptions where raised. And running this part of the function:
https://github.com/pytorch/vision/blob/85b8fbfd31e9324e64e24ca25410284ef238bcb3/torchvision/io/video.py#L144-L150
I saw that for an `start_pts=32032`, `end_pts=63063` it returned just one frame on `frames` with `pts=237237`. Which is later discarted as it's a lot bigger than `end_pts`.
Also, the `stream.time_base` is `Fraction(1, 24000)` which doesn't match the start and end pts provided by VideoClips.
So it seems there is a problem with the seeking on my video. But it has a standard h264 encoding and I have no problem reading it sequentially with pyav.
I'm wondering if I'm doing something wrong or there might be an issue with the `read_video` seeking (as the warning says it should be using seconds?).
This is the video info according to ffmpeg:
> Metadata:
> major_brand : mp42
> minor_version : 0
> compatible_brands: mp42isom
> creation_time : 2016-10-10T15:36:46.000000Z
> Duration: 00:21:24.37, start: 0.000000, bitrate: 1002 kb/s
> Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 900 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)
> Metadata:
> handler_name : Telestream Inc. Telestream Media Framework - Release TXGP 2016.42.192059
> encoder : AVC
> Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 93 kb/s (default)
> Metadata:
> handler_name : Telestream Inc. Telestream Media Framework - Release TXGP 2016.42.192059
Thanks!
| [
{
"content": "import gc\nimport math\nimport re\nimport warnings\nfrom typing import Tuple, List\n\nimport numpy as np\nimport torch\n\nfrom . import _video_opt\nfrom ._video_opt import VideoMetaData\n\n\ntry:\n import av\n\n av.logging.set_level(av.logging.ERROR)\n if not hasattr(av.video.frame.VideoF... | [
{
"content": "import gc\nimport math\nimport re\nimport warnings\nfrom typing import Tuple, List\n\nimport numpy as np\nimport torch\n\nfrom . import _video_opt\nfrom ._video_opt import VideoMetaData\n\n\ntry:\n import av\n\n av.logging.set_level(av.logging.ERROR)\n if not hasattr(av.video.frame.VideoF... | diff --git a/torchvision/io/video.py b/torchvision/io/video.py
index 40d1cfeed85..f0a47d49faf 100644
--- a/torchvision/io/video.py
+++ b/torchvision/io/video.py
@@ -106,7 +106,7 @@ def _read_from_stream(
)
frames = {}
- should_buffer = False
+ should_buffer = True
max_buffer_size = 5
if stream.type == "video":
# DivX-style packed B-frames can have out-of-order pts (2 frames in a single pkt)
|
angr__angr-2265 | ZeroDivisionError when performing Propagator analysis
<!--
*Disclaimer:
The angr suite is maintained by a small team of volunteers.
While we cannot guarantee any timeliness for fixes and enhancements, we will do our best.
For more real-time help with angr, from us and the community, join our [Slack.](http://angr.io/invite/)*
-->
---
**Describe the bug.**
<!--
Please include a clear and concise description of what the bug is.
-->
When I trying to perform propagator analysis against a mips32el binary, it throw ZeroDivisionError exception.
Here is the test script:
```python
import angr
import IPython
example = "./httpd"
proj = angr.Project(example, auto_load_libs=False)
cfg = proj.analyses.CFGFast(show_progressbar=True)
func = cfg.functions[0x43b26c]
prop = proj.analyses.Propagator(func=func, only_consts=True)
replacements=prop.replacements
IPython.embed()
```
And the traceback:
```
Traceback (most recent call last):
File "/mnt/data/karonte_proj/angr-dev/angr/test.py", line 12, in <module>
prop = proj.analyses.Propagator(func=func, only_consts=True)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/analysis.py", line 115, in __call__
oself.__init__(*args, **kwargs)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/propagator.py", line 355, in __init__
self._analyze()
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/propagator.py", line 495, in _analyze
self._analysis_core_graph()
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/forward_analysis/forward_analysis.py", line 240, in _analysis_core_graph
changed, output_state = self._run_on_node(n, job_state)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/propagator.py", line 403, in _run_on_node
load_callback=self._load_callback, fail_fast=self._fail_fast)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/engine_base.py", line 27, in process
self._process(state, None, block=kwargs.pop('block', None))
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/engine_vex.py", line 25, in _process
super()._process(state, successors, block=block, whitelist=whitelist, **kwargs)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 83, in _process
self._process_Stmt(whitelist=whitelist)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 104, in _process_Stmt
self._handle_Stmt(stmt)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 132, in _handle_Stmt
getattr(self, handler)(stmt)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/engine_vex.py", line 102, in _handle_WrTmp
super()._handle_WrTmp(stmt)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 138, in _handle_WrTmp
data = self._expr(stmt.data)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/analyses/propagator/engine_vex.py", line 45, in _expr
v = super()._expr(expr)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 170, in _expr
return getattr(self, handler)(expr)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 263, in _handle_Binop
return getattr(self, handler)(expr)
File "/mnt/data/karonte_proj/angr-dev/angr/angr/engines/light/engine.py", line 422, in _handle_Div
return expr_0 // expr_1
ZeroDivisionError: integer division or modulo by zero
Process finished with exit code 1
```
**Environment Information.**
<!--
Many common issues are caused by problems with the local Python environment.
Before submitting, double-check that your versions of all modules in the angr suite (angr, cle, pyvex, ...) are up to date.
Please include the output of `python -m angr.misc.bug_report` here.
-->
```
angr environment report
=============================
Date: 2020-07-17 11:34:11.000442
Running in virtual environment at /home/test/.virtualenvs/karonte3
Platform: linux-x86_64
Python version: 3.6.9 (default, Apr 18 2020, 01:56:04)
[GCC 8.4.0]
######## angr #########
Python found it in /mnt/data/karonte_proj/angr-dev/angr/angr
Pip version angr 8.20.6.8
Git info:
Current commit f44d989b05e5b6825e8d7d100868dc85a8356bef from branch master
Checked out from remote origin: https://github.com/angr/angr-dev
######## ailment #########
Python found it in /mnt/data/karonte_proj/angr-dev/ailment/ailment
Pip version ailment 8.20.7.6
Git info:
Current commit 3490c152766fe7df04dfa922fa58c03166676944 from branch master
Checked out from remote origin: https://github.com/angr/ailment
######## cle #########
Python found it in /mnt/data/karonte_proj/angr-dev/cle/cle
Pip version cle 8.20.7.6
Git info:
Current commit 36f7a0e140fc96bb644f21d0c13d60713d6ae025 from branch master
Checked out from remote origin: https://github.com/angr/cle
######## pyvex #########
Python found it in /home/test/.virtualenvs/karonte3/lib/python3.6/site-packages/pyvex
Pip version pyvex 8.20.7.6
Couldn't find git info
######## claripy #########
Python found it in /mnt/data/karonte_proj/angr-dev/claripy/claripy
Pip version claripy 8.20.7.6
Git info:
Current commit f2c1998731efca4838a4edb9dec77e0424c5f691 from branch master
Checked out from remote origin: https://github.com/angr/claripy
######## archinfo #########
Python found it in /mnt/data/karonte_proj/angr-dev/archinfo/archinfo
Pip version archinfo 8.20.7.6
Git info:
Current commit c48e4b40a6a1f7edab6bd0597fe3d5dda1d73e62 from branch master
Checked out from remote origin: https://github.com/angr/archinfo
######## z3 #########
Python found it in /home/test/.virtualenvs/karonte3/lib/python3.6/site-packages/z3
Pip version z3-solver 4.8.8.0
Couldn't find git info
######## unicorn #########
Python found it in /home/test/.virtualenvs/karonte3/lib/python3.6/site-packages/unicorn
Pip version unicorn 1.0.2rc4
Couldn't find git info
######### Native Module Info ##########
angr: <CDLL '/mnt/data/karonte_proj/angr-dev/angr/angr/lib/angr_native.so', handle 219b540 at 0x7fdbe4d63c88>
unicorn: <CDLL '/home/test/.virtualenvs/karonte3/lib/python3.6/site-packages/unicorn/lib/libunicorn.so', handle 1345d20 at 0x7fdbe3d19be0>
pyvex: <cffi.api._make_ffi_library.<locals>.FFILibrary object at 0x7fdbe4c84668>
```
**To Reproduce.**
<!--
Please include *both a script to reproduce the crash, and attach the binary used, if possible*
-->
Here is the binary used in the testcase.
[httpd.zip](https://github.com/angr/angr/files/4935609/httpd.zip)
**Additional context.**
<!--
Add any other context about the problem here.
-->
| [
{
"content": "# pylint:disable=no-self-use\nfrom typing import Tuple\n\nimport logging\n\nimport ailment\nimport pyvex\nimport archinfo\n\nfrom ...engines.vex.claripy.irop import operations as vex_operations\nfrom ...code_location import CodeLocation\nfrom ...utils.constants import DEFAULT_STATEMENT\nfrom ..eng... | [
{
"content": "# pylint:disable=no-self-use\nfrom typing import Tuple\n\nimport logging\n\nimport ailment\nimport pyvex\nimport archinfo\n\nfrom ...engines.vex.claripy.irop import operations as vex_operations\nfrom ...code_location import CodeLocation\nfrom ...utils.constants import DEFAULT_STATEMENT\nfrom ..eng... | diff --git a/angr/engines/light/engine.py b/angr/engines/light/engine.py
index 025743dd1dd..568248c3706 100644
--- a/angr/engines/light/engine.py
+++ b/angr/engines/light/engine.py
@@ -423,6 +423,9 @@ def _handle_Div(self, expr):
except TypeError as e:
self.l.warning(e)
return None
+ except ZeroDivisionError as e:
+ self.l.warning(e)
+ return None
def _handle_Xor(self, expr):
arg0, arg1 = expr.args
|
comic__grand-challenge.org-3383 | Viewer configuration does not show linking options
**Describe the bug**
The view and edit pages for viewer configurations no longer show options to set the linking configuration.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to https://grand-challenge.org/viewer-configurations/demo-rse/
2. Scroll down to 'Linking Configuration'
The options displayed are duplicates of the 'Plugin and Tools' section.
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
| [
{
"content": "from crispy_forms.helper import FormHelper\nfrom crispy_forms.layout import Fieldset, Layout, Submit\nfrom django.forms import ModelForm\nfrom django_select2.forms import Select2MultipleWidget\n\nfrom grandchallenge.core.forms import SaveFormInitMixin\nfrom grandchallenge.core.widgets import Color... | [
{
"content": "from crispy_forms.helper import FormHelper\nfrom crispy_forms.layout import Fieldset, Layout, Submit\nfrom django.forms import ModelForm\nfrom django_select2.forms import Select2MultipleWidget\n\nfrom grandchallenge.core.forms import SaveFormInitMixin\nfrom grandchallenge.core.widgets import Color... | diff --git a/app/grandchallenge/workstation_configs/forms.py b/app/grandchallenge/workstation_configs/forms.py
index 9e9dded697..fb58b1f260 100644
--- a/app/grandchallenge/workstation_configs/forms.py
+++ b/app/grandchallenge/workstation_configs/forms.py
@@ -79,7 +79,7 @@ def __init__(self, *args, read_only=False, **kwargs):
),
Fieldset(
"Linking Configuration",
- *PLUGIN_FIELDS,
+ *LINKED_FIELDS,
css_class="border rounded px-2 my-4",
),
)
|
streamlit__streamlit-1469 | Spelling mistake while running streamlit hello , DataFrame Demo
# Summary
I noticed a spelling mistake in dataframe demo while runing streamlit hello , It displays UN Data Exlorer instead of UN Data Explorer
# Steps to reproduce
1. Go to terminal
2. Run `streamlit hello`
3. Open browser at localhost:8501 and choose dataframe demo
## Expected behavior:
It should display correct spelling as `(Data courtesy of the UN Data Exlporer.)`
## Actual behavior:
It's displaying `(Data courtesy of the UN Data Exlorer.)`

## Is this a regression?
no
# Debug info
- Streamlit version: 0.57.3
- Python version: 3.8.2
- Using Conda? PipEnv? PyEnv? Pex? Conda
- OS version: Windows 10
- Browser version: Chrome v81.0
# Additional information
If needed, add any other context about the problem here. For example, did this bug come from https://discuss.streamlit.io or another site? Link the original source here!
| [
{
"content": "# Copyright 2018-2020 Streamlit Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by a... | [
{
"content": "# Copyright 2018-2020 Streamlit Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by a... | diff --git a/lib/streamlit/hello/hello.py b/lib/streamlit/hello/hello.py
index d39b5042c4ff..56c861ae7de2 100644
--- a/lib/streamlit/hello/hello.py
+++ b/lib/streamlit/hello/hello.py
@@ -67,7 +67,7 @@
"""
This demo shows how to use `st.write` to visualize Pandas DataFrames.
-(Data courtesy of the [UN Data Exlorer](http://data.un.org/Explorer.aspx).)
+(Data courtesy of the [UN Data Explorer](http://data.un.org/Explorer.aspx).)
""",
),
),
|
mdn__kuma-6978 | SystemError: <method 'get' of 'dict' objects> returned a result with an error set
https://sentry.prod.mozaws.net/operations/mdn-prod/issues/6659909/
```
timeout: timeout
SystemError: <method 'get' of 'dict' objects> returned a result with an error set
File "meinheld/mlogging.py", line 187, in _access
'h': environ.get('REMOTE_ADDR', '-'),
SystemError: <method 'get' of 'dict' objects> returned a result with an error set
```
Low priority: 12x in 2yrs, but might worth looking into with spare time.
| [
{
"content": "import newrelic.agent\nfrom django.http import HttpResponseBadRequest, JsonResponse\nfrom django.shortcuts import render\nfrom django.utils.translation import gettext_lazy as _\nfrom django.views.decorators.http import require_GET\n\nfrom kuma.core.decorators import (\n block_user_agents,\n ... | [
{
"content": "import newrelic.agent\nfrom django.http import HttpResponseBadRequest, JsonResponse\nfrom django.shortcuts import render\nfrom django.utils.translation import gettext_lazy as _\nfrom django.views.decorators.http import require_GET\n\nfrom kuma.core.decorators import (\n block_user_agents,\n ... | diff --git a/kuma/wiki/views/misc.py b/kuma/wiki/views/misc.py
index 958b29250d0..4347233e4cf 100644
--- a/kuma/wiki/views/misc.py
+++ b/kuma/wiki/views/misc.py
@@ -84,7 +84,7 @@ def autosuggest_documents(request):
# Generates a list of acceptable docs
docs_list = []
- for doc in docs:
+ for doc in docs[:100]:
data = doc.get_json_data()
data["label"] += " [" + doc.locale + "]"
docs_list.append(data)
|
DjangoGirls__djangogirls-926 | DataError: value too long for type character varying(30)
Sentry Issue: [DJANGO-GIRLS-WEBSITE-60](https://django-girls.sentry.io/issues/4635355583/?referrer=github_integration)
```
StringDataRightTruncation: value too long for type character varying(30)
File "django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
DataError: value too long for type character varying(30)
(20 additional frame(s) were not displayed)
...
File "organize/views.py", line 50, in done
application = EventApplication.object.create(**data_dict)
File "organize/models.py", line 75, in create
return super().create(**data_dict)
File "organize/models.py", line 146, in save
super().save(*args, **kwargs)
```
DataError: value too long for type character varying(30)
Sentry Issue: [DJANGO-GIRLS-WEBSITE-60](https://django-girls.sentry.io/issues/4635355583/?referrer=github_integration)
```
StringDataRightTruncation: value too long for type character varying(30)
File "django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
DataError: value too long for type character varying(30)
(20 additional frame(s) were not displayed)
...
File "organize/views.py", line 50, in done
application = EventApplication.object.create(**data_dict)
File "organize/models.py", line 75, in create
return super().create(**data_dict)
File "organize/models.py", line 146, in save
super().save(*args, **kwargs)
```
| [
{
"content": "from datetime import date, datetime, timedelta\n\nimport requests\nfrom django.utils import timezone\nfrom django_date_extensions.fields import ApproximateDate\n\nfrom .models import Event\n\nNOMINATIM_URL = \"https://nominatim.openstreetmap.org/search\"\n\n\ndef get_coordinates_for_city(city, cou... | [
{
"content": "from datetime import date, datetime, timedelta\n\nimport requests\nfrom django.utils import timezone\nfrom django_date_extensions.fields import ApproximateDate\n\nfrom .models import Event\n\nNOMINATIM_URL = \"https://nominatim.openstreetmap.org/search\"\n\n\ndef get_coordinates_for_city(city, cou... | diff --git a/core/utils.py b/core/utils.py
index b6800a327..ef589f72f 100644
--- a/core/utils.py
+++ b/core/utils.py
@@ -15,7 +15,9 @@ def get_coordinates_for_city(city, country):
try:
data = req.json()[0]
- return f'{data["lat"]}, {data["lon"]}'
+ formatted_lat = "{:.7f}".format(float(data["lat"]))
+ formatted_lon = "{:.7f}".format(float(data["lon"]))
+ return f"{formatted_lat}, {formatted_lon}"
except (IndexError, KeyError):
return None
diff --git a/tests/core/test_utils.py b/tests/core/test_utils.py
index 1036e60fa..c52852195 100644
--- a/tests/core/test_utils.py
+++ b/tests/core/test_utils.py
@@ -24,7 +24,9 @@ def test_get_coordinates_for_city(mock_get):
"q": "London, UK",
},
)
- assert result == "1.23, 4.56"
+ expected_lat = "{:.7f}".format(float("1.23"))
+ expected_lon = "{:.7f}".format(float("4.56"))
+ assert result == f"{expected_lat}, {expected_lon}"
@mock.patch("requests.get")
|
qtile__qtile-1578 | qtile error to load
| [
{
"content": "# Copyright (c) 2008, Aldo Cortesi. All rights reserved.\n# Copyright (c) 2011, Florian Mounier\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restricti... | [
{
"content": "# Copyright (c) 2008, Aldo Cortesi. All rights reserved.\n# Copyright (c) 2011, Florian Mounier\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restricti... | diff --git a/libqtile/scripts/qtile.py b/libqtile/scripts/qtile.py
index 2b919a450f..6b64057f43 100644
--- a/libqtile/scripts/qtile.py
+++ b/libqtile/scripts/qtile.py
@@ -29,7 +29,11 @@
from libqtile import confreader
from libqtile.backend.x11 import xcore
-locale.setlocale(locale.LC_ALL, locale.getdefaultlocale()) # type: ignore
+try:
+ locale.setlocale(locale.LC_ALL, locale.getdefaultlocale()) # type: ignore
+except locale.Error:
+ pass
+
try:
import pkg_resources
|
archlinux__archinstall-2190 | Password visible on Profiles list
After creating a new user, the "Password" is visible in plain text under the list of available profiles, unless this is the intended behavior?


| [
{
"content": "import logging\nimport os\nimport sys\nimport unicodedata\nfrom enum import Enum\n\nfrom pathlib import Path\nfrom typing import Dict, Union, List, Any, Callable, Optional\nfrom dataclasses import asdict, is_dataclass\n\nfrom .storage import storage\n\n\nclass FormattedOutput:\n\n\t@classmethod\n\... | [
{
"content": "import logging\nimport os\nimport sys\nimport unicodedata\nfrom enum import Enum\n\nfrom pathlib import Path\nfrom typing import Dict, Union, List, Any, Callable, Optional\nfrom dataclasses import asdict, is_dataclass\n\nfrom .storage import storage\n\n\nclass FormattedOutput:\n\n\t@classmethod\n\... | diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py
index 945a6c4fdb..62a1ba2738 100644
--- a/archinstall/lib/output.py
+++ b/archinstall/lib/output.py
@@ -38,6 +38,8 @@ def _get_values(
raise ValueError('Unsupported formatting call')
elif hasattr(o, 'table_data'):
return o.table_data()
+ elif hasattr(o, 'json'):
+ return o.json()
elif is_dataclass(o):
return asdict(o)
else:
|
pyca__cryptography-2855 | Redundant exclude in setup.py's find_packages
I think the call can be reduced from
``` python
find_packages(
where="src", exclude=["_cffi_src", "_cffi_src.*", "tests", "tests.*"]
)
```
to
``` python
find_packages(where="src", exclude=["_cffi_src", "_cffi_src.*"])
```
because of the `where="src"`. I verified by printing the output from setup.py
| [
{
"content": "#!/usr/bin/env python\n\n# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\nfrom __future__ import absolute_import, division, print_function\n\nimport os\nimport pl... | [
{
"content": "#!/usr/bin/env python\n\n# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\nfrom __future__ import absolute_import, division, print_function\n\nimport os\nimport pl... | diff --git a/setup.py b/setup.py
index 88dfd7de72a4..d104ac3a2104 100644
--- a/setup.py
+++ b/setup.py
@@ -302,9 +302,7 @@ def run_tests(self):
],
package_dir={"": "src"},
- packages=find_packages(
- where="src", exclude=["_cffi_src", "_cffi_src.*", "tests", "tests.*"]
- ),
+ packages=find_packages(where="src", exclude=["_cffi_src", "_cffi_src.*"]),
include_package_data=True,
install_requires=requirements,
|
docker__docker-py-3099 | Unable to use docker to run containers started from Jupyter Notebook
Hello,
I'm currently following this tutorial: https://github.com/aws/amazon-sagemaker-examples/blob/main/sagemaker-pipelines/tabular/local-mode/sagemaker-pipelines-local-mode.ipynb
I'm getting the following error from trying to run it (it uses docker in the background to run contaiiners). It executes everything when the following command is run:
``` python
execution = pipeline.start()
```
I get the following error:
```python
Creating q0r36pja78-algo-1-ywafn ...
Creating q0r36pja78-algo-1-ywafn ... done
Attaching to q0r36pja78-algo-1-ywafn
Traceback (most recent call last):
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\runpy.py", line 87, in _run_code
exec(code, run_globals)
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\Scripts\docker-compose.exe\__main__.py", line 7, in <module>
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\main.py", line 81, in main
command_func()
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\main.py", line 203, in perform_command
handler(command, command_options)
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\metrics\decorator.py", line 18, in wrapper
result = fn(*args, **kwargs)
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\main.py", line 1216, in up
cascade_starter = log_printer.run()
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\log_printer.py", line 88, in run
for line in consume_queue(queue, self.cascade_stop):
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\log_printer.py", line 250, in consume_queue
raise item.exc
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\cli\log_printer.py", line 162, in tail_container_logs
for item in build_log_generator(container, log_args):
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\utils.py", line 50, in split_buffer
for data in stream_as_text(stream):
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\compose\utils.py", line 26, in stream_as_text
for data in stream:
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\docker\types\daemon.py", line 32, in __next__
return next(self._stream)
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\docker\api\client.py", line 418, in <genexpr>
gen = (data for (_, data) in gen)
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\docker\utils\socket.py", line 95, in <genexpr>
return ((STDOUT, frame) for frame in frames_iter_tty(socket))
File "C:\Users\franc\anaconda3\envs\sm-pipelines-modelbuild\lib\site-packages\docker\utils\socket.py", line 128, in frames_iter_tty
if len(result) == 0:
TypeError: object of type 'int' has no len()
Pipeline step 'AbaloneProcess' FAILED. Failure message is: RuntimeError: Failed to run: ['docker-compose', '-f', 'C:\\Users\\franc\\AppData\\Local\\Temp\\tmpga4umz96\\docker-compose.yaml', 'up', '--build', '--abort-on-container-exit']
Pipeline execution c0a11456-aec5-48ec-adde-4ee45085efa8 FAILED because step 'AbaloneProcess' failed.
```
Version of the modules:
Python 3.8.16
docker 6.0.1
docker-compose 1.29.2
docker desktop 4.16.3
Thanks
| [
{
"content": "import errno\nimport os\nimport select\nimport socket as pysocket\nimport struct\n\ntry:\n from ..transport import NpipeSocket\nexcept ImportError:\n NpipeSocket = type(None)\n\n\nSTDOUT = 1\nSTDERR = 2\n\n\nclass SocketError(Exception):\n pass\n\n\n# NpipeSockets have their own error typ... | [
{
"content": "import errno\nimport os\nimport select\nimport socket as pysocket\nimport struct\n\ntry:\n from ..transport import NpipeSocket\nexcept ImportError:\n NpipeSocket = type(None)\n\n\nSTDOUT = 1\nSTDERR = 2\n\n\nclass SocketError(Exception):\n pass\n\n\n# NpipeSockets have their own error typ... | diff --git a/docker/utils/socket.py b/docker/utils/socket.py
index 5aca30b17..47cb44f62 100644
--- a/docker/utils/socket.py
+++ b/docker/utils/socket.py
@@ -49,7 +49,7 @@ def read(socket, n=4096):
if is_pipe_ended:
# npipes don't support duplex sockets, so we interpret
# a PIPE_ENDED error as a close operation (0-length read).
- return 0
+ return ''
raise
|
archlinux__archinstall-2278 | no default value for uki key in configurations.json
(archinstall 2.7.0)
When using archinstall in a system with no support for uefi, the user is not prompted to choose a value for the uki key. However, when running archinstall with a config file without a uki key defined, it errors out since there is no such key defined with a default value.
At least thats what I understood from the problem looking at PR(https://github.com/archlinux/archinstall/pull/1519).
Adding uki: false in the config file fixed this for me.
by the way, how is uefi supported checked? I though it was impossible to know from OS side
| [
{
"content": "from pathlib import Path\nfrom typing import Any, TYPE_CHECKING, Optional\n\nimport archinstall\nfrom archinstall import info, debug\nfrom archinstall import SysInfo\nfrom archinstall.lib import locale\nfrom archinstall.lib import disk\nfrom archinstall.lib.global_menu import GlobalMenu\nfrom arch... | [
{
"content": "from pathlib import Path\nfrom typing import Any, TYPE_CHECKING, Optional\n\nimport archinstall\nfrom archinstall import info, debug\nfrom archinstall import SysInfo\nfrom archinstall.lib import locale\nfrom archinstall.lib import disk\nfrom archinstall.lib.global_menu import GlobalMenu\nfrom arch... | diff --git a/archinstall/scripts/guided.py b/archinstall/scripts/guided.py
index 6acbdbf3b2..44b0ae17f6 100644
--- a/archinstall/scripts/guided.py
+++ b/archinstall/scripts/guided.py
@@ -158,7 +158,7 @@ def perform_installation(mountpoint: Path):
installation.add_bootloader(
archinstall.arguments["bootloader"],
- archinstall.arguments["uki"]
+ archinstall.arguments.get('uki', False)
)
# If user selected to copy the current ISO network configuration
|
python-gitlab__python-gitlab-1213 | RefreshMixin.refresh() doesn't remove removed attributes
## Description of the problem, including code/CLI snippet
When attributes disappear from an object on the server `RefreshMixin.refresh()` doesn't remove them.
For instance if a job that has artifacts will have an `artifacts_file` attribute. If you call `.delete_artifacts()` on it, then call `.refresh()` the `artifacts_file` attribute will still be there.
```bash
# get a job with artifacts
job = project.jobs.get(job_id)
# will succeed
assert hasattr(job, "artifacts_file")
# now delete the artifacts from the server
job.delete_artifacts()
# This will fail because the artifacts_file is still there; refresh() didn't remove it
job.refresh()
assert not hasattr(job, "artifacts_file")
# If you get the job again from the project it'll be fine
job = project.jobs.get(job_id)
assert not hasattr(job, "artifacts_file")
```
```python
```
## Expected Behavior
I would expect that the attributes dict on any object should be exactly the same between a freshly retrieved object and an old object after calling `.refresh()`
```python
o.refresh()
# After a refresh this should always be true
o.attributes == o.manager.get(o.id).attributes
```
## Actual Behavior
They're not equal
## Specifications
- python-gitlab version: `v2.4.0`
- API version you are using (v3/v4): `v4`
- Gitlab server version (or gitlab.com): `13.2.3`
| [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU Lesser General Public License as published by\n# the Free Software Foundation, either version 3 ... | [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU Lesser General Public License as published by\n# the Free Software Foundation, either version 3 ... | diff --git a/gitlab/base.py b/gitlab/base.py
index 40bc06ce4..ad3533913 100644
--- a/gitlab/base.py
+++ b/gitlab/base.py
@@ -131,7 +131,7 @@ def _create_managers(self):
def _update_attrs(self, new_attrs):
self.__dict__["_updated_attrs"] = {}
- self.__dict__["_attrs"].update(new_attrs)
+ self.__dict__["_attrs"] = new_attrs
def get_id(self):
"""Returns the id of the resource."""
diff --git a/gitlab/tests/test_base.py b/gitlab/tests/test_base.py
index 58c0d4748..a0adcb03d 100644
--- a/gitlab/tests/test_base.py
+++ b/gitlab/tests/test_base.py
@@ -128,6 +128,13 @@ def test_update_attrs(self, fake_manager):
assert {"foo": "foo", "bar": "bar"} == obj._attrs
assert {} == obj._updated_attrs
+ def test_update_attrs_deleted(self, fake_manager):
+ obj = FakeObject(fake_manager, {"foo": "foo", "bar": "bar"})
+ obj.bar = "baz"
+ obj._update_attrs({"foo": "foo"})
+ assert {"foo": "foo"} == obj._attrs
+ assert {} == obj._updated_attrs
+
def test_create_managers(self, fake_gitlab, fake_manager):
class ObjectWithManager(FakeObject):
_managers = (("fakes", "FakeManager"),)
|
carltongibson__django-filter-844 | Use DRF BooleanFilter as default for DRF FilterSet
When using Django-filter together with Django Rest Framework, shouldn't the `BooleanFilter` for DRF be used as default for a DRF `FilterSet`?
Currently (**Python 2.7.14**, **Django 1.11.6**, **DRF 3.7.0**, **Django-Filter 1.1.0**) I have to manually specify my boolean fields to use the DRF BooleanFilter to accept lowercase `true`/`false`.
| [
{
"content": "from copy import deepcopy\n\nfrom django.db import models\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom django_filters import filterset\n\nfrom .. import compat\nfrom .filters import BooleanFilter, IsoDateTimeFilter\n\nFILTER_FOR_DBFIELD_DEFAULTS = deepcopy(filterset.FILTER_FOR_... | [
{
"content": "\nfrom __future__ import absolute_import\n\nfrom copy import deepcopy\n\nfrom django import forms\nfrom django.db import models\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom django_filters import filterset\n\nfrom .. import compat, utils\nfrom .filters import BooleanFilter, IsoD... | diff --git a/django_filters/rest_framework/filterset.py b/django_filters/rest_framework/filterset.py
index 9a984f25f..2f86742fd 100644
--- a/django_filters/rest_framework/filterset.py
+++ b/django_filters/rest_framework/filterset.py
@@ -16,6 +16,7 @@
FILTER_FOR_DBFIELD_DEFAULTS.update({
models.DateTimeField: {'filter_class': IsoDateTimeFilter},
models.BooleanField: {'filter_class': BooleanFilter},
+ models.NullBooleanField: {'filter_class': BooleanFilter},
})
diff --git a/tests/models.py b/tests/models.py
index 848e7f36e..0089713ec 100644
--- a/tests/models.py
+++ b/tests/models.py
@@ -51,6 +51,7 @@ class User(models.Model):
status = models.IntegerField(choices=STATUS_CHOICES, default=0)
is_active = models.BooleanField(default=False)
+ is_employed = models.NullBooleanField(default=False)
favorite_books = models.ManyToManyField('Book', related_name='lovers')
diff --git a/tests/rest_framework/test_filterset.py b/tests/rest_framework/test_filterset.py
index bc04ba981..58833b357 100644
--- a/tests/rest_framework/test_filterset.py
+++ b/tests/rest_framework/test_filterset.py
@@ -31,6 +31,12 @@ def test_booleanfilter_widget(self):
self.assertIsInstance(result, filters.BooleanFilter)
self.assertEqual(result.extra['widget'], BooleanWidget)
+ def test_booleanfilter_widget_nullbooleanfield(self):
+ field = User._meta.get_field('is_employed')
+ result = FilterSet.filter_for_field(field, 'is_employed')
+ self.assertIsInstance(result, filters.BooleanFilter)
+ self.assertEqual(result.extra['widget'], BooleanWidget)
+
@skipIf(is_crispy(), 'django_crispy_forms must be installed')
@override_settings(INSTALLED_APPS=settings.INSTALLED_APPS + ('crispy_forms', ))
|
PyGithub__PyGithub-946 | PaginatedList reversed property loses http headers
In reversed(), 'headers' parameter is not passed to PaginatedList(). It makes some APIs not reversible. For example, get_stargazers_with_dates() which requires "Accept: application/vnd.github.v3.star+json" header in the API call.
| [
{
"content": "# -*- coding: utf-8 -*-\n\n############################ Copyrights and license ############################\n# #\n# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #\n# Copyright 2012 Zearin <... | [
{
"content": "# -*- coding: utf-8 -*-\n\n############################ Copyrights and license ############################\n# #\n# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #\n# Copyright 2012 Zearin <... | diff --git a/github/PaginatedList.py b/github/PaginatedList.py
index f67fdca038..586b4a8ed7 100644
--- a/github/PaginatedList.py
+++ b/github/PaginatedList.py
@@ -175,7 +175,7 @@ def _getLastPageUrl(self):
@property
def reversed(self):
- r = PaginatedList(self.__contentClass, self.__requester, self.__firstUrl, self.__firstParams)
+ r = PaginatedList(self.__contentClass, self.__requester, self.__firstUrl, self.__firstParams, self.__headers, self.__list_item)
r.__reverse()
return r
diff --git a/github/tests/AllTests.py b/github/tests/AllTests.py
index 5e92014616..ba787fca4d 100644
--- a/github/tests/AllTests.py
+++ b/github/tests/AllTests.py
@@ -122,3 +122,4 @@
from Issue494 import *
from Issue572 import *
from Issue937 import *
+from Issue945 import *
diff --git a/github/tests/Issue945.py b/github/tests/Issue945.py
new file mode 100644
index 0000000000..58e87806ff
--- /dev/null
+++ b/github/tests/Issue945.py
@@ -0,0 +1,53 @@
+# -*- coding: utf-8 -*-
+
+############################ Copyrights and license ############################
+# #
+# Copyright 2018 Kelvin Wong (https://github.com/netsgnut) #
+# #
+# This file is part of PyGithub. #
+# http://pygithub.readthedocs.io/ #
+# #
+# PyGithub is free software: you can redistribute it and/or modify it under #
+# the terms of the GNU Lesser General Public License as published by the Free #
+# Software Foundation, either version 3 of the License, or (at your option) #
+# any later version. #
+# #
+# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
+# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
+# details. #
+# #
+# You should have received a copy of the GNU Lesser General Public License #
+# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
+# #
+################################################################################
+
+import Framework
+
+import github
+
+
+class Issue945(Framework.TestCase): # https://github.com/PyGithub/PyGithub/issues/945
+ def setUp(self):
+ Framework.TestCase.setUp(self)
+ self.repo = self.g.get_user("openframeworks").get_repo("openFrameworks")
+ self.list = self.repo.get_issues()
+ self.list_with_headers = self.repo.get_stargazers_with_dates()
+
+ def testReservedPaginatedListAttributePreservation(self):
+ r1 = self.list.reversed
+ self.assertEqual(self.list._PaginatedList__contentClass, r1._PaginatedList__contentClass)
+ self.assertEqual(self.list._PaginatedList__requester, r1._PaginatedList__requester)
+ self.assertEqual(self.list._PaginatedList__firstUrl, r1._PaginatedList__firstUrl)
+ self.assertEqual(self.list._PaginatedList__firstParams, r1._PaginatedList__firstParams)
+ self.assertEqual(self.list._PaginatedList__headers, r1._PaginatedList__headers)
+ self.assertEqual(self.list._PaginatedList__list_item, r1._PaginatedList__list_item)
+
+ self.assertTrue(self.list_with_headers._PaginatedList__headers is not None)
+ r2 = self.list_with_headers.reversed
+ self.assertEqual(self.list_with_headers._PaginatedList__contentClass, r2._PaginatedList__contentClass)
+ self.assertEqual(self.list_with_headers._PaginatedList__requester, r2._PaginatedList__requester)
+ self.assertEqual(self.list_with_headers._PaginatedList__firstUrl, r2._PaginatedList__firstUrl)
+ self.assertEqual(self.list_with_headers._PaginatedList__firstParams, r2._PaginatedList__firstParams)
+ self.assertEqual(self.list_with_headers._PaginatedList__headers, r2._PaginatedList__headers)
+ self.assertEqual(self.list_with_headers._PaginatedList__list_item, r2._PaginatedList__list_item)
diff --git a/github/tests/ReplayData/Issue945.setUp.txt b/github/tests/ReplayData/Issue945.setUp.txt
new file mode 100644
index 0000000000..0a66bed2ae
--- /dev/null
+++ b/github/tests/ReplayData/Issue945.setUp.txt
@@ -0,0 +1,22 @@
+https
+GET
+api.github.com
+None
+/users/openframeworks
+{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
+None
+200
+[('Server', 'GitHub.com'), ('Date', 'Fri, 26 Oct 2018 06:02:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Status', '200 OK'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4973'), ('X-RateLimit-Reset', '1540536267'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP'), ('ETag', 'W/"490a721bce7bb5817a38a53711404075"'), ('Last-Modified', 'Wed, 18 Nov 2015 16:33:25 GMT'), ('X-OAuth-Scopes', 'repo'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Access-Control-Expose-Headers', 'ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '1; mode=block'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'ED32:235D:2CFA30:625A06:5BD2ADFE')]
+{"login":"openframeworks","id":142866,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE0Mjg2Ng==","avatar_url":"https://avatars2.githubusercontent.com/u/142866?v=4","gravatar_id":"","url":"https://api.github.com/users/openframeworks","html_url":"https://github.com/openframeworks","followers_url":"https://api.github.com/users/openframeworks/followers","following_url":"https://api.github.com/users/openframeworks/following{/other_user}","gists_url":"https://api.github.com/users/openframeworks/gists{/gist_id}","starred_url":"https://api.github.com/users/openframeworks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openframeworks/subscriptions","organizations_url":"https://api.github.com/users/openframeworks/orgs","repos_url":"https://api.github.com/users/openframeworks/repos","events_url":"https://api.github.com/users/openframeworks/events{/privacy}","received_events_url":"https://api.github.com/users/openframeworks/received_events","type":"Organization","site_admin":false,"name":"openFrameworks","company":null,"blog":"http://openframeworks.cc/","location":null,"email":null,"hireable":null,"bio":null,"public_repos":9,"public_gists":0,"followers":0,"following":0,"created_at":"2009-10-21T21:54:37Z","updated_at":"2015-11-18T16:33:25Z"}
+
+https
+GET
+api.github.com
+None
+/repos/openframeworks/openFrameworks
+{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
+None
+200
+[('Server', 'GitHub.com'), ('Date', 'Fri, 26 Oct 2018 06:02:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Status', '200 OK'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4972'), ('X-RateLimit-Reset', '1540536267'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP'), ('ETag', 'W/"501068d9a3e67fb624ce5e83e1270d41"'), ('Last-Modified', 'Fri, 26 Oct 2018 04:18:01 GMT'), ('X-OAuth-Scopes', 'repo'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Access-Control-Expose-Headers', 'ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '1; mode=block'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'ACCA:235E:3C0006:7729D5:5BD2ADFF')]
+{"id":345337,"node_id":"MDEwOlJlcG9zaXRvcnkzNDUzMzc=","name":"openFrameworks","full_name":"openframeworks/openFrameworks","private":false,"owner":{"login":"openframeworks","id":142866,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE0Mjg2Ng==","avatar_url":"https://avatars2.githubusercontent.com/u/142866?v=4","gravatar_id":"","url":"https://api.github.com/users/openframeworks","html_url":"https://github.com/openframeworks","followers_url":"https://api.github.com/users/openframeworks/followers","following_url":"https://api.github.com/users/openframeworks/following{/other_user}","gists_url":"https://api.github.com/users/openframeworks/gists{/gist_id}","starred_url":"https://api.github.com/users/openframeworks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openframeworks/subscriptions","organizations_url":"https://api.github.com/users/openframeworks/orgs","repos_url":"https://api.github.com/users/openframeworks/repos","events_url":"https://api.github.com/users/openframeworks/events{/privacy}","received_events_url":"https://api.github.com/users/openframeworks/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/openframeworks/openFrameworks","description":"openFrameworks is a community-developed cross platform toolkit for creative coding in C++.","fork":false,"url":"https://api.github.com/repos/openframeworks/openFrameworks","forks_url":"https://api.github.com/repos/openframeworks/openFrameworks/forks","keys_url":"https://api.github.com/repos/openframeworks/openFrameworks/keys{/key_id}","collaborators_url":"https://api.github.com/repos/openframeworks/openFrameworks/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/openframeworks/openFrameworks/teams","hooks_url":"https://api.github.com/repos/openframeworks/openFrameworks/hooks","issue_events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/events{/number}","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/events","assignees_url":"https://api.github.com/repos/openframeworks/openFrameworks/assignees{/user}","branches_url":"https://api.github.com/repos/openframeworks/openFrameworks/branches{/branch}","tags_url":"https://api.github.com/repos/openframeworks/openFrameworks/tags","blobs_url":"https://api.github.com/repos/openframeworks/openFrameworks/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/openframeworks/openFrameworks/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/openframeworks/openFrameworks/git/refs{/sha}","trees_url":"https://api.github.com/repos/openframeworks/openFrameworks/git/trees{/sha}","statuses_url":"https://api.github.com/repos/openframeworks/openFrameworks/statuses/{sha}","languages_url":"https://api.github.com/repos/openframeworks/openFrameworks/languages","stargazers_url":"https://api.github.com/repos/openframeworks/openFrameworks/stargazers","contributors_url":"https://api.github.com/repos/openframeworks/openFrameworks/contributors","subscribers_url":"https://api.github.com/repos/openframeworks/openFrameworks/subscribers","subscription_url":"https://api.github.com/repos/openframeworks/openFrameworks/subscription","commits_url":"https://api.github.com/repos/openframeworks/openFrameworks/commits{/sha}","git_commits_url":"https://api.github.com/repos/openframeworks/openFrameworks/git/commits{/sha}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/comments{/number}","issue_comment_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/comments{/number}","contents_url":"https://api.github.com/repos/openframeworks/openFrameworks/contents/{+path}","compare_url":"https://api.github.com/repos/openframeworks/openFrameworks/compare/{base}...{head}","merges_url":"https://api.github.com/repos/openframeworks/openFrameworks/merges","archive_url":"https://api.github.com/repos/openframeworks/openFrameworks/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/openframeworks/openFrameworks/downloads","issues_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues{/number}","pulls_url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls{/number}","milestones_url":"https://api.github.com/repos/openframeworks/openFrameworks/milestones{/number}","notifications_url":"https://api.github.com/repos/openframeworks/openFrameworks/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/labels{/name}","releases_url":"https://api.github.com/repos/openframeworks/openFrameworks/releases{/id}","deployments_url":"https://api.github.com/repos/openframeworks/openFrameworks/deployments","created_at":"2009-10-21T21:55:54Z","updated_at":"2018-10-26T04:18:01Z","pushed_at":"2018-10-18T15:56:59Z","git_url":"git://github.com/openframeworks/openFrameworks.git","ssh_url":"git@github.com:openframeworks/openFrameworks.git","clone_url":"https://github.com/openframeworks/openFrameworks.git","svn_url":"https://github.com/openframeworks/openFrameworks","homepage":"http://openframeworks.cc","size":1997625,"stargazers_count":6453,"watchers_count":6453,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2143,"mirror_url":null,"archived":false,"open_issues_count":874,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":2143,"open_issues":874,"watchers":6453,"default_branch":"patch-release","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"openframeworks","id":142866,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE0Mjg2Ng==","avatar_url":"https://avatars2.githubusercontent.com/u/142866?v=4","gravatar_id":"","url":"https://api.github.com/users/openframeworks","html_url":"https://github.com/openframeworks","followers_url":"https://api.github.com/users/openframeworks/followers","following_url":"https://api.github.com/users/openframeworks/following{/other_user}","gists_url":"https://api.github.com/users/openframeworks/gists{/gist_id}","starred_url":"https://api.github.com/users/openframeworks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openframeworks/subscriptions","organizations_url":"https://api.github.com/users/openframeworks/orgs","repos_url":"https://api.github.com/users/openframeworks/repos","events_url":"https://api.github.com/users/openframeworks/events{/privacy}","received_events_url":"https://api.github.com/users/openframeworks/received_events","type":"Organization","site_admin":false},"network_count":2143,"subscribers_count":514}
+
diff --git a/github/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt b/github/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt
new file mode 100644
index 0000000000..06d0715b20
--- /dev/null
+++ b/github/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt
@@ -0,0 +1,22 @@
+https
+GET
+api.github.com
+None
+/repos/openframeworks/openFrameworks/issues
+{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
+None
+200
+[('Server', 'GitHub.com'), ('Date', 'Fri, 26 Oct 2018 06:02:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Status', '200 OK'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4971'), ('X-RateLimit-Reset', '1540536267'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP'), ('ETag', 'W/"77d135814a1f98b76a3f0c1819433035"'), ('X-OAuth-Scopes', 'repo'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '<https://api.github.com/repositories/345337/issues?page=2>; rel="next", <https://api.github.com/repositories/345337/issues?page=30>; rel="last"'), ('Access-Control-Expose-Headers', 'ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '1; mode=block'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'ACEC:235E:3C0061:772AA8:5BD2AE00')]
+[{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6158","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6158/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6158/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6158/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6158","id":372772260,"node_id":"MDU6SXNzdWUzNzI3NzIyNjA=","number":6158,"title":"Compiling libraries msys2 error: \"This package doesn’t support your platform\" ","user":{"login":"invisiblesignal","id":44383181,"node_id":"MDQ6VXNlcjQ0MzgzMTgx","avatar_url":"https://avatars0.githubusercontent.com/u/44383181?v=4","gravatar_id":"","url":"https://api.github.com/users/invisiblesignal","html_url":"https://github.com/invisiblesignal","followers_url":"https://api.github.com/users/invisiblesignal/followers","following_url":"https://api.github.com/users/invisiblesignal/following{/other_user}","gists_url":"https://api.github.com/users/invisiblesignal/gists{/gist_id}","starred_url":"https://api.github.com/users/invisiblesignal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invisiblesignal/subscriptions","organizations_url":"https://api.github.com/users/invisiblesignal/orgs","repos_url":"https://api.github.com/users/invisiblesignal/repos","events_url":"https://api.github.com/users/invisiblesignal/events{/privacy}","received_events_url":"https://api.github.com/users/invisiblesignal/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-23T01:58:47Z","updated_at":"2018-10-23T01:58:47Z","closed_at":null,"author_association":"NONE","body":"New user trying to install v0.10.0 Windows Qt Creator/msys2. I'm following setup guide here (https://openframeworks.cc/setup/msys2/) and have problem compiling oF libraries... in MINGW32 shell after typing \"make\" I get the following error: “HOST_OS=MINGW32_NT-10.0\r\nmakefileCommon/config.shared.mk:207: *** This package doesn’t support your platform, probably you downloaded the wrong package?. Stop.”\r\n\r\nI tried both v0.10.0_msys2_release as well as the v20181009_msys2_nightly, get same error in both cases.\r\n\r\nAny advice?"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6157","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6157/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6157/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6157/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6157","id":372373003,"node_id":"MDU6SXNzdWUzNzIzNzMwMDM=","number":6157,"title":"suggestion of improvement : ofRectangle operator","user":{"login":"dimitre","id":58289,"node_id":"MDQ6VXNlcjU4Mjg5","avatar_url":"https://avatars1.githubusercontent.com/u/58289?v=4","gravatar_id":"","url":"https://api.github.com/users/dimitre","html_url":"https://github.com/dimitre","followers_url":"https://api.github.com/users/dimitre/followers","following_url":"https://api.github.com/users/dimitre/following{/other_user}","gists_url":"https://api.github.com/users/dimitre/gists{/gist_id}","starred_url":"https://api.github.com/users/dimitre/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dimitre/subscriptions","organizations_url":"https://api.github.com/users/dimitre/orgs","repos_url":"https://api.github.com/users/dimitre/repos","events_url":"https://api.github.com/users/dimitre/events{/privacy}","received_events_url":"https://api.github.com/users/dimitre/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-22T01:11:21Z","updated_at":"2018-10-22T01:11:21Z","closed_at":null,"author_association":"NONE","body":"it would be great to be able to multiply an ofRectangle by and int or float, as in GLSL or glm.\r\n\r\nexample: \r\n```c++\r\nfloat scale = 2.0;\r\nfbo.draw(rect * scale);\r\n```"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6156","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6156/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6156/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6156/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6156","id":372300625,"node_id":"MDU6SXNzdWUzNzIzMDA2MjU=","number":6156,"title":"ofSoundBuffer::getChannel() causes exception","user":{"login":"hugoymh","id":34024260,"node_id":"MDQ6VXNlcjM0MDI0MjYw","avatar_url":"https://avatars2.githubusercontent.com/u/34024260?v=4","gravatar_id":"","url":"https://api.github.com/users/hugoymh","html_url":"https://github.com/hugoymh","followers_url":"https://api.github.com/users/hugoymh/followers","following_url":"https://api.github.com/users/hugoymh/following{/other_user}","gists_url":"https://api.github.com/users/hugoymh/gists{/gist_id}","starred_url":"https://api.github.com/users/hugoymh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hugoymh/subscriptions","organizations_url":"https://api.github.com/users/hugoymh/orgs","repos_url":"https://api.github.com/users/hugoymh/repos","events_url":"https://api.github.com/users/hugoymh/events{/privacy}","received_events_url":"https://api.github.com/users/hugoymh/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-21T10:34:30Z","updated_at":"2018-10-21T10:36:45Z","closed_at":null,"author_association":"NONE","body":"On MacOS, Xcode 9.4.1\r\n\r\n```\r\nvoid ofSoundBuffer::getChannel(ofSoundBuffer & targetBuffer, std::size_t sourceChannel) const {\r\n//...\r\n\tif(channels == 1){\r\n //third argument is zero\r\n\t\tcopyTo(targetBuffer, getNumFrames(), 0, 0);\r\n\t}\r\n//...\r\n}\r\n```\r\n```\r\nvoid ofSoundBuffer::copyTo(ofSoundBuffer & soundBuffer, std::size_t nFrames, std::size_t outChannels,std::size_t fromFrame,bool loop) const{\r\n\tsoundBuffer.resize(nFrames*outChannels);\r\n\tsoundBuffer.setNumChannels(outChannels);\r\n\tsoundBuffer.setSampleRate(samplerate);\r\n//third argument (outChannels) passed as zero\r\n\tcopyTo(&soundBuffer[0], nFrames, outChannels, fromFrame, loop);\r\n}\r\n\r\n```\r\n```\r\nvoid ofSoundBuffer::setNumChannels(int channels){\r\n//this line assigns this->channels to zero\t\r\nthis->channels = channels;\r\n\tcheckSizeAndChannelsConsistency(\"setNumChannels\");\r\n}\r\n```\r\n```\r\nbool ofSoundBuffer::checkSizeAndChannelsConsistency(const std::string& _function ) {\r\n\tstd::string function = _function;\r\n\r\n\tif ( function.size()!= 0 ){\r\n\t\tfunction += \": \";\r\n\t}\r\n//if statement results in division by zero, causing exception\r\n\tif ( (size()%channels) != 0 ){\r\n\t\tofLogWarning(\"ofSoundBuffer\") << function << \"channel count \" << channels << \" is not consistent with sample count \" << size() << \" (non-zero remainder)\";\r\n\t\treturn false;\r\n\t}\r\n\treturn true;\r\n}\r\n```\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6155","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6155/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6155/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6155/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6155","id":371599846,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI0MDExMTQ0","number":6155,"title":"Make ofSystemTextBoxDialog return empty string on cancel.","user":{"login":"ShadowMitia","id":3752363,"node_id":"MDQ6VXNlcjM3NTIzNjM=","avatar_url":"https://avatars1.githubusercontent.com/u/3752363?v=4","gravatar_id":"","url":"https://api.github.com/users/ShadowMitia","html_url":"https://github.com/ShadowMitia","followers_url":"https://api.github.com/users/ShadowMitia/followers","following_url":"https://api.github.com/users/ShadowMitia/following{/other_user}","gists_url":"https://api.github.com/users/ShadowMitia/gists{/gist_id}","starred_url":"https://api.github.com/users/ShadowMitia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ShadowMitia/subscriptions","organizations_url":"https://api.github.com/users/ShadowMitia/orgs","repos_url":"https://api.github.com/users/ShadowMitia/repos","events_url":"https://api.github.com/users/ShadowMitia/events{/privacy}","received_events_url":"https://api.github.com/users/ShadowMitia/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-18T15:56:58Z","updated_at":"2018-10-18T15:56:58Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6155","html_url":"https://github.com/openframeworks/openFrameworks/pull/6155","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6155.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6155.patch"},"body":"See issue #4945.\r\n\r\nI've made changes for macOS as suggested in the thread and adapted it for Linux and Windows.\r\n\r\nI've only been able to test on Linux right now, I believe it should work fine on macOS, but I'm really unsure on the windows side.\r\n\r\nI haven't looked at the parts of the code that deal with android and emscripten."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6154","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6154/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6154/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6154/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6154","id":371527272,"node_id":"MDU6SXNzdWUzNzE1MjcyNzI=","number":6154,"title":"ofSoundPlayer load() hangs on linux when streaming is true","user":{"login":"davidemania","id":6617948,"node_id":"MDQ6VXNlcjY2MTc5NDg=","avatar_url":"https://avatars1.githubusercontent.com/u/6617948?v=4","gravatar_id":"","url":"https://api.github.com/users/davidemania","html_url":"https://github.com/davidemania","followers_url":"https://api.github.com/users/davidemania/followers","following_url":"https://api.github.com/users/davidemania/following{/other_user}","gists_url":"https://api.github.com/users/davidemania/gists{/gist_id}","starred_url":"https://api.github.com/users/davidemania/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidemania/subscriptions","organizations_url":"https://api.github.com/users/davidemania/orgs","repos_url":"https://api.github.com/users/davidemania/repos","events_url":"https://api.github.com/users/davidemania/events{/privacy}","received_events_url":"https://api.github.com/users/davidemania/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-18T13:20:43Z","updated_at":"2018-10-18T13:22:40Z","closed_at":null,"author_association":"NONE","body":"If the ofSoundPlayer::load() method is called with streaming == false (the default) everything works as expected, but setting the streaming option to true causes the application to hang badly, it stops responding and has to be killed.\r\n\r\nThe issue can be reproduced easily with the soundPlayerExample in examples directory, just adding “, true” to the load call in setup()\r\n\r\nTest conditions: OS is Ubuntu 18.04, OF version 0.10.0"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6153","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6153/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6153/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6153/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6153","id":371353361,"node_id":"MDU6SXNzdWUzNzEzNTMzNjE=","number":6153,"title":"Android Studio for all of CPP files: This File is not part of the project...","user":{"login":"whyameye","id":1716966,"node_id":"MDQ6VXNlcjE3MTY5NjY=","avatar_url":"https://avatars0.githubusercontent.com/u/1716966?v=4","gravatar_id":"","url":"https://api.github.com/users/whyameye","html_url":"https://github.com/whyameye","followers_url":"https://api.github.com/users/whyameye/followers","following_url":"https://api.github.com/users/whyameye/following{/other_user}","gists_url":"https://api.github.com/users/whyameye/gists{/gist_id}","starred_url":"https://api.github.com/users/whyameye/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/whyameye/subscriptions","organizations_url":"https://api.github.com/users/whyameye/orgs","repos_url":"https://api.github.com/users/whyameye/repos","events_url":"https://api.github.com/users/whyameye/events{/privacy}","received_events_url":"https://api.github.com/users/whyameye/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2018-10-18T04:04:17Z","updated_at":"2018-10-18T13:02:12Z","closed_at":null,"author_association":"NONE","body":"After trying the latest release of oF I switched to the master branch and am still having the same problem:\r\nUsing the project generator I convert an Android example to Android Studio. Then loading into Android Studio I get for all oF cpp files: \"This file is not part of the project. Please include it in the appropriate build file...\" I'm not an Android Studio expert and it is not obvious to me how to move forward as CMakelists.txt doesn't exist etc.\r\n\r\nAndroid Studio compiles the code fine but practically every line is marked as an error in the IDE as all the references are broken."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6152","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6152/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6152/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6152/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6152","id":369295799,"node_id":"MDU6SXNzdWUzNjkyOTU3OTk=","number":6152,"title":"Proposed change: expose alpha flags for ofAppEGLWindow","user":{"login":"jvcleave","id":150037,"node_id":"MDQ6VXNlcjE1MDAzNw==","avatar_url":"https://avatars0.githubusercontent.com/u/150037?v=4","gravatar_id":"","url":"https://api.github.com/users/jvcleave","html_url":"https://github.com/jvcleave","followers_url":"https://api.github.com/users/jvcleave/followers","following_url":"https://api.github.com/users/jvcleave/following{/other_user}","gists_url":"https://api.github.com/users/jvcleave/gists{/gist_id}","starred_url":"https://api.github.com/users/jvcleave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jvcleave/subscriptions","organizations_url":"https://api.github.com/users/jvcleave/orgs","repos_url":"https://api.github.com/users/jvcleave/repos","events_url":"https://api.github.com/users/jvcleave/events{/privacy}","received_events_url":"https://api.github.com/users/jvcleave/received_events","type":"User","site_admin":false},"labels":[{"id":28684,"node_id":"MDU6TGFiZWwyODY4NA==","url":"https://api.github.com/repos/openframeworks/openFrameworks/labels/feature","name":"feature","color":"622425","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-11T20:38:47Z","updated_at":"2018-10-11T20:38:47Z","closed_at":null,"author_association":"MEMBER","body":"Currently the default alpha flag set for a RPi window is `DISPMANX_FLAGS_ALPHA_FIXED_ALL_PIXELS`\r\n\r\nOther options are:\r\n\r\n```\r\nDISPMANX_FLAGS_ALPHA_FROM_SOURCE\r\nDISPMANX_FLAGS_ALPHA_FIXED_ALL_PIXELS \r\nDISPMANX_FLAGS_ALPHA_FIXED_NON_ZERO \r\nDISPMANX_FLAGS_ALPHA_FIXED_EXCEED_0X07\r\nDISPMANX_FLAGS_ALPHA_PREMULT\r\nDISPMANX_FLAGS_ALPHA_MIX \r\n```\r\n\r\n`DISPMANX_FLAGS_ALPHA_FIXED_ALL_PIXELS` sets all alpha values to the value of `settings.eglWindowOpacity` (default 255). For example, if `settings.eglWindowOpacity` is set to 128 and I draw a rectangle with an alpha value of 255 the alpha value will not exceed 128.\r\n\r\nThe most interesting is `DISPMANX_FLAGS_ALPHA_FROM_SOURCE`. With `settings.eglWindowOpacity` set to 0, this allows a totally transparent window but elements drawn retain their alpha values. This enables multiple layers of OF apps or OF apps overlaying other apps\r\n\r\n\r\nExample code:\r\n\r\n```\r\n#include \"ofMain.h\"\r\n#include \"ofAppEGLWindow.h\"\r\n\r\nclass ofApp : public ofBaseApp{\r\npublic:\r\n\r\n void draw()\r\n {\r\n //Set background to alpha 0\r\n ofColor bgColor(ofColor::black, 0);\r\n ofBackground(bgColor);\r\n \r\n int alpha = ofGetFrameNum()%255;\r\n\r\n ofPushStyle();\r\n ofColor orangeBG(ofColor::orange, alpha);\r\n ofSetColor(orangeBG); \r\n ofDrawRectangle(0, 0, 500, 500);\r\n ofPopStyle();\r\n }\r\n};\r\n\r\n\r\nint main( )\r\n{\r\n ofGLESWindowSettings windowSettings;\r\n windowSettings.setSize(1024, 768);\r\n \r\n ofAppEGLWindow::Settings settings(windowSettings);\r\n \r\n settings.eglWindowOpacity = 0;\r\n settings.alphaFlags = DISPMANX_FLAGS_ALPHA_FROM_SOURCE; //proposed change\r\n settings.layer = 2;\r\n \r\n ofCreateWindow(settings);\r\n ofRunApp(new ofApp());\r\n \r\n}\r\n\r\n```\r\n\r\nWith the above code you could start another app (e.g. omxplayer, another OF app) and an orange box would be drawn on top with transparency retained.\r\n\r\n\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6151","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6151/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6151/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6151/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6151","id":369254388,"node_id":"MDU6SXNzdWUzNjkyNTQzODg=","number":6151,"title":"soundExample crahsed with `raspberry pi B+` X `raspbian stretch`","user":{"login":"icq4ever","id":530796,"node_id":"MDQ6VXNlcjUzMDc5Ng==","avatar_url":"https://avatars0.githubusercontent.com/u/530796?v=4","gravatar_id":"","url":"https://api.github.com/users/icq4ever","html_url":"https://github.com/icq4ever","followers_url":"https://api.github.com/users/icq4ever/followers","following_url":"https://api.github.com/users/icq4ever/following{/other_user}","gists_url":"https://api.github.com/users/icq4ever/gists{/gist_id}","starred_url":"https://api.github.com/users/icq4ever/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/icq4ever/subscriptions","organizations_url":"https://api.github.com/users/icq4ever/orgs","repos_url":"https://api.github.com/users/icq4ever/repos","events_url":"https://api.github.com/users/icq4ever/events{/privacy}","received_events_url":"https://api.github.com/users/icq4ever/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-11T18:41:47Z","updated_at":"2018-10-11T20:57:45Z","closed_at":null,"author_association":"NONE","body":"soundPlayerFFTExample and soundPlayerExample is crashed with openframeworks 0.10.0 with clean setup raspbian stretch x raspberry pi B+(old one). it looks like something related with alsa. launching app is ok unless any play sound (ie. click to play).\r\n\r\nI can see error message `Illegal Instruction`\r\n\r\nalsa is working. I can confim with command :\r\n`speaker-test -t wave -c`\r\n\r\n---\r\nby the way, there's no issue on raspberry pi 3 b+."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6149","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6149/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6149/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6149/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6149","id":367529586,"node_id":"MDU6SXNzdWUzNjc1Mjk1ODY=","number":6149,"title":"General issue for other problems with xcode 10 / macos 10.14","user":{"login":"arturoc","id":48240,"node_id":"MDQ6VXNlcjQ4MjQw","avatar_url":"https://avatars0.githubusercontent.com/u/48240?v=4","gravatar_id":"","url":"https://api.github.com/users/arturoc","html_url":"https://github.com/arturoc","followers_url":"https://api.github.com/users/arturoc/followers","following_url":"https://api.github.com/users/arturoc/following{/other_user}","gists_url":"https://api.github.com/users/arturoc/gists{/gist_id}","starred_url":"https://api.github.com/users/arturoc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arturoc/subscriptions","organizations_url":"https://api.github.com/users/arturoc/orgs","repos_url":"https://api.github.com/users/arturoc/repos","events_url":"https://api.github.com/users/arturoc/events{/privacy}","received_events_url":"https://api.github.com/users/arturoc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":17,"created_at":"2018-10-07T07:34:50Z","updated_at":"2018-10-23T17:22:12Z","closed_at":null,"author_association":"MEMBER","body":"Opening this since more stuff comes up and not sure it even belongs on a new issue or it's all related:\r\n\r\nhttps://forum.openframeworks.cc/t/ofimage-issue-in-xcode/30628"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6148","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6148/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6148/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6148/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6148","id":367486070,"node_id":"MDU6SXNzdWUzNjc0ODYwNzA=","number":6148,"title":"can't access Resources/ inside main()","user":{"login":"kylemcdonald","id":157106,"node_id":"MDQ6VXNlcjE1NzEwNg==","avatar_url":"https://avatars3.githubusercontent.com/u/157106?v=4","gravatar_id":"","url":"https://api.github.com/users/kylemcdonald","html_url":"https://github.com/kylemcdonald","followers_url":"https://api.github.com/users/kylemcdonald/followers","following_url":"https://api.github.com/users/kylemcdonald/following{/other_user}","gists_url":"https://api.github.com/users/kylemcdonald/gists{/gist_id}","starred_url":"https://api.github.com/users/kylemcdonald/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kylemcdonald/subscriptions","organizations_url":"https://api.github.com/users/kylemcdonald/orgs","repos_url":"https://api.github.com/users/kylemcdonald/repos","events_url":"https://api.github.com/users/kylemcdonald/events{/privacy}","received_events_url":"https://api.github.com/users/kylemcdonald/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-10-06T19:04:06Z","updated_at":"2018-10-07T07:39:09Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"I have an app that needs to do some things (like decide whether to decorate the window) before the app is run. This needs to be configured by a file inside the Resources/ folder. Usually [the solution](http://nickhardeman.com/591/preparing-an-openframeworks-application-for-the-mac-app-store/) is to add `ofSetDataPathRoot(\"../Resources\");` but that doesn't work inside `main()`:\r\n\r\n```c++\r\n#include \"ofMain.h\"\r\nint main() {\r\n ofSetDataPathRoot(\"../Resources\");\r\n ofLog() << ofToDataPath(\".\", true);\r\n}\r\n```\r\n\r\n```\r\n[notice ] /Users/kyle/Documents/openFrameworks/apps/Project/App/bin/../Resources/.\r\n```\r\n\r\nI also tried adding `ofRestoreWorkingDirectoryToDefault()`, `ofSetDataPathRoot(\".\")` and `ofToDataPath(\".\")` before `ofSetDataPathRoot()`.\r\n\r\nThe only solution I found is to imitate the code inside `defaultDataPath()`:\r\n\r\n`ofSetDataPathRoot(ofFilePath::join(ofFilePath::getCurrentExeDir(), \"../Resources\"));`"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6147","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6147/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6147/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6147/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6147","id":367451026,"node_id":"MDU6SXNzdWUzNjc0NTEwMjY=","number":6147,"title":"Rendering completely broken on macos 10.14","user":{"login":"arturoc","id":48240,"node_id":"MDQ6VXNlcjQ4MjQw","avatar_url":"https://avatars0.githubusercontent.com/u/48240?v=4","gravatar_id":"","url":"https://api.github.com/users/arturoc","html_url":"https://github.com/arturoc","followers_url":"https://api.github.com/users/arturoc/followers","following_url":"https://api.github.com/users/arturoc/following{/other_user}","gists_url":"https://api.github.com/users/arturoc/gists{/gist_id}","starred_url":"https://api.github.com/users/arturoc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arturoc/subscriptions","organizations_url":"https://api.github.com/users/arturoc/orgs","repos_url":"https://api.github.com/users/arturoc/repos","events_url":"https://api.github.com/users/arturoc/events{/privacy}","received_events_url":"https://api.github.com/users/arturoc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-10-06T12:03:12Z","updated_at":"2018-10-06T16:04:25Z","closed_at":null,"author_association":"MEMBER","body":"https://forum.openframeworks.cc/t/no-rendering-initially-in-mojave/30624"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6146","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6146/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6146/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6146/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6146","id":367409282,"node_id":"MDU6SXNzdWUzNjc0MDkyODI=","number":6146,"title":"ofVerticalSync(true) broken on macOS 10.14 + XCode 10.0","user":{"login":"kylemcdonald","id":157106,"node_id":"MDQ6VXNlcjE1NzEwNg==","avatar_url":"https://avatars3.githubusercontent.com/u/157106?v=4","gravatar_id":"","url":"https://api.github.com/users/kylemcdonald","html_url":"https://github.com/kylemcdonald","followers_url":"https://api.github.com/users/kylemcdonald/followers","following_url":"https://api.github.com/users/kylemcdonald/following{/other_user}","gists_url":"https://api.github.com/users/kylemcdonald/gists{/gist_id}","starred_url":"https://api.github.com/users/kylemcdonald/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kylemcdonald/subscriptions","organizations_url":"https://api.github.com/users/kylemcdonald/orgs","repos_url":"https://api.github.com/users/kylemcdonald/repos","events_url":"https://api.github.com/users/kylemcdonald/events{/privacy}","received_events_url":"https://api.github.com/users/kylemcdonald/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-10-06T01:02:51Z","updated_at":"2018-10-18T14:02:49Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Using the latest OF from Github.\r\n\r\nI don't know which version of XCode, OF, or macOS created this problem.\r\n\r\nHere's a simple example that should take 4 seconds for a line to walk across the screen from left to right:\r\n\r\n```c++\r\n#include \"ofMain.h\"\r\n\r\nclass ofApp : public ofBaseApp {\r\npublic:\r\n void setup() {\r\n ofSetVerticalSync(true);\r\n ofBackground(0);\r\n }\r\n void update() {\r\n }\r\n void draw() {\r\n ofDrawRectangle(ofGetFrameNum() % 240, 0, 1, 240);\r\n }\r\n};\r\n\r\nint main() {\r\n ofSetupOpenGL(240, 240, OF_WINDOW);\r\n ofRunApp(new ofApp());\r\n}\r\n```\r\n\r\nInstead, it runs much faster, similar to how apps would run without a framerate limit when they are in the background/not in focus."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6145","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6145/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6145/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6145/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6145","id":366997350,"node_id":"MDU6SXNzdWUzNjY5OTczNTA=","number":6145,"title":"Possible memory leak in ofxGui","user":{"login":"roymacdonald","id":974878,"node_id":"MDQ6VXNlcjk3NDg3OA==","avatar_url":"https://avatars0.githubusercontent.com/u/974878?v=4","gravatar_id":"","url":"https://api.github.com/users/roymacdonald","html_url":"https://github.com/roymacdonald","followers_url":"https://api.github.com/users/roymacdonald/followers","following_url":"https://api.github.com/users/roymacdonald/following{/other_user}","gists_url":"https://api.github.com/users/roymacdonald/gists{/gist_id}","starred_url":"https://api.github.com/users/roymacdonald/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roymacdonald/subscriptions","organizations_url":"https://api.github.com/users/roymacdonald/orgs","repos_url":"https://api.github.com/users/roymacdonald/repos","events_url":"https://api.github.com/users/roymacdonald/events{/privacy}","received_events_url":"https://api.github.com/users/roymacdonald/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-10-04T22:42:51Z","updated_at":"2018-10-05T15:06:50Z","closed_at":null,"author_association":"MEMBER","body":"I just noticed that in ofxGuiGroup all the `add(ofParameter<T> & parameter)` functions call new as you can see [here](https://github.com/openframeworks/openFrameworks/blob/master/addons/ofxGui/src/ofxGuiGroup.cpp#L178-L229), thus creating the gui object needed. but these newly created objects never get deleted even after the `ofGuiGroup` is destroyed. In a lot of cases this might not be a problem as a lot of times the the `ofxGuiGroup` or `ofxPanel` object exists for the whole runtime of the app, but in scenarios where the gui is created and destroyed dynamically this is a problem.\r\n\r\nThe following code is a proof of this.\r\n````cpp\r\n#include \"ofMain.h\"\r\n#include \"ofxGui.h\"\r\n\r\nclass ofApp : public ofBaseApp\r\n{\r\npublic:\r\n\t//----------------------------------------------------------------\r\n\tvoid setup(){\t\t\r\n\t\tgui = new ofxPanel();\r\n\t\tgui->setup();\r\n\t\tgui->add(param.set(\"param\", 0, 0, 255));\r\n\t\tsliderPtr = &(gui->getFloatSlider(\"param\"));\r\n\t\t\r\n\t};\r\n\t//----------------------------------------------------------------\r\n\tvoid draw(){\r\n\t\t\r\n\t\tofBackground(param, 0, 0);\r\n\t\t\r\n\t\tif (displayGui){\r\n\t\t\tif(gui){\r\n\t\t\t\tgui->draw();\r\n\t\t\t}else if (sliderPtr){\r\n\t\t\t\tsliderPtr->draw();\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\tstringstream ss;\r\n\t\t\r\n\t\tif(sliderPtr){\r\n\t\t\tss << \"sliderPtr \" << sliderPtr << endl;\t\r\n\t\t}else{\r\n\t\t\tss << \"sliderPtr is null\" << endl;\r\n\t\t}\r\n\t\tif(gui){\r\n\t\t\tss << \"gui \" << gui << endl;\t\r\n\t\t}else{\r\n\t\t\tss << \"gui is null\" << endl;\r\n\t\t}\r\n\t\tofDrawBitmapStringHighlight(ss.str(), 20, ofGetHeight() - 50);\r\n\t\t\r\n\t};\r\n\t//----------------------------------------------------------------\r\n\tvoid keyPressed(int key)\r\n\t{\r\n\t\tif(key == ' '){\r\n\t\t\tdisplayGui = !displayGui;\r\n\t\t}else if(key == 'd'){\r\n\t\t\tdelete gui;\r\n\t\t\tgui = nullptr;\r\n\t\t}\r\n\t}\r\n\t//----------------------------------------------------------------\r\n\tofxPanel* gui= nullptr;\r\n\tofParameter<float> param;\r\n\tofxFloatSlider* sliderPtr = nullptr;\r\n\tbool displayGui = true;\r\n};\r\n\r\nint main( )\r\n{\r\n\tofSetupOpenGL(400,200,OF_WINDOW);\r\n\tofRunApp(new ofApp());\r\n}\r\n\r\n````\r\n\r\nMaybe moving all the pointers used into smart pointer can be a good idea. What do you think @arturoc @bakercp @ofZach ?\r\n\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6144","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6144/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6144/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6144/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6144","id":366994113,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIwNTM2MDY4","number":6144,"title":"Fix ofx gui slider scrolling","user":{"login":"roymacdonald","id":974878,"node_id":"MDQ6VXNlcjk3NDg3OA==","avatar_url":"https://avatars0.githubusercontent.com/u/974878?v=4","gravatar_id":"","url":"https://api.github.com/users/roymacdonald","html_url":"https://github.com/roymacdonald","followers_url":"https://api.github.com/users/roymacdonald/followers","following_url":"https://api.github.com/users/roymacdonald/following{/other_user}","gists_url":"https://api.github.com/users/roymacdonald/gists{/gist_id}","starred_url":"https://api.github.com/users/roymacdonald/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roymacdonald/subscriptions","organizations_url":"https://api.github.com/users/roymacdonald/orgs","repos_url":"https://api.github.com/users/roymacdonald/repos","events_url":"https://api.github.com/users/roymacdonald/events{/privacy}","received_events_url":"https://api.github.com/users/roymacdonald/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-04T22:28:00Z","updated_at":"2018-10-17T02:20:40Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6144","html_url":"https://github.com/openframeworks/openFrameworks/pull/6144","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6144.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6144.patch"},"body":"Fix for this issue https://github.com/openframeworks/openFrameworks/issues/6133\r\n\r\nThe scrolling was still being handled when the gui was not being drawn both in ofxSlider and ofxInputField. \r\n\r\nTested using the code provided in the mentioned issue.\r\n\r\nAlso, \r\nthere is some redundant code in ofxSlider.cpp and ofxInputField.cpp. Both have a function called `toRange(...)` which is identical in both. When the scroll callback is called this function is called. Can't we move this function to the ofxBaseGui for instance? Also, the code used in the scroll callback in both ofxSlider and ofxInputField is quite similar, maybe moving this to ofxBaseGui might be better too. \r\n\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6143","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6143/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6143/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6143/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6143","id":366546777,"node_id":"MDU6SXNzdWUzNjY1NDY3Nzc=","number":6143,"title":"Missing support for non 2D texture types in ofTexture","user":{"login":"m1keall1son","id":2464817,"node_id":"MDQ6VXNlcjI0NjQ4MTc=","avatar_url":"https://avatars2.githubusercontent.com/u/2464817?v=4","gravatar_id":"","url":"https://api.github.com/users/m1keall1son","html_url":"https://github.com/m1keall1son","followers_url":"https://api.github.com/users/m1keall1son/followers","following_url":"https://api.github.com/users/m1keall1son/following{/other_user}","gists_url":"https://api.github.com/users/m1keall1son/gists{/gist_id}","starred_url":"https://api.github.com/users/m1keall1son/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m1keall1son/subscriptions","organizations_url":"https://api.github.com/users/m1keall1son/orgs","repos_url":"https://api.github.com/users/m1keall1son/repos","events_url":"https://api.github.com/users/m1keall1son/events{/privacy}","received_events_url":"https://api.github.com/users/m1keall1son/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2018-10-03T22:00:11Z","updated_at":"2018-10-05T11:29:52Z","closed_at":null,"author_association":"NONE","body":"Unless i'm mistaken, I can't find any support for non-2D texture types. \r\n\r\nmissing:\r\n`GL_TEXTURE_2D_ARRAY`,\r\n`GL_TEXTURE_3D`,\r\n`GL_TEXTURE_1D`,\r\n`GL_TEXTURE_1D_ARRAY`,\r\n`GL_TEXTURE_CUBE_MAP`,\r\n`GL_TEXTURE_CUBE_MAP_ARRAY`,\r\n\r\nIt would make most sense to separate out the common functionality into an `ofTextureBase` base class and derive into something like `ofTexture1D`, `ofTexture2D`, `ofTexture3D` and `ofTextureCubeMap`. For backwards compatibility alias `ofTexture2D` to `ofTexture`."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6142","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6142/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6142/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6142/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6142","id":366403137,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIwMDg1NTE1","number":6142,"title":"fixes xcode template to not have OF as a dependcy but as a pre-build …","user":{"login":"ofTheo","id":144000,"node_id":"MDQ6VXNlcjE0NDAwMA==","avatar_url":"https://avatars3.githubusercontent.com/u/144000?v=4","gravatar_id":"","url":"https://api.github.com/users/ofTheo","html_url":"https://github.com/ofTheo","followers_url":"https://api.github.com/users/ofTheo/followers","following_url":"https://api.github.com/users/ofTheo/following{/other_user}","gists_url":"https://api.github.com/users/ofTheo/gists{/gist_id}","starred_url":"https://api.github.com/users/ofTheo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofTheo/subscriptions","organizations_url":"https://api.github.com/users/ofTheo/orgs","repos_url":"https://api.github.com/users/ofTheo/repos","events_url":"https://api.github.com/users/ofTheo/events{/privacy}","received_events_url":"https://api.github.com/users/ofTheo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2018-10-03T15:41:06Z","updated_at":"2018-10-06T14:51:37Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6142","html_url":"https://github.com/openframeworks/openFrameworks/pull/6142","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6142.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6142.patch"},"body":"…script. related to #6139"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6141","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6141/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6141/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6141/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6141","id":365257952,"node_id":"MDU6SXNzdWUzNjUyNTc5NTI=","number":6141,"title":"OF_RECTMODE_CENTER doesn't work on ofDrawRectRounded","user":{"login":"Nedelstein","id":41701865,"node_id":"MDQ6VXNlcjQxNzAxODY1","avatar_url":"https://avatars2.githubusercontent.com/u/41701865?v=4","gravatar_id":"","url":"https://api.github.com/users/Nedelstein","html_url":"https://github.com/Nedelstein","followers_url":"https://api.github.com/users/Nedelstein/followers","following_url":"https://api.github.com/users/Nedelstein/following{/other_user}","gists_url":"https://api.github.com/users/Nedelstein/gists{/gist_id}","starred_url":"https://api.github.com/users/Nedelstein/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nedelstein/subscriptions","organizations_url":"https://api.github.com/users/Nedelstein/orgs","repos_url":"https://api.github.com/users/Nedelstein/repos","events_url":"https://api.github.com/users/Nedelstein/events{/privacy}","received_events_url":"https://api.github.com/users/Nedelstein/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-30T20:22:36Z","updated_at":"2018-09-30T20:22:36Z","closed_at":null,"author_association":"NONE","body":"Not the biggest deal, but thought it was worth mentioning. You can't seem to change the rectmode when using ofDrawRectRounded.\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6140","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6140/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6140/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6140/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6140","id":365198033,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE5MTg4NTUz","number":6140,"title":"add ofSystemConfirmDialog for confirming actions","user":{"login":"s-ol","id":1731279,"node_id":"MDQ6VXNlcjE3MzEyNzk=","avatar_url":"https://avatars1.githubusercontent.com/u/1731279?v=4","gravatar_id":"","url":"https://api.github.com/users/s-ol","html_url":"https://github.com/s-ol","followers_url":"https://api.github.com/users/s-ol/followers","following_url":"https://api.github.com/users/s-ol/following{/other_user}","gists_url":"https://api.github.com/users/s-ol/gists{/gist_id}","starred_url":"https://api.github.com/users/s-ol/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-ol/subscriptions","organizations_url":"https://api.github.com/users/s-ol/orgs","repos_url":"https://api.github.com/users/s-ol/repos","events_url":"https://api.github.com/users/s-ol/events{/privacy}","received_events_url":"https://api.github.com/users/s-ol/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-09-30T06:44:10Z","updated_at":"2018-10-12T07:28:24Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6140","html_url":"https://github.com/openframeworks/openFrameworks/pull/6140","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6140.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6140.patch"},"body":"This PR supersedes #3228 (ofSystemChoiceDialog).\r\n\r\nI have another cleanup commit ready (b90df914359e7eccde1de5dbb600278d1bf77538) but didn't attach it to this branch so the diff is clean for now.\r\n\r\nStatus:\r\n\r\n| | implemented | tested |\r\n| ----------------- | ---| -----|\r\n| Linux (GTK) | yes | yes |\r\n| Windows | yes | no |\r\n| OS X | yes | yes |\r\n| Android | no | - |\r\n\r\nPlease help with testing!"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6139","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6139/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6139/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6139/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6139","id":365180966,"node_id":"MDU6SXNzdWUzNjUxODA5NjY=","number":6139,"title":"mojave + xcode 10 issues","user":{"login":"ofZach","id":142897,"node_id":"MDQ6VXNlcjE0Mjg5Nw==","avatar_url":"https://avatars3.githubusercontent.com/u/142897?v=4","gravatar_id":"","url":"https://api.github.com/users/ofZach","html_url":"https://github.com/ofZach","followers_url":"https://api.github.com/users/ofZach/followers","following_url":"https://api.github.com/users/ofZach/following{/other_user}","gists_url":"https://api.github.com/users/ofZach/gists{/gist_id}","starred_url":"https://api.github.com/users/ofZach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofZach/subscriptions","organizations_url":"https://api.github.com/users/ofZach/orgs","repos_url":"https://api.github.com/users/ofZach/repos","events_url":"https://api.github.com/users/ofZach/events{/privacy}","received_events_url":"https://api.github.com/users/ofZach/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-09-30T01:17:56Z","updated_at":"2018-10-01T07:46:46Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"\r\nI'm looking at OF on Mojave and Xcode 10 which is kind of painful now -- \r\n\r\nsome notes (cc @ofTheo) \r\n\r\na) 32 bit needs to be removed (this has already been done in master...) \r\n\r\nb) on mojave apps need permission set as a plist for camera, microphone, and any other thing we might need to do that requires permissions (ala iPhone). I feel like the easiest is we just add these to the template plist so that they are already set. \r\n\r\nc) there's something not right about the overall OF sub project, at the moment you can't open more than one OF project at the same time and build them (before you used to get an integrity warning but now it seems there is more of an error so you actually just can't build more than one project at once... it's super weird) \r\n\r\nd) openframeworks library always gets rebuilt for each project :( \r\n\r\n(maybe looking at this issue which this reminded me of -- https://github.com/openframeworks/openFrameworks/issues/5895) \r\n\r\nI'm looking into b/c/d at the moment... "},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6137","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6137/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6137/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6137/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6137","id":364358354,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE4NTY0Mzgx","number":6137,"title":"Add PUT request to ofURLFileLoader","user":{"login":"chriship","id":4815637,"node_id":"MDQ6VXNlcjQ4MTU2Mzc=","avatar_url":"https://avatars2.githubusercontent.com/u/4815637?v=4","gravatar_id":"","url":"https://api.github.com/users/chriship","html_url":"https://github.com/chriship","followers_url":"https://api.github.com/users/chriship/followers","following_url":"https://api.github.com/users/chriship/following{/other_user}","gists_url":"https://api.github.com/users/chriship/gists{/gist_id}","starred_url":"https://api.github.com/users/chriship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chriship/subscriptions","organizations_url":"https://api.github.com/users/chriship/orgs","repos_url":"https://api.github.com/users/chriship/repos","events_url":"https://api.github.com/users/chriship/events{/privacy}","received_events_url":"https://api.github.com/users/chriship/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-09-27T08:25:12Z","updated_at":"2018-09-27T15:58:42Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6137","html_url":"https://github.com/openframeworks/openFrameworks/pull/6137","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6137.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6137.patch"},"body":"Add the ability to do a PUT request with ofHttpRequest"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6136","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6136/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6136/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6136/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6136","id":364357220,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE4NTYzNTMy","number":6136,"title":"Fix kerning issues in ofTrueTypeFont","user":{"login":"chriship","id":4815637,"node_id":"MDQ6VXNlcjQ4MTU2Mzc=","avatar_url":"https://avatars2.githubusercontent.com/u/4815637?v=4","gravatar_id":"","url":"https://api.github.com/users/chriship","html_url":"https://github.com/chriship","followers_url":"https://api.github.com/users/chriship/followers","following_url":"https://api.github.com/users/chriship/following{/other_user}","gists_url":"https://api.github.com/users/chriship/gists{/gist_id}","starred_url":"https://api.github.com/users/chriship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chriship/subscriptions","organizations_url":"https://api.github.com/users/chriship/orgs","repos_url":"https://api.github.com/users/chriship/repos","events_url":"https://api.github.com/users/chriship/events{/privacy}","received_events_url":"https://api.github.com/users/chriship/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-09-27T08:22:04Z","updated_at":"2018-10-08T19:19:41Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6136","html_url":"https://github.com/openframeworks/openFrameworks/pull/6136","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6136.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6136.patch"},"body":"Freetype uses fixed point number for font calculation (26.6).\r\n\r\nIt means 26 bit integer and 6 bit decimal.\r\n\r\nSo we can not simply use the value of `FT_Get_Kerning` because we need to account for the .6\r\n\r\nHow to calculate?\r\nWe do bit shift to the right.\r\n\r\n`pen_x += delta.x >> 6;`\r\n\r\nThis is same calculation as dividing by 64 (2^6=64).\r\n\r\nSee Simple Text Rendering: Kerning and Centering sesction in this page. https://www.freetype.org/freetype2/docs/tutorial/step2.html#section-4\r\n\r\nThanks to @hiroMTB for figuring this out.\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6133","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6133/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6133/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6133/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6133","id":363073568,"node_id":"MDU6SXNzdWUzNjMwNzM1Njg=","number":6133,"title":"ofxGui scroll is active when it shouldn't be","user":{"login":"samubence","id":241047,"node_id":"MDQ6VXNlcjI0MTA0Nw==","avatar_url":"https://avatars2.githubusercontent.com/u/241047?v=4","gravatar_id":"","url":"https://api.github.com/users/samubence","html_url":"https://github.com/samubence","followers_url":"https://api.github.com/users/samubence/followers","following_url":"https://api.github.com/users/samubence/following{/other_user}","gists_url":"https://api.github.com/users/samubence/gists{/gist_id}","starred_url":"https://api.github.com/users/samubence/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/samubence/subscriptions","organizations_url":"https://api.github.com/users/samubence/orgs","repos_url":"https://api.github.com/users/samubence/repos","events_url":"https://api.github.com/users/samubence/events{/privacy}","received_events_url":"https://api.github.com/users/samubence/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-09-24T09:38:21Z","updated_at":"2018-10-04T22:28:29Z","closed_at":null,"author_association":"NONE","body":"You can change the value of a parameter e.g ofxSlider using the mouse scroll... which is a great feature.\r\nBut it still happens when the group is minimised and the cursor is not over the element. (it is very weird that in this case the slider only goes up and much faster than is was maximised)\r\nThe same happens when we don't display the panel, scroll still active.\r\nThis is a minimal code to demonstrate the behaviour. \r\n\r\nI'm using of_0.10.0 on macOS, xcode 10.0\r\n\r\n```\r\n#include \"ofMain.h\"\r\n#include \"ofxGui.h\"\r\n\r\nclass ofApp : public ofBaseApp\r\n{\r\npublic:\r\n void setup()\r\n {\r\n gui.setDefaultWidth(400);\r\n gui.setup();\r\n gui.setPosition(0, 0);\r\n group.setName(\"GROUP\");\r\n group.add(param.set(\"param\", 0, 0, 255));\r\n gui.add(group);\r\n displayGui = true;\r\n };\r\n \r\n void draw()\r\n {\r\n ofBackground(param, 0, 0);\r\n \r\n if (displayGui)\r\n {\r\n gui.draw();\r\n }\r\n };\r\n \r\n void keyPressed(int key)\r\n {\r\n displayGui = !displayGui;\r\n }\r\n \r\n ofxPanel gui;\r\n ofParameterGroup group;\r\n ofParameter<float> param;\r\n bool displayGui;\r\n};\r\n\r\nint main( )\r\n{\r\n\tofSetupOpenGL(400,100,OF_WINDOW);\r\n\tofRunApp(new ofApp());\r\n}\r\n```"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6132","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6132/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6132/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6132/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6132","id":362785091,"node_id":"MDU6SXNzdWUzNjI3ODUwOTE=","number":6132,"title":"freeimage.dll not found (Windows 10, OF 0.10.0)","user":{"login":"k2msmith","id":41271669,"node_id":"MDQ6VXNlcjQxMjcxNjY5","avatar_url":"https://avatars3.githubusercontent.com/u/41271669?v=4","gravatar_id":"","url":"https://api.github.com/users/k2msmith","html_url":"https://github.com/k2msmith","followers_url":"https://api.github.com/users/k2msmith/followers","following_url":"https://api.github.com/users/k2msmith/following{/other_user}","gists_url":"https://api.github.com/users/k2msmith/gists{/gist_id}","starred_url":"https://api.github.com/users/k2msmith/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k2msmith/subscriptions","organizations_url":"https://api.github.com/users/k2msmith/orgs","repos_url":"https://api.github.com/users/k2msmith/repos","events_url":"https://api.github.com/users/k2msmith/events{/privacy}","received_events_url":"https://api.github.com/users/k2msmith/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-21T21:48:33Z","updated_at":"2018-09-21T21:48:33Z","closed_at":null,"author_association":"NONE","body":"On Windows 10 Pro and version 0.10.0 OF. On some machines OF VS build/ link doesn’t find the freeimage.dll. This is puzzling because it appears that OF has a copy of the library in it’s release tree. So, why would I need to install another copy of the library on Windows ? I have reinstalled the library, but eventually the problem comes back. I am guessing that a windows update may have stomped on it and removed it again. The problem only occurs for me on w32 but not x64. On googling around, it appears other OF users have encountered the same problem (so it's just not my installation)"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6129","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6129/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6129/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6129/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6129","id":361464541,"node_id":"MDU6SXNzdWUzNjE0NjQ1NDE=","number":6129,"title":"ofDirectory::sort() is slow! ","user":{"login":"ofTheo","id":144000,"node_id":"MDQ6VXNlcjE0NDAwMA==","avatar_url":"https://avatars3.githubusercontent.com/u/144000?v=4","gravatar_id":"","url":"https://api.github.com/users/ofTheo","html_url":"https://github.com/ofTheo","followers_url":"https://api.github.com/users/ofTheo/followers","following_url":"https://api.github.com/users/ofTheo/following{/other_user}","gists_url":"https://api.github.com/users/ofTheo/gists{/gist_id}","starred_url":"https://api.github.com/users/ofTheo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofTheo/subscriptions","organizations_url":"https://api.github.com/users/ofTheo/orgs","repos_url":"https://api.github.com/users/ofTheo/repos","events_url":"https://api.github.com/users/ofTheo/events{/privacy}","received_events_url":"https://api.github.com/users/ofTheo/received_events","type":"User","site_admin":false},"labels":[{"id":14818,"node_id":"MDU6TGFiZWwxNDgxOA==","url":"https://api.github.com/repos/openframeworks/openFrameworks/labels/core","name":"core","color":"db6a1f","default":false}],"state":"open","locked":false,"assignee":{"login":"ofTheo","id":144000,"node_id":"MDQ6VXNlcjE0NDAwMA==","avatar_url":"https://avatars3.githubusercontent.com/u/144000?v=4","gravatar_id":"","url":"https://api.github.com/users/ofTheo","html_url":"https://github.com/ofTheo","followers_url":"https://api.github.com/users/ofTheo/followers","following_url":"https://api.github.com/users/ofTheo/following{/other_user}","gists_url":"https://api.github.com/users/ofTheo/gists{/gist_id}","starred_url":"https://api.github.com/users/ofTheo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofTheo/subscriptions","organizations_url":"https://api.github.com/users/ofTheo/orgs","repos_url":"https://api.github.com/users/ofTheo/repos","events_url":"https://api.github.com/users/ofTheo/events{/privacy}","received_events_url":"https://api.github.com/users/ofTheo/received_events","type":"User","site_admin":false},"assignees":[{"login":"ofTheo","id":144000,"node_id":"MDQ6VXNlcjE0NDAwMA==","avatar_url":"https://avatars3.githubusercontent.com/u/144000?v=4","gravatar_id":"","url":"https://api.github.com/users/ofTheo","html_url":"https://github.com/ofTheo","followers_url":"https://api.github.com/users/ofTheo/followers","following_url":"https://api.github.com/users/ofTheo/following{/other_user}","gists_url":"https://api.github.com/users/ofTheo/gists{/gist_id}","starred_url":"https://api.github.com/users/ofTheo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ofTheo/subscriptions","organizations_url":"https://api.github.com/users/ofTheo/orgs","repos_url":"https://api.github.com/users/ofTheo/repos","events_url":"https://api.github.com/users/ofTheo/events{/privacy}","received_events_url":"https://api.github.com/users/ofTheo/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/milestones/21","html_url":"https://github.com/openframeworks/openFrameworks/milestone/21","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/milestones/21/labels","id":902324,"node_id":"MDk6TWlsZXN0b25lOTAyMzI0","number":21,"title":"0.10.1","description":"","creator":{"login":"kylemcdonald","id":157106,"node_id":"MDQ6VXNlcjE1NzEwNg==","avatar_url":"https://avatars3.githubusercontent.com/u/157106?v=4","gravatar_id":"","url":"https://api.github.com/users/kylemcdonald","html_url":"https://github.com/kylemcdonald","followers_url":"https://api.github.com/users/kylemcdonald/followers","following_url":"https://api.github.com/users/kylemcdonald/following{/other_user}","gists_url":"https://api.github.com/users/kylemcdonald/gists{/gist_id}","starred_url":"https://api.github.com/users/kylemcdonald/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kylemcdonald/subscriptions","organizations_url":"https://api.github.com/users/kylemcdonald/orgs","repos_url":"https://api.github.com/users/kylemcdonald/repos","events_url":"https://api.github.com/users/kylemcdonald/events{/privacy}","received_events_url":"https://api.github.com/users/kylemcdonald/received_events","type":"User","site_admin":false},"open_issues":31,"closed_issues":6,"state":"open","created_at":"2014-12-12T22:37:18Z","updated_at":"2018-09-18T20:11:58Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2018-09-18T20:11:58Z","updated_at":"2018-10-22T08:44:25Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"I noticed that with old projects which have a lot of png sequences that a project that used to take 20-30 seconds to load are now taking 15+ minutes. \r\n\r\nAll I did was add sort() after calls to listDir() ( due to the non-sorted directories Apple lovingly introduced #5852 ) \r\n\r\nTaking the current dirListExample, calling sort() with listDir() makes a directory listing takes more than 10x longer than not calling sort(), but then getting randomly ordered results. \r\n\r\nI noticed that if I sort the files first as strings instead of as a vector ofFile::References it is almost as fast as not sorting at all. \r\n\r\nI think this might be due to the extra overhead of having files loaded into memory ( even as references ). \r\n\r\nI need to put together a PR for this, the main issue I see is that I am sorting inside of listDir before even creating the files vector. The plus side is you get sorted results by default without having to call sort(); But calling sort() will still be slow. I could prob get the fix to work in sort() too without losing the performance improvement. It might just need to rebuild the file list which is doable. \r\n\r\nThis is a comparison for sorting 110 files. \r\n```\r\nDebug\r\n time diff for file list with current sort: 0.349263 seconds \r\n time diff for file list with string based sort: 0.0325761 seconds \r\n\r\n= 10.7x faster with string based sort \r\n\r\nRelease\r\n time diff for file list with current sort: 0.339156 seconds \r\n time diff for file list with string based sort: 0.0316965 seconds \r\n\r\n= 10.7x faster with string based sort \r\n ```\r\n\r\nFor 792 files:\r\n\r\n```\r\nRelease:\r\n time diff for file list with current sort: 4.0761 seconds \r\n time diff for file list with string based sort: 0.180382 seconds \r\n\r\n= 21x faster with string based sort\r\n```\r\n\r\nGoing to post some more thoughts to this thread. \r\n\r\n\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6128","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6128/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6128/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6128/events","html_url":"https://github.com/openframeworks/openFrameworks/pull/6128","id":361122717,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE2MTczNDIz","number":6128,"title":"Issue when saving jpg","user":{"login":"cyrstem","id":2263696,"node_id":"MDQ6VXNlcjIyNjM2OTY=","avatar_url":"https://avatars0.githubusercontent.com/u/2263696?v=4","gravatar_id":"","url":"https://api.github.com/users/cyrstem","html_url":"https://github.com/cyrstem","followers_url":"https://api.github.com/users/cyrstem/followers","following_url":"https://api.github.com/users/cyrstem/following{/other_user}","gists_url":"https://api.github.com/users/cyrstem/gists{/gist_id}","starred_url":"https://api.github.com/users/cyrstem/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyrstem/subscriptions","organizations_url":"https://api.github.com/users/cyrstem/orgs","repos_url":"https://api.github.com/users/cyrstem/repos","events_url":"https://api.github.com/users/cyrstem/events{/privacy}","received_events_url":"https://api.github.com/users/cyrstem/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-09-18T03:33:39Z","updated_at":"2018-10-05T03:35:54Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/openframeworks/openFrameworks/pulls/6128","html_url":"https://github.com/openframeworks/openFrameworks/pull/6128","diff_url":"https://github.com/openframeworks/openFrameworks/pull/6128.diff","patch_url":"https://github.com/openframeworks/openFrameworks/pull/6128.patch"},"body":"changed from auto pixelFormat = OF_PIXELS_BGRA;\r\nto auto pixelFormat = OF_PIXELS_RGBA;\r\ndon/t know if ALPHA channel should stay but this fix an issue saving images with grabScreen"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6127","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6127/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6127/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6127/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6127","id":361033985,"node_id":"MDU6SXNzdWUzNjEwMzM5ODU=","number":6127,"title":"ofxPoco Problem Android Studio","user":{"login":"dottoremad","id":11161510,"node_id":"MDQ6VXNlcjExMTYxNTEw","avatar_url":"https://avatars3.githubusercontent.com/u/11161510?v=4","gravatar_id":"","url":"https://api.github.com/users/dottoremad","html_url":"https://github.com/dottoremad","followers_url":"https://api.github.com/users/dottoremad/followers","following_url":"https://api.github.com/users/dottoremad/following{/other_user}","gists_url":"https://api.github.com/users/dottoremad/gists{/gist_id}","starred_url":"https://api.github.com/users/dottoremad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dottoremad/subscriptions","organizations_url":"https://api.github.com/users/dottoremad/orgs","repos_url":"https://api.github.com/users/dottoremad/repos","events_url":"https://api.github.com/users/dottoremad/events{/privacy}","received_events_url":"https://api.github.com/users/dottoremad/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-17T20:37:28Z","updated_at":"2018-09-17T20:37:28Z","closed_at":null,"author_association":"NONE","body":"I am working on a project using ofxPoco and ofxHttpUtils.\r\nEverything works fine in Visual Studio on Windows and in Xcode on MacOS.\r\n\r\nIn Android Studio (Windows v 3.1.2 and MacOS v 3.1.4) using OF 0.10.0, the includes regarding Poco (addons\\ofxPoco\\libs\\poco\\include\\Poco) are not found, as for example\r\n#include <Poco/DOM/Document.h> at line 9 of ofxPoco/src/ofxXmlPoco.h\r\n\r\nTo reproduce the problem copy paste the empty example and add ofxPoco using the project generator, then open from Android Studio and build it."},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6126","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6126/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6126/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6126/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6126","id":360902537,"node_id":"MDU6SXNzdWUzNjA5MDI1Mzc=","number":6126,"title":"emscripten emrun missing functions","user":{"login":"Mach1Studios","id":13720381,"node_id":"MDQ6VXNlcjEzNzIwMzgx","avatar_url":"https://avatars1.githubusercontent.com/u/13720381?v=4","gravatar_id":"","url":"https://api.github.com/users/Mach1Studios","html_url":"https://github.com/Mach1Studios","followers_url":"https://api.github.com/users/Mach1Studios/followers","following_url":"https://api.github.com/users/Mach1Studios/following{/other_user}","gists_url":"https://api.github.com/users/Mach1Studios/gists{/gist_id}","starred_url":"https://api.github.com/users/Mach1Studios/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mach1Studios/subscriptions","organizations_url":"https://api.github.com/users/Mach1Studios/orgs","repos_url":"https://api.github.com/users/Mach1Studios/repos","events_url":"https://api.github.com/users/Mach1Studios/events{/privacy}","received_events_url":"https://api.github.com/users/Mach1Studios/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-17T14:42:49Z","updated_at":"2018-09-17T14:42:49Z","closed_at":null,"author_association":"NONE","body":"After going through all the build instructions below with the latest, I am unable to run any example or project, i have tried several combinations and used `emcc --clear-cache` and `emmake make clean` throughout rebuilds with no success.\r\n\r\n```\r\n./emsdk update\r\n./emsdk install latest\r\n./emsdk activate latest\r\nsource ./emsdk_env.sh\r\ngit clone --depth=1 https://github.com/openFrameworks/openFrameworks.git\r\ncd openFrameworks\r\nscripts/emscripten/./download_libs.sh\r\ncd examples/3d/3DPrimitivesExample\r\ncp ../../../scripts/templates/emscripten/Makefile .\r\nemmake make\r\n```\r\nI have even added \r\n`cp ../../../scripts/templates/emscripten/config.make .`\r\nwhich did not help either\r\n\r\nthis is the result is always along the lines of:\r\n`$ emrun --browser chrome bin/3DPrimitivesExample.html` \r\n```\r\nExecuting /Applications/Google Chrome.app/Contents/MacOS/Google Chrome --incognito --enable-nacl --enable-pnacl --disable-restore-session-state --enable-webgl --no-default-browser-check --no-first-run --allow-file-access-from-files http://localhost:6931/3DPrimitivesExample.html\r\nCreated new window in existing browser session.\r\nmissing function: _Znwj\r\n-1\r\n-1\r\n```"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6125","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6125/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6125/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6125/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6125","id":359925364,"node_id":"MDU6SXNzdWUzNTk5MjUzNjQ=","number":6125,"title":"ofAbstractParameter::isType<ParameterType>()","user":{"login":"eduardfrigola","id":7095844,"node_id":"MDQ6VXNlcjcwOTU4NDQ=","avatar_url":"https://avatars2.githubusercontent.com/u/7095844?v=4","gravatar_id":"","url":"https://api.github.com/users/eduardfrigola","html_url":"https://github.com/eduardfrigola","followers_url":"https://api.github.com/users/eduardfrigola/followers","following_url":"https://api.github.com/users/eduardfrigola/following{/other_user}","gists_url":"https://api.github.com/users/eduardfrigola/gists{/gist_id}","starred_url":"https://api.github.com/users/eduardfrigola/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eduardfrigola/subscriptions","organizations_url":"https://api.github.com/users/eduardfrigola/orgs","repos_url":"https://api.github.com/users/eduardfrigola/repos","events_url":"https://api.github.com/users/eduardfrigola/events{/privacy}","received_events_url":"https://api.github.com/users/eduardfrigola/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-13T14:37:31Z","updated_at":"2018-09-13T14:37:31Z","closed_at":null,"author_association":"NONE","body":"I have been working with ofParameter a lot recently, and, despite trying to use templates as much as I can, somewhere I end up checking the type of a parameter. \r\n\r\n```cpp\r\nif(p.type() == typeid(ofParameter<float>).name()){\r\n auto &cast = p.cast<float>();\r\n}\r\nelse if(p.type() == typeid(ofParameter<int>).name()){\r\n auto &cast = p.cast<int>();\r\n}\r\nelse if(p.type() == typeid(ofParameter<bool>).name()){\r\n auto &cast = p.cast<bool>();\r\n}\r\nelse if(p.type() == typeid(ofParameter<ofColor>).name()){\r\n auto &cast = p.cast<ofColor>();\r\n}\r\nelse if(p.type() == typeid(ofParameter<string>).name()){\r\n auto &cast = p.cast<string>();\r\n}\r\n```\r\n\r\n\r\nI thing it will be nice to add a function to ```ofAbstractParameter``` class to be able to check the parameter type with less code, and something more readable. Something as:\r\n\r\n```cpp\r\ntemplate<typename ParameterType>\r\nbool isType(){\r\n\treturn type() == typeid(ofParameter<ParameterType>).name();\r\n}\r\n```\r\n\r\nThe old code with the new function:\r\n```cpp\r\nif(p.isType<float>()){\r\n auto &cast = p.cast<float>();\r\n}\r\nelse if(p.isType<int>()){\r\n auto &cast = p.cast<int>();\r\n}\r\nelse if(p.isType<bool>()){\r\n auto &cast = p.cast<bool>();\r\n}\r\nelse if(p.isType<ofColor>()){\r\n auto &cast = p.cast<ofColor>();\r\n}\r\nelse if(p.isType<string>()){\r\n auto &cast = p.cast<string>();\r\n}\r\n```\r\n\r\n\r\nDoes this make sense? \r\nIt makes ```type()``` unclear?\r\nDoes the name ```isType()``` is the correct one to use?\r\n\r\nEduard\r\n"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6124","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6124/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6124/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6124/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6124","id":358370579,"node_id":"MDU6SXNzdWUzNTgzNzA1Nzk=","number":6124,"title":"ofVideoPlayer in emscripten doesn't support urls","user":{"login":"arturoc","id":48240,"node_id":"MDQ6VXNlcjQ4MjQw","avatar_url":"https://avatars0.githubusercontent.com/u/48240?v=4","gravatar_id":"","url":"https://api.github.com/users/arturoc","html_url":"https://github.com/arturoc","followers_url":"https://api.github.com/users/arturoc/followers","following_url":"https://api.github.com/users/arturoc/following{/other_user}","gists_url":"https://api.github.com/users/arturoc/gists{/gist_id}","starred_url":"https://api.github.com/users/arturoc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arturoc/subscriptions","organizations_url":"https://api.github.com/users/arturoc/orgs","repos_url":"https://api.github.com/users/arturoc/repos","events_url":"https://api.github.com/users/arturoc/events{/privacy}","received_events_url":"https://api.github.com/users/arturoc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2018-09-09T11:22:14Z","updated_at":"2018-09-11T07:55:25Z","closed_at":null,"author_association":"MEMBER","body":"we should check if the passed path is an url and not try to open a file in that case"},{"url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6119","repository_url":"https://api.github.com/repos/openframeworks/openFrameworks","labels_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6119/labels{/name}","comments_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6119/comments","events_url":"https://api.github.com/repos/openframeworks/openFrameworks/issues/6119/events","html_url":"https://github.com/openframeworks/openFrameworks/issues/6119","id":356742467,"node_id":"MDU6SXNzdWUzNTY3NDI0Njc=","number":6119,"title":"support ofFastEvent in ofParameter","user":{"login":"sphaero","id":832465,"node_id":"MDQ6VXNlcjgzMjQ2NQ==","avatar_url":"https://avatars1.githubusercontent.com/u/832465?v=4","gravatar_id":"","url":"https://api.github.com/users/sphaero","html_url":"https://github.com/sphaero","followers_url":"https://api.github.com/users/sphaero/followers","following_url":"https://api.github.com/users/sphaero/following{/other_user}","gists_url":"https://api.github.com/users/sphaero/gists{/gist_id}","starred_url":"https://api.github.com/users/sphaero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sphaero/subscriptions","organizations_url":"https://api.github.com/users/sphaero/orgs","repos_url":"https://api.github.com/users/sphaero/repos","events_url":"https://api.github.com/users/sphaero/events{/privacy}","received_events_url":"https://api.github.com/users/sphaero/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-04T10:12:42Z","updated_at":"2018-09-04T10:12:42Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"As discussed here: https://forum.openframeworks.cc/t/ofparametergroup-and-custom-inherited-ofparameter-class/30237/12\r\n\r\ni.e. add an extra optional parameter to ofParameter which enabled ofFastEvent instead of the default ofEvent"}]
+
+https
+GET
+api.github.com
+None
+/repos/openframeworks/openFrameworks/stargazers
+{'Accept': 'application/vnd.github.v3.star+json', 'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
+None
+200
+[('Server', 'GitHub.com'), ('Date', 'Fri, 26 Oct 2018 06:02:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Status', '200 OK'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4970'), ('X-RateLimit-Reset', '1540536267'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP'), ('ETag', 'W/"3ffd69d4f4e7383eae948812b1eb72e5"'), ('X-OAuth-Scopes', 'repo'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; param=star; format=json'), ('Link', '<https://api.github.com/repositories/345337/stargazers?page=2>; rel="next", <https://api.github.com/repositories/345337/stargazers?page=216>; rel="last"'), ('Access-Control-Expose-Headers', 'ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '1; mode=block'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'F9D6:235E:3C00DD:772BC6:5BD2AE02')]
+[{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"atduskgreg","id":165,"node_id":"MDQ6VXNlcjE2NQ==","avatar_url":"https://avatars1.githubusercontent.com/u/165?v=4","gravatar_id":"","url":"https://api.github.com/users/atduskgreg","html_url":"https://github.com/atduskgreg","followers_url":"https://api.github.com/users/atduskgreg/followers","following_url":"https://api.github.com/users/atduskgreg/following{/other_user}","gists_url":"https://api.github.com/users/atduskgreg/gists{/gist_id}","starred_url":"https://api.github.com/users/atduskgreg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/atduskgreg/subscriptions","organizations_url":"https://api.github.com/users/atduskgreg/orgs","repos_url":"https://api.github.com/users/atduskgreg/repos","events_url":"https://api.github.com/users/atduskgreg/events{/privacy}","received_events_url":"https://api.github.com/users/atduskgreg/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"DocSavage","id":185,"node_id":"MDQ6VXNlcjE4NQ==","avatar_url":"https://avatars1.githubusercontent.com/u/185?v=4","gravatar_id":"","url":"https://api.github.com/users/DocSavage","html_url":"https://github.com/DocSavage","followers_url":"https://api.github.com/users/DocSavage/followers","following_url":"https://api.github.com/users/DocSavage/following{/other_user}","gists_url":"https://api.github.com/users/DocSavage/gists{/gist_id}","starred_url":"https://api.github.com/users/DocSavage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DocSavage/subscriptions","organizations_url":"https://api.github.com/users/DocSavage/orgs","repos_url":"https://api.github.com/users/DocSavage/repos","events_url":"https://api.github.com/users/DocSavage/events{/privacy}","received_events_url":"https://api.github.com/users/DocSavage/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"dfl","id":282,"node_id":"MDQ6VXNlcjI4Mg==","avatar_url":"https://avatars0.githubusercontent.com/u/282?v=4","gravatar_id":"","url":"https://api.github.com/users/dfl","html_url":"https://github.com/dfl","followers_url":"https://api.github.com/users/dfl/followers","following_url":"https://api.github.com/users/dfl/following{/other_user}","gists_url":"https://api.github.com/users/dfl/gists{/gist_id}","starred_url":"https://api.github.com/users/dfl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dfl/subscriptions","organizations_url":"https://api.github.com/users/dfl/orgs","repos_url":"https://api.github.com/users/dfl/repos","events_url":"https://api.github.com/users/dfl/events{/privacy}","received_events_url":"https://api.github.com/users/dfl/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"norio","id":307,"node_id":"MDQ6VXNlcjMwNw==","avatar_url":"https://avatars1.githubusercontent.com/u/307?v=4","gravatar_id":"","url":"https://api.github.com/users/norio","html_url":"https://github.com/norio","followers_url":"https://api.github.com/users/norio/followers","following_url":"https://api.github.com/users/norio/following{/other_user}","gists_url":"https://api.github.com/users/norio/gists{/gist_id}","starred_url":"https://api.github.com/users/norio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/norio/subscriptions","organizations_url":"https://api.github.com/users/norio/orgs","repos_url":"https://api.github.com/users/norio/repos","events_url":"https://api.github.com/users/norio/events{/privacy}","received_events_url":"https://api.github.com/users/norio/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"auser","id":529,"node_id":"MDQ6VXNlcjUyOQ==","avatar_url":"https://avatars1.githubusercontent.com/u/529?v=4","gravatar_id":"","url":"https://api.github.com/users/auser","html_url":"https://github.com/auser","followers_url":"https://api.github.com/users/auser/followers","following_url":"https://api.github.com/users/auser/following{/other_user}","gists_url":"https://api.github.com/users/auser/gists{/gist_id}","starred_url":"https://api.github.com/users/auser/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/auser/subscriptions","organizations_url":"https://api.github.com/users/auser/orgs","repos_url":"https://api.github.com/users/auser/repos","events_url":"https://api.github.com/users/auser/events{/privacy}","received_events_url":"https://api.github.com/users/auser/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"keeran","id":848,"node_id":"MDQ6VXNlcjg0OA==","avatar_url":"https://avatars0.githubusercontent.com/u/848?v=4","gravatar_id":"","url":"https://api.github.com/users/keeran","html_url":"https://github.com/keeran","followers_url":"https://api.github.com/users/keeran/followers","following_url":"https://api.github.com/users/keeran/following{/other_user}","gists_url":"https://api.github.com/users/keeran/gists{/gist_id}","starred_url":"https://api.github.com/users/keeran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/keeran/subscriptions","organizations_url":"https://api.github.com/users/keeran/orgs","repos_url":"https://api.github.com/users/keeran/repos","events_url":"https://api.github.com/users/keeran/events{/privacy}","received_events_url":"https://api.github.com/users/keeran/received_events","type":"User","site_admin":true}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"antramm","id":917,"node_id":"MDQ6VXNlcjkxNw==","avatar_url":"https://avatars2.githubusercontent.com/u/917?v=4","gravatar_id":"","url":"https://api.github.com/users/antramm","html_url":"https://github.com/antramm","followers_url":"https://api.github.com/users/antramm/followers","following_url":"https://api.github.com/users/antramm/following{/other_user}","gists_url":"https://api.github.com/users/antramm/gists{/gist_id}","starred_url":"https://api.github.com/users/antramm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/antramm/subscriptions","organizations_url":"https://api.github.com/users/antramm/orgs","repos_url":"https://api.github.com/users/antramm/repos","events_url":"https://api.github.com/users/antramm/events{/privacy}","received_events_url":"https://api.github.com/users/antramm/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"ludwig","id":1056,"node_id":"MDQ6VXNlcjEwNTY=","avatar_url":"https://avatars0.githubusercontent.com/u/1056?v=4","gravatar_id":"","url":"https://api.github.com/users/ludwig","html_url":"https://github.com/ludwig","followers_url":"https://api.github.com/users/ludwig/followers","following_url":"https://api.github.com/users/ludwig/following{/other_user}","gists_url":"https://api.github.com/users/ludwig/gists{/gist_id}","starred_url":"https://api.github.com/users/ludwig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ludwig/subscriptions","organizations_url":"https://api.github.com/users/ludwig/orgs","repos_url":"https://api.github.com/users/ludwig/repos","events_url":"https://api.github.com/users/ludwig/events{/privacy}","received_events_url":"https://api.github.com/users/ludwig/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"mk","id":1187,"node_id":"MDQ6VXNlcjExODc=","avatar_url":"https://avatars2.githubusercontent.com/u/1187?v=4","gravatar_id":"","url":"https://api.github.com/users/mk","html_url":"https://github.com/mk","followers_url":"https://api.github.com/users/mk/followers","following_url":"https://api.github.com/users/mk/following{/other_user}","gists_url":"https://api.github.com/users/mk/gists{/gist_id}","starred_url":"https://api.github.com/users/mk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mk/subscriptions","organizations_url":"https://api.github.com/users/mk/orgs","repos_url":"https://api.github.com/users/mk/repos","events_url":"https://api.github.com/users/mk/events{/privacy}","received_events_url":"https://api.github.com/users/mk/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"reedlaw","id":1344,"node_id":"MDQ6VXNlcjEzNDQ=","avatar_url":"https://avatars0.githubusercontent.com/u/1344?v=4","gravatar_id":"","url":"https://api.github.com/users/reedlaw","html_url":"https://github.com/reedlaw","followers_url":"https://api.github.com/users/reedlaw/followers","following_url":"https://api.github.com/users/reedlaw/following{/other_user}","gists_url":"https://api.github.com/users/reedlaw/gists{/gist_id}","starred_url":"https://api.github.com/users/reedlaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reedlaw/subscriptions","organizations_url":"https://api.github.com/users/reedlaw/orgs","repos_url":"https://api.github.com/users/reedlaw/repos","events_url":"https://api.github.com/users/reedlaw/events{/privacy}","received_events_url":"https://api.github.com/users/reedlaw/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"esiegel","id":1390,"node_id":"MDQ6VXNlcjEzOTA=","avatar_url":"https://avatars2.githubusercontent.com/u/1390?v=4","gravatar_id":"","url":"https://api.github.com/users/esiegel","html_url":"https://github.com/esiegel","followers_url":"https://api.github.com/users/esiegel/followers","following_url":"https://api.github.com/users/esiegel/following{/other_user}","gists_url":"https://api.github.com/users/esiegel/gists{/gist_id}","starred_url":"https://api.github.com/users/esiegel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/esiegel/subscriptions","organizations_url":"https://api.github.com/users/esiegel/orgs","repos_url":"https://api.github.com/users/esiegel/repos","events_url":"https://api.github.com/users/esiegel/events{/privacy}","received_events_url":"https://api.github.com/users/esiegel/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"gaubert","id":1482,"node_id":"MDQ6VXNlcjE0ODI=","avatar_url":"https://avatars1.githubusercontent.com/u/1482?v=4","gravatar_id":"","url":"https://api.github.com/users/gaubert","html_url":"https://github.com/gaubert","followers_url":"https://api.github.com/users/gaubert/followers","following_url":"https://api.github.com/users/gaubert/following{/other_user}","gists_url":"https://api.github.com/users/gaubert/gists{/gist_id}","starred_url":"https://api.github.com/users/gaubert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gaubert/subscriptions","organizations_url":"https://api.github.com/users/gaubert/orgs","repos_url":"https://api.github.com/users/gaubert/repos","events_url":"https://api.github.com/users/gaubert/events{/privacy}","received_events_url":"https://api.github.com/users/gaubert/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"pushkar","id":1484,"node_id":"MDQ6VXNlcjE0ODQ=","avatar_url":"https://avatars1.githubusercontent.com/u/1484?v=4","gravatar_id":"","url":"https://api.github.com/users/pushkar","html_url":"https://github.com/pushkar","followers_url":"https://api.github.com/users/pushkar/followers","following_url":"https://api.github.com/users/pushkar/following{/other_user}","gists_url":"https://api.github.com/users/pushkar/gists{/gist_id}","starred_url":"https://api.github.com/users/pushkar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pushkar/subscriptions","organizations_url":"https://api.github.com/users/pushkar/orgs","repos_url":"https://api.github.com/users/pushkar/repos","events_url":"https://api.github.com/users/pushkar/events{/privacy}","received_events_url":"https://api.github.com/users/pushkar/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"edwardgeorge","id":1572,"node_id":"MDQ6VXNlcjE1NzI=","avatar_url":"https://avatars0.githubusercontent.com/u/1572?v=4","gravatar_id":"","url":"https://api.github.com/users/edwardgeorge","html_url":"https://github.com/edwardgeorge","followers_url":"https://api.github.com/users/edwardgeorge/followers","following_url":"https://api.github.com/users/edwardgeorge/following{/other_user}","gists_url":"https://api.github.com/users/edwardgeorge/gists{/gist_id}","starred_url":"https://api.github.com/users/edwardgeorge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edwardgeorge/subscriptions","organizations_url":"https://api.github.com/users/edwardgeorge/orgs","repos_url":"https://api.github.com/users/edwardgeorge/repos","events_url":"https://api.github.com/users/edwardgeorge/events{/privacy}","received_events_url":"https://api.github.com/users/edwardgeorge/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"jonbro","id":1597,"node_id":"MDQ6VXNlcjE1OTc=","avatar_url":"https://avatars0.githubusercontent.com/u/1597?v=4","gravatar_id":"","url":"https://api.github.com/users/jonbro","html_url":"https://github.com/jonbro","followers_url":"https://api.github.com/users/jonbro/followers","following_url":"https://api.github.com/users/jonbro/following{/other_user}","gists_url":"https://api.github.com/users/jonbro/gists{/gist_id}","starred_url":"https://api.github.com/users/jonbro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonbro/subscriptions","organizations_url":"https://api.github.com/users/jonbro/orgs","repos_url":"https://api.github.com/users/jonbro/repos","events_url":"https://api.github.com/users/jonbro/events{/privacy}","received_events_url":"https://api.github.com/users/jonbro/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"lrtitze","id":1818,"node_id":"MDQ6VXNlcjE4MTg=","avatar_url":"https://avatars0.githubusercontent.com/u/1818?v=4","gravatar_id":"","url":"https://api.github.com/users/lrtitze","html_url":"https://github.com/lrtitze","followers_url":"https://api.github.com/users/lrtitze/followers","following_url":"https://api.github.com/users/lrtitze/following{/other_user}","gists_url":"https://api.github.com/users/lrtitze/gists{/gist_id}","starred_url":"https://api.github.com/users/lrtitze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lrtitze/subscriptions","organizations_url":"https://api.github.com/users/lrtitze/orgs","repos_url":"https://api.github.com/users/lrtitze/repos","events_url":"https://api.github.com/users/lrtitze/events{/privacy}","received_events_url":"https://api.github.com/users/lrtitze/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"sroske","id":2015,"node_id":"MDQ6VXNlcjIwMTU=","avatar_url":"https://avatars1.githubusercontent.com/u/2015?v=4","gravatar_id":"","url":"https://api.github.com/users/sroske","html_url":"https://github.com/sroske","followers_url":"https://api.github.com/users/sroske/followers","following_url":"https://api.github.com/users/sroske/following{/other_user}","gists_url":"https://api.github.com/users/sroske/gists{/gist_id}","starred_url":"https://api.github.com/users/sroske/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sroske/subscriptions","organizations_url":"https://api.github.com/users/sroske/orgs","repos_url":"https://api.github.com/users/sroske/repos","events_url":"https://api.github.com/users/sroske/events{/privacy}","received_events_url":"https://api.github.com/users/sroske/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"doubledare","id":2166,"node_id":"MDQ6VXNlcjIxNjY=","avatar_url":"https://avatars1.githubusercontent.com/u/2166?v=4","gravatar_id":"","url":"https://api.github.com/users/doubledare","html_url":"https://github.com/doubledare","followers_url":"https://api.github.com/users/doubledare/followers","following_url":"https://api.github.com/users/doubledare/following{/other_user}","gists_url":"https://api.github.com/users/doubledare/gists{/gist_id}","starred_url":"https://api.github.com/users/doubledare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/doubledare/subscriptions","organizations_url":"https://api.github.com/users/doubledare/orgs","repos_url":"https://api.github.com/users/doubledare/repos","events_url":"https://api.github.com/users/doubledare/events{/privacy}","received_events_url":"https://api.github.com/users/doubledare/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"JamesHarrison","id":2263,"node_id":"MDQ6VXNlcjIyNjM=","avatar_url":"https://avatars0.githubusercontent.com/u/2263?v=4","gravatar_id":"","url":"https://api.github.com/users/JamesHarrison","html_url":"https://github.com/JamesHarrison","followers_url":"https://api.github.com/users/JamesHarrison/followers","following_url":"https://api.github.com/users/JamesHarrison/following{/other_user}","gists_url":"https://api.github.com/users/JamesHarrison/gists{/gist_id}","starred_url":"https://api.github.com/users/JamesHarrison/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JamesHarrison/subscriptions","organizations_url":"https://api.github.com/users/JamesHarrison/orgs","repos_url":"https://api.github.com/users/JamesHarrison/repos","events_url":"https://api.github.com/users/JamesHarrison/events{/privacy}","received_events_url":"https://api.github.com/users/JamesHarrison/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"zemariamm","id":2427,"node_id":"MDQ6VXNlcjI0Mjc=","avatar_url":"https://avatars0.githubusercontent.com/u/2427?v=4","gravatar_id":"","url":"https://api.github.com/users/zemariamm","html_url":"https://github.com/zemariamm","followers_url":"https://api.github.com/users/zemariamm/followers","following_url":"https://api.github.com/users/zemariamm/following{/other_user}","gists_url":"https://api.github.com/users/zemariamm/gists{/gist_id}","starred_url":"https://api.github.com/users/zemariamm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zemariamm/subscriptions","organizations_url":"https://api.github.com/users/zemariamm/orgs","repos_url":"https://api.github.com/users/zemariamm/repos","events_url":"https://api.github.com/users/zemariamm/events{/privacy}","received_events_url":"https://api.github.com/users/zemariamm/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"tgittos","id":2472,"node_id":"MDQ6VXNlcjI0NzI=","avatar_url":"https://avatars3.githubusercontent.com/u/2472?v=4","gravatar_id":"","url":"https://api.github.com/users/tgittos","html_url":"https://github.com/tgittos","followers_url":"https://api.github.com/users/tgittos/followers","following_url":"https://api.github.com/users/tgittos/following{/other_user}","gists_url":"https://api.github.com/users/tgittos/gists{/gist_id}","starred_url":"https://api.github.com/users/tgittos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tgittos/subscriptions","organizations_url":"https://api.github.com/users/tgittos/orgs","repos_url":"https://api.github.com/users/tgittos/repos","events_url":"https://api.github.com/users/tgittos/events{/privacy}","received_events_url":"https://api.github.com/users/tgittos/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"lhl","id":2581,"node_id":"MDQ6VXNlcjI1ODE=","avatar_url":"https://avatars2.githubusercontent.com/u/2581?v=4","gravatar_id":"","url":"https://api.github.com/users/lhl","html_url":"https://github.com/lhl","followers_url":"https://api.github.com/users/lhl/followers","following_url":"https://api.github.com/users/lhl/following{/other_user}","gists_url":"https://api.github.com/users/lhl/gists{/gist_id}","starred_url":"https://api.github.com/users/lhl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhl/subscriptions","organizations_url":"https://api.github.com/users/lhl/orgs","repos_url":"https://api.github.com/users/lhl/repos","events_url":"https://api.github.com/users/lhl/events{/privacy}","received_events_url":"https://api.github.com/users/lhl/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"gabriel","id":2669,"node_id":"MDQ6VXNlcjI2Njk=","avatar_url":"https://avatars2.githubusercontent.com/u/2669?v=4","gravatar_id":"","url":"https://api.github.com/users/gabriel","html_url":"https://github.com/gabriel","followers_url":"https://api.github.com/users/gabriel/followers","following_url":"https://api.github.com/users/gabriel/following{/other_user}","gists_url":"https://api.github.com/users/gabriel/gists{/gist_id}","starred_url":"https://api.github.com/users/gabriel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabriel/subscriptions","organizations_url":"https://api.github.com/users/gabriel/orgs","repos_url":"https://api.github.com/users/gabriel/repos","events_url":"https://api.github.com/users/gabriel/events{/privacy}","received_events_url":"https://api.github.com/users/gabriel/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"paulreimer","id":2677,"node_id":"MDQ6VXNlcjI2Nzc=","avatar_url":"https://avatars2.githubusercontent.com/u/2677?v=4","gravatar_id":"","url":"https://api.github.com/users/paulreimer","html_url":"https://github.com/paulreimer","followers_url":"https://api.github.com/users/paulreimer/followers","following_url":"https://api.github.com/users/paulreimer/following{/other_user}","gists_url":"https://api.github.com/users/paulreimer/gists{/gist_id}","starred_url":"https://api.github.com/users/paulreimer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paulreimer/subscriptions","organizations_url":"https://api.github.com/users/paulreimer/orgs","repos_url":"https://api.github.com/users/paulreimer/repos","events_url":"https://api.github.com/users/paulreimer/events{/privacy}","received_events_url":"https://api.github.com/users/paulreimer/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"kevinchiu","id":2712,"node_id":"MDQ6VXNlcjI3MTI=","avatar_url":"https://avatars3.githubusercontent.com/u/2712?v=4","gravatar_id":"","url":"https://api.github.com/users/kevinchiu","html_url":"https://github.com/kevinchiu","followers_url":"https://api.github.com/users/kevinchiu/followers","following_url":"https://api.github.com/users/kevinchiu/following{/other_user}","gists_url":"https://api.github.com/users/kevinchiu/gists{/gist_id}","starred_url":"https://api.github.com/users/kevinchiu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kevinchiu/subscriptions","organizations_url":"https://api.github.com/users/kevinchiu/orgs","repos_url":"https://api.github.com/users/kevinchiu/repos","events_url":"https://api.github.com/users/kevinchiu/events{/privacy}","received_events_url":"https://api.github.com/users/kevinchiu/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"kumekay","id":2738,"node_id":"MDQ6VXNlcjI3Mzg=","avatar_url":"https://avatars1.githubusercontent.com/u/2738?v=4","gravatar_id":"","url":"https://api.github.com/users/kumekay","html_url":"https://github.com/kumekay","followers_url":"https://api.github.com/users/kumekay/followers","following_url":"https://api.github.com/users/kumekay/following{/other_user}","gists_url":"https://api.github.com/users/kumekay/gists{/gist_id}","starred_url":"https://api.github.com/users/kumekay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kumekay/subscriptions","organizations_url":"https://api.github.com/users/kumekay/orgs","repos_url":"https://api.github.com/users/kumekay/repos","events_url":"https://api.github.com/users/kumekay/events{/privacy}","received_events_url":"https://api.github.com/users/kumekay/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"peej","id":2858,"node_id":"MDQ6VXNlcjI4NTg=","avatar_url":"https://avatars1.githubusercontent.com/u/2858?v=4","gravatar_id":"","url":"https://api.github.com/users/peej","html_url":"https://github.com/peej","followers_url":"https://api.github.com/users/peej/followers","following_url":"https://api.github.com/users/peej/following{/other_user}","gists_url":"https://api.github.com/users/peej/gists{/gist_id}","starred_url":"https://api.github.com/users/peej/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/peej/subscriptions","organizations_url":"https://api.github.com/users/peej/orgs","repos_url":"https://api.github.com/users/peej/repos","events_url":"https://api.github.com/users/peej/events{/privacy}","received_events_url":"https://api.github.com/users/peej/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"stinie","id":3000,"node_id":"MDQ6VXNlcjMwMDA=","avatar_url":"https://avatars2.githubusercontent.com/u/3000?v=4","gravatar_id":"","url":"https://api.github.com/users/stinie","html_url":"https://github.com/stinie","followers_url":"https://api.github.com/users/stinie/followers","following_url":"https://api.github.com/users/stinie/following{/other_user}","gists_url":"https://api.github.com/users/stinie/gists{/gist_id}","starred_url":"https://api.github.com/users/stinie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stinie/subscriptions","organizations_url":"https://api.github.com/users/stinie/orgs","repos_url":"https://api.github.com/users/stinie/repos","events_url":"https://api.github.com/users/stinie/events{/privacy}","received_events_url":"https://api.github.com/users/stinie/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"subblue","id":3010,"node_id":"MDQ6VXNlcjMwMTA=","avatar_url":"https://avatars3.githubusercontent.com/u/3010?v=4","gravatar_id":"","url":"https://api.github.com/users/subblue","html_url":"https://github.com/subblue","followers_url":"https://api.github.com/users/subblue/followers","following_url":"https://api.github.com/users/subblue/following{/other_user}","gists_url":"https://api.github.com/users/subblue/gists{/gist_id}","starred_url":"https://api.github.com/users/subblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/subblue/subscriptions","organizations_url":"https://api.github.com/users/subblue/orgs","repos_url":"https://api.github.com/users/subblue/repos","events_url":"https://api.github.com/users/subblue/events{/privacy}","received_events_url":"https://api.github.com/users/subblue/received_events","type":"User","site_admin":false}},{"starred_at":"2009-10-21T21:55:54Z","user":{"login":"mineiro","id":3123,"node_id":"MDQ6VXNlcjMxMjM=","avatar_url":"https://avatars1.githubusercontent.com/u/3123?v=4","gravatar_id":"","url":"https://api.github.com/users/mineiro","html_url":"https://github.com/mineiro","followers_url":"https://api.github.com/users/mineiro/followers","following_url":"https://api.github.com/users/mineiro/following{/other_user}","gists_url":"https://api.github.com/users/mineiro/gists{/gist_id}","starred_url":"https://api.github.com/users/mineiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mineiro/subscriptions","organizations_url":"https://api.github.com/users/mineiro/orgs","repos_url":"https://api.github.com/users/mineiro/repos","events_url":"https://api.github.com/users/mineiro/events{/privacy}","received_events_url":"https://api.github.com/users/mineiro/received_events","type":"User","site_admin":false}}]
+
|
Mailu__Mailu-1196 | refining the default password scheme
In https://github.com/Mailu/Mailu/pull/647 the default scheme was switched to BCRYPT. The argumentation was:
> bcrypt is fast¹ and secure[...]
While it's actually secure, bcypt is not fast. It is _designed_ to be slow - to consume a very high amount of CPU resources to make brute-force attacs expensive.
Unfortunately, such a password scheme is not a good choice for a stateless system where many auth checks are done in a very short time. The current bcrypt strength of 12 consumes ~0.7s of CPU time for each authentication.
This might work for low-volume sites but can easily max out multiple cpus if there's some user traffic.
We should default to something alternative like PBKDF2 that ensures fast response times for auth requests.
| [
{
"content": "import os\n\nfrom socrate import system\n\nDEFAULT_CONFIG = {\n # Specific to the admin UI\n 'DOCKER_SOCKET': 'unix:///var/run/docker.sock',\n 'BABEL_DEFAULT_LOCALE': 'en',\n 'BABEL_DEFAULT_TIMEZONE': 'UTC',\n 'BOOTSTRAP_SERVE_LOCAL': True,\n 'RATELIMIT_STORAGE_URL': '',\n 'QU... | [
{
"content": "import os\n\nfrom socrate import system\n\nDEFAULT_CONFIG = {\n # Specific to the admin UI\n 'DOCKER_SOCKET': 'unix:///var/run/docker.sock',\n 'BABEL_DEFAULT_LOCALE': 'en',\n 'BABEL_DEFAULT_TIMEZONE': 'UTC',\n 'BOOTSTRAP_SERVE_LOCAL': True,\n 'RATELIMIT_STORAGE_URL': '',\n 'QU... | diff --git a/core/admin/mailu/configuration.py b/core/admin/mailu/configuration.py
index f01e1bb96..05fad1733 100644
--- a/core/admin/mailu/configuration.py
+++ b/core/admin/mailu/configuration.py
@@ -51,7 +51,7 @@
'RECAPTCHA_PUBLIC_KEY': '',
'RECAPTCHA_PRIVATE_KEY': '',
# Advanced settings
- 'PASSWORD_SCHEME': 'BLF-CRYPT',
+ 'PASSWORD_SCHEME': 'PBKDF2',
'LOG_LEVEL': 'WARNING',
# Host settings
'HOST_IMAP': 'imap',
diff --git a/setup/flavors/compose/mailu.env b/setup/flavors/compose/mailu.env
index 3228fe410..180239c34 100644
--- a/setup/flavors/compose/mailu.env
+++ b/setup/flavors/compose/mailu.env
@@ -143,8 +143,8 @@ DOMAIN_REGISTRATION=true
COMPOSE_PROJECT_NAME={{ compose_project_name or 'mailu' }}
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME={{ password_scheme or 'BLF-CRYPT' }}
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME={{ password_scheme or 'PBKDF2' }}
# Header to take the real ip from
REAL_IP_HEADER={{ real_ip_header }}
diff --git a/tests/compose/core/mailu.env b/tests/compose/core/mailu.env
index dd7bd25f1..b13e57c59 100644
--- a/tests/compose/core/mailu.env
+++ b/tests/compose/core/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
@@ -144,4 +144,4 @@ REJECT_UNLISTED_RECIPIENT=
# Test for initial admin create
INITIAL_ADMIN_ACCOUNT=admin
INITIAL_ADMIN_DOMAIN=mailu.io
-INITIAL_ADMIN_PW=FooBar
\ No newline at end of file
+INITIAL_ADMIN_PW=FooBar
diff --git a/tests/compose/fetchmail/mailu.env b/tests/compose/fetchmail/mailu.env
index c91a6deb5..636a09a95 100644
--- a/tests/compose/fetchmail/mailu.env
+++ b/tests/compose/fetchmail/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
diff --git a/tests/compose/filters/mailu.env b/tests/compose/filters/mailu.env
index e165fee2d..b6d5ca8fe 100644
--- a/tests/compose/filters/mailu.env
+++ b/tests/compose/filters/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
diff --git a/tests/compose/rainloop/mailu.env b/tests/compose/rainloop/mailu.env
index 65fef5c8c..9c31c8bb8 100644
--- a/tests/compose/rainloop/mailu.env
+++ b/tests/compose/rainloop/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
diff --git a/tests/compose/roundcube/mailu.env b/tests/compose/roundcube/mailu.env
index cadaa84a0..dc503268a 100644
--- a/tests/compose/roundcube/mailu.env
+++ b/tests/compose/roundcube/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
diff --git a/tests/compose/webdav/mailu.env b/tests/compose/webdav/mailu.env
index 7141bf1fa..90fb25b1d 100644
--- a/tests/compose/webdav/mailu.env
+++ b/tests/compose/webdav/mailu.env
@@ -129,8 +129,8 @@ WEBSITE=https://mailu.io
COMPOSE_PROJECT_NAME=mailu
# Default password scheme used for newly created accounts and changed passwords
-# (value: BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
-PASSWORD_SCHEME=BLF-CRYPT
+# (value: PBKDF2, BLF-CRYPT, SHA512-CRYPT, SHA256-CRYPT)
+PASSWORD_SCHEME=PBKDF2
# Header to take the real ip from
REAL_IP_HEADER=
diff --git a/towncrier/newsfragments/1194.feature b/towncrier/newsfragments/1194.feature
new file mode 100644
index 000000000..ee40311a6
--- /dev/null
+++ b/towncrier/newsfragments/1194.feature
@@ -0,0 +1 @@
+Change default password scheme to PBKDF2
|
netbox-community__netbox-14751 | related_name should not be translated
### Deployment Type
Self-hosted
### NetBox Version
v3.7.0
### Python Version
3.8
### Steps to Reproduce
If you enable the translation function, an error appears. This is due to the fact that in `netbox/dcim/models/device_components.py` in the `DeviceBay` class the translation was made `related_name`.
### Expected Behavior
remove translation for `related_name`.
### Observed Behavior
Nonetype Object Has No Attribute model
| [
{
"content": "from functools import cached_property\n\nfrom django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation\nfrom django.core.exceptions import ValidationError\nfrom django.core.validators import MaxValueValidator, MinValueValidator\nfrom django.db import models\nfrom django.db.mode... | [
{
"content": "from functools import cached_property\n\nfrom django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation\nfrom django.core.exceptions import ValidationError\nfrom django.core.validators import MaxValueValidator, MinValueValidator\nfrom django.db import models\nfrom django.db.mode... | diff --git a/netbox/dcim/models/device_components.py b/netbox/dcim/models/device_components.py
index ef235078fa3..88dddb31267 100644
--- a/netbox/dcim/models/device_components.py
+++ b/netbox/dcim/models/device_components.py
@@ -1115,7 +1115,7 @@ class DeviceBay(ComponentModel, TrackingModelMixin):
installed_device = models.OneToOneField(
to='dcim.Device',
on_delete=models.SET_NULL,
- related_name=_('parent_bay'),
+ related_name='parent_bay',
blank=True,
null=True
)
|
projectmesa__mesa-891 | Cookiecutter doesn't work on 0.8.7 release
**Describe the bug**
`mesa startproject` fails after `pipenv install mesa`
```
A valid repository for "/home/neil/.local/share/virtualenvs/baseline-economy-6fg_iky1/lib/python3.8/site-packages/mesa/cookiecutter-mesa" could not be found in the following locations:
...
```
**Expected behavior**
Generate the project layout
**To Reproduce**
- pipenv install mesa
- mesa startproject
**Additional context**
The cookiecutter directory from the repo is missing from the installation.
Additionally there is no help message for `startproject` when you run `mesa --help`
| [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\nimport re\n\nfrom setuptools import setup, find_packages\nfrom codecs import open\n\nrequires = [\"click\", \"cookiecutter\", \"networkx\", \"numpy\", \"pandas\", \"tornado\", \"tqdm\"]\n\nextras_require = {\n \"dev\": [\"coverage\", \"flake8\", \... | [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\nimport re\n\nfrom setuptools import setup, find_packages\nfrom codecs import open\n\nrequires = [\"click\", \"cookiecutter\", \"networkx\", \"numpy\", \"pandas\", \"tornado\", \"tqdm\"]\n\nextras_require = {\n \"dev\": [\"coverage\", \"flake8\", \... | diff --git a/MANIFEST.in b/MANIFEST.in
index d51d8d3685a..697897ce67e 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -3,6 +3,7 @@ include LICENSE
include HISTORY.rst
include README.rst
include setup.py
+include mesa/cookiecutter-mesa/*
include mesa/visualization/templates/*.html
include mesa/visualization/templates/css/*
include mesa/visualization/templates/fonts/*
diff --git a/setup.py b/setup.py
index f0fcfb29e85..df7a9898fc9 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@
requires = ["click", "cookiecutter", "networkx", "numpy", "pandas", "tornado", "tqdm"]
extras_require = {
- "dev": ["coverage", "flake8", "pytest >= 3.6", "pytest-cov", "sphinx"],
+ "dev": ["coverage", "flake8", "pytest >= 4.6", "pytest-cov", "sphinx"],
"docs": ["sphinx"],
}
|
flairNLP__flair-2070 | Keep newline in Sentence for sequence tagging prediction
**Describe the bug**
I'd like to keep the newline character `\n` when doing sequence tagging prediction (keeping it during training seems easier because of the different code paths).
https://github.com/flairNLP/flair/blob/master/flair/data.py#L605 This line removes the newline character after the text has been tokenised. Given that `flair` is very flexible in terms of tokenisation, I think this last-minute modification of tokens is unwelcome. If I wanted to have run `.strip()` on my tokens, I should have done it during tokenisation.
I understand I can replace `\n` with another unused character and then swap them back later but it'd be cleaner if we can avoid that.
**To Reproduce**
`Sentence(["hello", "\n"])`, not using a tokeniser because the text is already tokenised.
**Expected behavior**
I expect two tokens but I get only one.
**Environment (please complete the following information):**
- OS: Linux
- Version: flair 0.7
| [
{
"content": "import torch, flair\nimport logging\nimport re\n\nfrom abc import abstractmethod, ABC\n\nfrom collections import Counter\nfrom collections import defaultdict\n\nfrom deprecated import deprecated\nfrom flair.file_utils import Tqdm\nfrom operator import itemgetter\n\nfrom torch.utils.data import Dat... | [
{
"content": "import torch, flair\nimport logging\nimport re\n\nfrom abc import abstractmethod, ABC\n\nfrom collections import Counter\nfrom collections import defaultdict\n\nfrom deprecated import deprecated\nfrom flair.file_utils import Tqdm\nfrom operator import itemgetter\n\nfrom torch.utils.data import Dat... | diff --git a/flair/data.py b/flair/data.py
index ad561600ef..a82b9ac054 100644
--- a/flair/data.py
+++ b/flair/data.py
@@ -602,7 +602,7 @@ def add_token(self, token: Union[Token, str]):
token.text = token.text.replace('\ufeff', '')
# data with zero-width characters cannot be handled
- if token.text.strip() == '':
+ if token.text == '':
return
self.tokens.append(token)
diff --git a/tests/test_data.py b/tests/test_data.py
index c5141c9fe0..6a2d162e08 100644
--- a/tests/test_data.py
+++ b/tests/test_data.py
@@ -47,7 +47,6 @@ def test_get_head():
def test_create_sentence_on_empty_string():
-
sentence: Sentence = Sentence("")
assert 0 == len(sentence.tokens)
@@ -78,15 +77,26 @@ def test_create_sentence_with_tokenizer():
assert "." == sentence.tokens[3].text
+def test_create_sentence_with_newline():
+ sentence: Sentence = Sentence(["I", "\t", "ich", "\n", "you", "\t", "du", "\n"])
+ assert 8 == len(sentence.tokens)
+ assert "\n" == sentence.tokens[3].text
+
+ sentence: Sentence = Sentence("I \t ich \n you \t du \n", use_tokenizer=False)
+ assert 8 == len(sentence.tokens)
+ assert 0 == sentence.tokens[0].start_pos
+ assert "\n" == sentence.tokens[3].text
+
+
def test_create_sentence_with_custom_tokenizer():
- sentence:Sentence = Sentence("I love Berlin.", use_tokenizer=TokenizerWrapper(no_op_tokenizer))
+ sentence: Sentence = Sentence("I love Berlin.", use_tokenizer=TokenizerWrapper(no_op_tokenizer))
assert 1 == len(sentence.tokens)
assert 0 == sentence.tokens[0].start_pos
assert "I love Berlin." == sentence.tokens[0].text
def test_create_sentence_with_callable():
- sentence:Sentence = Sentence("I love Berlin.", use_tokenizer=no_op_tokenizer)
+ sentence: Sentence = Sentence("I love Berlin.", use_tokenizer=no_op_tokenizer)
assert 1 == len(sentence.tokens)
assert 0 == sentence.tokens[0].start_pos
assert "I love Berlin." == sentence.tokens[0].text
@@ -94,7 +104,7 @@ def test_create_sentence_with_callable():
@pytest.mark.skip(reason="SpacyTokenizer needs optional requirements, so we skip the test by default")
def test_create_sentence_with_spacy_tokenizer():
- sentence:Sentence = Sentence("I love Berlin.", use_tokenizer=SpacyTokenizer("en_core_sci_sm"))
+ sentence: Sentence = Sentence("I love Berlin.", use_tokenizer=SpacyTokenizer("en_core_sci_sm"))
assert 4 == len(sentence.tokens)
assert 0 == sentence.tokens[0].start_pos
@@ -290,8 +300,8 @@ def test_problem_sentences():
sentence = Sentence(text)
assert len(sentence) == 9
- text= "equivalently , accumulating the logs as :( 6 ) sl = 1N ∑ t = 1Nlogp ( Ll | xt , θ ) where " \
- "p ( Ll | xt , θ ) represents the class probability output"
+ text = "equivalently , accumulating the logs as :( 6 ) sl = 1N ∑ t = 1Nlogp ( Ll | xt , θ ) where " \
+ "p ( Ll | xt , θ ) represents the class probability output"
sentence = Sentence(text)
assert len(sentence) == 37
@@ -305,7 +315,6 @@ def test_problem_sentences():
def test_token_indices():
-
text = ": nation on"
sentence = Sentence(text)
assert text == sentence.to_original_text()
@@ -352,23 +361,23 @@ def test_sentence_to_real_string(tasks_base_path):
sentence = corpus.train[0]
sentence.infer_space_after()
assert (
- 'Schartau sagte dem " Tagesspiegel " vom Freitag , Fischer sei " in einer Weise aufgetreten , die alles andere als überzeugend war " .'
- == sentence.to_tokenized_string()
+ 'Schartau sagte dem " Tagesspiegel " vom Freitag , Fischer sei " in einer Weise aufgetreten , die alles andere als überzeugend war " .'
+ == sentence.to_tokenized_string()
)
assert (
- 'Schartau sagte dem "Tagesspiegel" vom Freitag, Fischer sei "in einer Weise aufgetreten, die alles andere als überzeugend war".'
- == sentence.to_plain_string()
+ 'Schartau sagte dem "Tagesspiegel" vom Freitag, Fischer sei "in einer Weise aufgetreten, die alles andere als überzeugend war".'
+ == sentence.to_plain_string()
)
sentence = corpus.train[1]
sentence.infer_space_after()
assert (
- "Firmengründer Wolf Peter Bree arbeitete Anfang der siebziger Jahre als Möbelvertreter , als er einen fliegenden Händler aus dem Libanon traf ."
- == sentence.to_tokenized_string()
+ "Firmengründer Wolf Peter Bree arbeitete Anfang der siebziger Jahre als Möbelvertreter , als er einen fliegenden Händler aus dem Libanon traf ."
+ == sentence.to_tokenized_string()
)
assert (
- "Firmengründer Wolf Peter Bree arbeitete Anfang der siebziger Jahre als Möbelvertreter, als er einen fliegenden Händler aus dem Libanon traf."
- == sentence.to_plain_string()
+ "Firmengründer Wolf Peter Bree arbeitete Anfang der siebziger Jahre als Möbelvertreter, als er einen fliegenden Händler aus dem Libanon traf."
+ == sentence.to_plain_string()
)
@@ -587,7 +596,6 @@ def test_tagged_corpus_make_label_dictionary():
def test_tagged_corpus_statistics():
-
train_sentence = Sentence("I love Berlin.", use_tokenizer=True).add_label('label', 'class_1')
dev_sentence = Sentence("The sun is shining.", use_tokenizer=True).add_label('label', 'class_2')
@@ -614,7 +622,6 @@ def test_tagged_corpus_statistics():
def test_tagged_corpus_statistics_multi_label():
-
train_sentence = Sentence("I love Berlin.", use_tokenizer=True).add_label('label', 'class_1')
dev_sentence = Sentence("The sun is shining.", use_tokenizer=True).add_label('label', 'class_2')
@@ -671,7 +678,6 @@ def test_tagged_corpus_get_tag_statistic():
def test_tagged_corpus_downsample():
-
sentence = Sentence("I love Berlin.", use_tokenizer=True).add_label('label', 'class_1')
corpus: Corpus = Corpus(
@@ -841,8 +847,8 @@ def test_sentence_to_dict():
dict = sentence.to_dict("ner")
assert (
- "Zalando Research is located in Berlin, the capital of Germany."
- == dict["text"]
+ "Zalando Research is located in Berlin, the capital of Germany."
+ == dict["text"]
)
assert "Zalando Research" == dict["entities"][0]["text"]
assert "Berlin" == dict["entities"][1]["text"]
|
ethereum__consensus-specs-2445 | SSZ Union improvement proposal
The current [Union type](https://github.com/ethereum/eth2.0-specs/blob/dev/ssz/simple-serialize.md#composite-types) is not used in Phase0, and largely not yet implemented in client implementations (exception: lighthouse). In more dynamic contexts, it's could be very useful however.
The direct motivation for this is the [Merge block format](https://github.com/ethereum/eth2.0-specs/pull/2257), in which we may see different transaction types that need to be encoded. To avoid overhead of lots of unused zero fields (SSZ does not truncate zeroes like RLP does), you would need different transaction type definitions. And how do you mix these different transactions in the same list, with a Union type.
One problem is that it takes 4 bytes per `Union` selector index (the switch between the type options), and we only really see a few type options in the common use case. This is a simple proposal to parametrize (at the type level, compile-time) the selector byte length. E.g. `Union[4, [uint256, Bitvector, uint8]]` would be **backwards compatible** with the already specified `Union[uint256, Bitvector, uint8]`. This would allow us to specify something like `Union[TRANSACTION_SELECTOR_LENGTH, [LegacyTransaction, BetterTransaction, SuperTransaction, AbstractedTransaction]]` (and yes, the selected index is part of the merkleization, no confusion between types in the merkle proof)
For the merge specifically, an alternative is to use opaque transactions (`List[byte, max_size], a.k.a. Bytes[max_size]` to encode an RLP transaction, instead of structured data). The pro is that the beacon-spec does not have to care about transaction types, the con is that we miss out on SSZ merkleization of transactions into the block-root, one of the very primary places that merkle-proofs would actually be very useful (you can construct a merkle proof about any transaction detail).
As a proof of concept, I implemented this new `Union` behavior in `remerkleable`, the SSZ library used in the python specification. See [here](https://github.com/protolambda/remerkleable/pull/9). (*Note for code reader: it represents the data as binary tree, and overlays it with views, it's focused on merkle proofs and data sharing more so than structural efficiency*).
| [
{
"content": "from setuptools import setup, find_packages, Command\nfrom setuptools.command.build_py import build_py\nfrom distutils import dir_util\nfrom distutils.util import convert_path\nfrom pathlib import Path\nimport os\nimport re\nimport string\nimport textwrap\nfrom typing import Dict, NamedTuple, List... | [
{
"content": "from setuptools import setup, find_packages, Command\nfrom setuptools.command.build_py import build_py\nfrom distutils import dir_util\nfrom distutils.util import convert_path\nfrom pathlib import Path\nimport os\nimport re\nimport string\nimport textwrap\nfrom typing import Dict, NamedTuple, List... | diff --git a/setup.py b/setup.py
index 99e501d9f3..cd2006f715 100644
--- a/setup.py
+++ b/setup.py
@@ -1017,7 +1017,7 @@ def run(self):
"py_ecc==5.2.0",
"milagro_bls_binding==1.6.3",
"dataclasses==0.6",
- "remerkleable==0.1.19",
+ "remerkleable==0.1.20",
RUAMEL_YAML_VERSION,
"lru-dict==1.1.6",
MARKO_VERSION,
diff --git a/ssz/simple-serialize.md b/ssz/simple-serialize.md
index d97b8ea1c9..89a1ebc0b8 100644
--- a/ssz/simple-serialize.md
+++ b/ssz/simple-serialize.md
@@ -20,7 +20,8 @@
- [`null`](#null)
- [`Bitvector[N]`](#bitvectorn)
- [`Bitlist[N]`](#bitlistn)
- - [Vectors, containers, lists, unions](#vectors-containers-lists-unions)
+ - [Vectors, containers, lists](#vectors-containers-lists)
+ - [Union](#union)
- [Deserialization](#deserialization)
- [Merkleization](#merkleization)
- [Summaries and expansions](#summaries-and-expansions)
@@ -61,7 +62,7 @@
* **bitlist**: ordered variable-length collection of `boolean` values, limited to `N` bits
* notation `Bitlist[N]`
* **union**: union type containing one of the given subtypes
- * notation `Union[type_0, type_1, ...]`, e.g. `union[null, uint64]`
+ * notation `Union[type_0, type_1, ...]`, e.g. `union[None, uint64, uint32]`
*Note*: Both `Vector[boolean, N]` and `Bitvector[N]` are valid, yet distinct due to their different serialization requirements. Similarly, both `List[boolean, N]` and `Bitlist[N]` are valid, yet distinct. Generally `Bitvector[N]`/`Bitlist[N]` are preferred because of their serialization efficiencies.
@@ -77,7 +78,6 @@ For convenience we alias:
* `byte` to `uint8` (this is a basic type)
* `BytesN` and `ByteVector[N]` to `Vector[byte, N]` (this is *not* a basic type)
* `ByteList[N]` to `List[byte, N]`
-* `null`: `{}`
### Default values
Assuming a helper function `default(type)` which returns the default value for `type`, we can recursively define the default value for all types.
@@ -101,7 +101,7 @@ An SSZ object is called zeroed (and thus, `is_zero(object)` returns true) if it
- Empty vector types (`Vector[type, 0]`, `Bitvector[0]`) are illegal.
- Containers with no fields are illegal.
-- The `null` type is only legal as the first type in a union subtype (i.e. with type index zero).
+- The `None` type option in a `Union` type is only legal as the first option (i.e. with index zero).
## Serialization
@@ -150,7 +150,7 @@ array[len(value) // 8] |= 1 << (len(value) % 8)
return bytes(array)
```
-### Vectors, containers, lists, unions
+### Vectors, containers, lists
```python
# Recursively serialize
@@ -170,14 +170,26 @@ fixed_parts = [part if part != None else variable_offsets[i] for i, part in enum
return b"".join(fixed_parts + variable_parts)
```
-If `value` is a union type:
+### Union
-Define value as an object that has properties `value.value` with the contained value, and `value.type_index` which indexes the type.
+A `value` as `Union[T...]` type has properties `value.value` with the contained value, and `value.selector` which indexes the selected `Union` type option `T`.
+
+A `Union`:
+- May have multiple selectors with the same type.
+- Should not use selectors above 127 (i.e. highest bit is set), these are reserved for backwards compatible extensions.
+- Must have at least 1 type option.
+- May have `None` as first type option, i.e. `selector == 0`
+- Must have at least 2 type options if the first is `None`
+- Is always considered a variable-length type, even if all type options have an equal fixed-length.
```python
-serialized_bytes = serialize(value.value)
-serialized_type_index = value.type_index.to_bytes(BYTES_PER_LENGTH_OFFSET, "little")
-return serialized_type_index + serialized_bytes
+if value.value is None:
+ assert value.selector == 0
+ return b"\x00"
+else:
+ serialized_bytes = serialize(value.value)
+ serialized_selector_index = value.selector.to_bytes(1, "little")
+ return serialized_selector_index + serialized_bytes
```
## Deserialization
@@ -191,12 +203,14 @@ Deserialization can be implemented using a recursive algorithm. The deserializat
* The size of each object in the vector/list can be inferred from the difference of two offsets. To get the size of the last object, the total number of bytes has to be known (it is not generally possible to deserialize an SSZ object of unknown length)
* Containers follow the same principles as vectors, with the difference that there may be fixed-size objects in a container as well. This means the `fixed_parts` data will contain offsets as well as fixed-size objects.
* In the case of bitlists, the length in bits cannot be uniquely inferred from the number of bytes in the object. Because of this, they have a bit at the end that is always set. This bit has to be used to infer the size of the bitlist in bits.
+* The first byte of the deserialization scope is deserialized as type selector, the remainder of the scope is deserialized as the selected type.
Note that deserialization requires hardening against invalid inputs. A non-exhaustive list:
- Offsets: out of order, out of range, mismatching minimum element size.
- Scope: Extra unused bytes, not aligned with element size.
- More elements than a list limit allows. Part of enforcing consensus.
+- An out-of-bounds selected index in an `Union`
Efficient algorithms for computing this object can be found in [the implementations](#implementations).
@@ -227,7 +241,7 @@ We first define helper functions:
- If `1` chunk: the root is the chunk itself.
- If `> 1` chunks: merkleize as binary tree.
* `mix_in_length`: Given a Merkle root `root` and a length `length` (`"uint256"` little-endian serialization) return `hash(root + length)`.
-* `mix_in_type`: Given a Merkle root `root` and a type_index `type_index` (`"uint256"` little-endian serialization) return `hash(root + type_index)`.
+* `mix_in_selector`: Given a Merkle root `root` and a type selector `selector` (`"uint256"` little-endian serialization) return `hash(root + selector)`.
We now define Merkleization `hash_tree_root(value)` of an object `value` recursively:
@@ -237,7 +251,8 @@ We now define Merkleization `hash_tree_root(value)` of an object `value` recursi
* `mix_in_length(merkleize(pack_bits(value), limit=chunk_count(type)), len(value))` if `value` is a bitlist.
* `merkleize([hash_tree_root(element) for element in value])` if `value` is a vector of composite objects or a container.
* `mix_in_length(merkleize([hash_tree_root(element) for element in value], limit=chunk_count(type)), len(value))` if `value` is a list of composite objects.
-* `mix_in_type(merkleize(value.value), value.type_index)` if `value` is of union type.
+* `mix_in_selector(hash_tree_root(value.value), value.selector)` if `value` is of union type, and `value.value` is not `None`
+* `mix_in_selector(Bytes32(), 0)` if `value` is of union type, and `value.value` is `None`
## Summaries and expansions
diff --git a/tests/core/pyspec/eth2spec/utils/ssz/ssz_typing.py b/tests/core/pyspec/eth2spec/utils/ssz/ssz_typing.py
index 9b18f8bdae..5a1b61d0be 100644
--- a/tests/core/pyspec/eth2spec/utils/ssz/ssz_typing.py
+++ b/tests/core/pyspec/eth2spec/utils/ssz/ssz_typing.py
@@ -2,6 +2,7 @@
# Ignore linter: This module makes importing SSZ types easy, and hides away the underlying library from the spec.
from remerkleable.complex import Container, Vector, List
+from remerkleable.union import Union
from remerkleable.basic import boolean, bit, uint, byte, uint8, uint16, uint32, uint64, uint128, uint256
from remerkleable.bitfields import Bitvector, Bitlist
from remerkleable.byte_arrays import ByteVector, Bytes1, Bytes4, Bytes8, Bytes32, Bytes48, Bytes96, ByteList
|
googleapis__python-bigquery-398 | google-cloud-bigquery[opentelemetry] un-installable together with opentelemetry-exporter-google-cloud
According to the instructions [Instrumenting With OpenTelemetry](https://github.com/googleapis/python-bigquery#instrumenting-with-opentelemetry) in the README the following packages needs to be installed to use OpenTelemtry tracing `google-cloud-bigquery[opentelemetry] opentelemetry-exporter-google-cloud`, but `google-cloud-bigquery[opentelemetry]` depends on `opentelemetry-api`, `opentelemetry-sdk`, and `opentelemetry-instrumentation` of version `0.9b0` [setup.py](https://github.com/googleapis/python-bigquery/blob/master/setup.py#L57-L61).
But there is no version of `opentelemetry-exporter-google-cloud` that can use that (old) version.
https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/master/opentelemetry-exporter-google-cloud
#### Environment details
- OS type and version: macOS 10.15
- Python version: 3.8.6
- pip version: 20.3.3
- `google-cloud-bigquery` version: 2.2.0
#### Steps to reproduce
```
$ pip3.8 install --user -r <(echo "google-cloud-bigquery[opentelemetry]==2.2.0
opentelemetry-exporter-google-cloud")
Requirement already satisfied: google-cloud-bigquery[opentelemetry]==2.2.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from -r /dev/fd/63 (line 1)) (2.2.0)
Requirement already satisfied: opentelemetry-exporter-google-cloud in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from -r /dev/fd/63 (line 2)) (0.11b0)
Requirement already satisfied: google-resumable-media<2.0dev,>=0.6.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.1.0)
Requirement already satisfied: proto-plus>=1.10.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.10.0)
Requirement already satisfied: google-api-core[grpc]<2.0.0dev,>=1.22.2 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.22.2)
Requirement already satisfied: protobuf>=3.12.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (3.13.0)
Requirement already satisfied: six<2.0.0dev,>=1.13.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.15.0)
Requirement already satisfied: google-cloud-core<2.0dev,>=1.4.1 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.4.3)
Collecting opentelemetry-sdk==0.9b0; extra == "opentelemetry"
Using cached opentelemetry_sdk-0.9b0-py3-none-any.whl (33 kB)
Requirement already satisfied: opentelemetry-instrumentation==0.9b0; extra == "opentelemetry" in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (0.9b0)
Collecting opentelemetry-api==0.9b0; extra == "opentelemetry"
Using cached opentelemetry_api-0.9b0-py3-none-any.whl (43 kB)
Requirement already satisfied: google-cloud-monitoring in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from opentelemetry-exporter-google-cloud->-r /dev/fd/63 (line 2)) (1.1.0)
Requirement already satisfied: google-cloud-trace in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from opentelemetry-exporter-google-cloud->-r /dev/fd/63 (line 2)) (0.24.0)
Requirement already satisfied: google-crc32c<2.0dev,>=1.0; python_version >= "3.5" in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-resumable-media<2.0dev,>=0.6.0->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.0.0)
Requirement already satisfied: googleapis-common-protos<2.0dev,>=1.6.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.52.0)
Requirement already satisfied: requests<3.0.0dev,>=2.18.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (2.24.0)
Requirement already satisfied: google-auth<2.0dev,>=1.21.1 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.22.0)
Requirement already satisfied: setuptools>=34.0.0 in /usr/local/lib/python3.8/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (50.3.0)
Requirement already satisfied: pytz in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (2020.1)
Requirement already satisfied: grpcio<2.0dev,>=1.29.0; extra == "grpc" in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.32.0)
Requirement already satisfied: wrapt<2.0.0,>=1.0.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from opentelemetry-instrumentation==0.9b0; extra == "opentelemetry"->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.12.1)
Requirement already satisfied: idna<3,>=2.5 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (2.10)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.25.10)
Requirement already satisfied: certifi>=2017.4.17 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (2020.6.20)
Requirement already satisfied: chardet<4,>=3.0.2 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (3.0.4)
Requirement already satisfied: aiohttp<4.0.0dev,>=3.6.2; python_version >= "3.6" in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (3.6.2)
Requirement already satisfied: pyasn1-modules>=0.2.1 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (0.2.8)
Requirement already satisfied: rsa<5,>=3.1.4; python_version >= "3.5" in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (4.6)
Requirement already satisfied: cachetools<5.0,>=2.0.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (4.1.1)
Requirement already satisfied: async-timeout<4.0,>=3.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from aiohttp<4.0.0dev,>=3.6.2; python_version >= "3.6"->google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (3.0.1)
Requirement already satisfied: multidict<5.0,>=4.5 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from aiohttp<4.0.0dev,>=3.6.2; python_version >= "3.6"->google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (4.7.6)
Requirement already satisfied: yarl<2.0,>=1.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from aiohttp<4.0.0dev,>=3.6.2; python_version >= "3.6"->google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (1.6.0)
Requirement already satisfied: attrs>=17.3.0 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from aiohttp<4.0.0dev,>=3.6.2; python_version >= "3.6"->google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (20.2.0)
Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /Users/rvonessen/Library/Python/3.8/lib/python/site-packages (from pyasn1-modules>=0.2.1->google-auth<2.0dev,>=1.21.1->google-api-core[grpc]<2.0.0dev,>=1.22.2->google-cloud-bigquery[opentelemetry]==2.2.0->-r /dev/fd/63 (line 1)) (0.4.8)
Installing collected packages: opentelemetry-api, opentelemetry-sdk
Attempting uninstall: opentelemetry-api
Found existing installation: opentelemetry-api 0.11b0
Uninstalling opentelemetry-api-0.11b0:
Successfully uninstalled opentelemetry-api-0.11b0
Attempting uninstall: opentelemetry-sdk
Found existing installation: opentelemetry-sdk 0.11b0
Uninstalling opentelemetry-sdk-0.11b0:
Successfully uninstalled opentelemetry-sdk-0.11b0
ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency conflicts.
We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default.
opentelemetry-exporter-google-cloud 0.11b0 requires opentelemetry-api==0.11b0, but you'll have opentelemetry-api 0.9b0 which is incompatible.
opentelemetry-exporter-google-cloud 0.11b0 requires opentelemetry-sdk==0.11b0, but you'll have opentelemetry-sdk 0.9b0 which is incompatible.
```
(The result is the same using the `2020-resolver`.)
| [
{
"content": "# Copyright 2018 Google LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicabl... | [
{
"content": "# Copyright 2018 Google LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicabl... | diff --git a/setup.py b/setup.py
index 48c4a7518..5f4e506eb 100644
--- a/setup.py
+++ b/setup.py
@@ -55,9 +55,9 @@
],
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
"opentelemetry": [
- "opentelemetry-api==0.9b0",
- "opentelemetry-sdk==0.9b0",
- "opentelemetry-instrumentation==0.9b0 ",
+ "opentelemetry-api==0.11b0",
+ "opentelemetry-sdk==0.11b0",
+ "opentelemetry-instrumentation==0.11b0",
],
}
|
marshmallow-code__webargs-414 | Schema factory only variable fail - can't pass list type
Looking at the [schema factory docs](https://webargs.readthedocs.io/en/latest/advanced.html#schema-factories), I'm interested in trying the
```
# Filter based on 'fields' query parameter
only = request.args.get("fields", None)
```
part.
However, when I try appending something like `?fields=some_field` to my HTTP request, I get the following error:
```
File "edited/marshmallow/schema.py", line 349, in __init__
raise StringNotCollectionError('"only" should be a list of strings')
```
As far as I can see, webargs always passes the query string parameters as strings. I tried wrapping it in square brackets, but I think I'm barking up the wrong tree. Have I misunderstood something, or is this a bug?
| [
{
"content": "\"\"\"Example implementation of using a marshmallow Schema for both request input\nand output with a `use_schema` decorator.\nRun the app:\n\n $ python examples/schema_example.py\n\nTry the following with httpie (a cURL-like utility, http://httpie.org):\n\n $ pip install httpie\n $ http G... | [
{
"content": "\"\"\"Example implementation of using a marshmallow Schema for both request input\nand output with a `use_schema` decorator.\nRun the app:\n\n $ python examples/schema_example.py\n\nTry the following with httpie (a cURL-like utility, http://httpie.org):\n\n $ pip install httpie\n $ http G... | diff --git a/README.rst b/README.rst
index fc36d904..c1de1029 100644
--- a/README.rst
+++ b/README.rst
@@ -34,11 +34,9 @@ webargs is a Python library for parsing and validating HTTP request objects, wit
app = Flask(__name__)
- hello_args = {"name": fields.Str(required=True)}
-
@app.route("/")
- @use_args(hello_args)
+ @use_args({"name": fields.Str(required=True)})
def index(args):
return "Hello " + args["name"]
diff --git a/docs/advanced.rst b/docs/advanced.rst
index 9879dacc..01b04176 100644
--- a/docs/advanced.rst
+++ b/docs/advanced.rst
@@ -26,7 +26,7 @@ To add your own custom location handler, write a function that receives a reques
return "displaying {} posts".format(args["per_page"])
-Marshmallow Integration
+marshmallow Integration
-----------------------
When you need more flexibility in defining input schemas, you can pass a marshmallow `Schema <marshmallow.Schema>` instead of a dictionary to `Parser.parse <webargs.core.Parser.parse>`, `Parser.use_args <webargs.core.Parser.use_args>`, and `Parser.use_kwargs <webargs.core.Parser.use_kwargs>`.
@@ -46,8 +46,9 @@ When you need more flexibility in defining input schemas, you can pass a marshma
last_name = fields.Str(missing="")
date_registered = fields.DateTime(dump_only=True)
- class Meta:
- strict = True
+ # NOTE: Uncomment below two lines if you're using marshmallow 2
+ # class Meta:
+ # strict = True
@use_args(UserSchema())
@@ -88,9 +89,12 @@ Consider the following use cases:
.. code-block:: python
+ from flask import Flask
from marshmallow import Schema, fields
from webargs.flaskparser import use_args
+ app = Flask(__name__)
+
class UserSchema(Schema):
id = fields.Int(dump_only=True)
@@ -100,13 +104,11 @@ Consider the following use cases:
last_name = fields.Str(missing="")
date_registered = fields.DateTime(dump_only=True)
- class Meta:
- strict = True
-
def make_user_schema(request):
# Filter based on 'fields' query parameter
- only = request.args.get("fields", None)
+ fields = request.args.get("fields", None)
+ only = fields.split(",") if fields else None
# Respect partial updates for PATCH requests
partial = request.method == "PATCH"
# Add current request to the schema's context
@@ -114,12 +116,14 @@ Consider the following use cases:
# Pass the factory to .parse, .use_args, or .use_kwargs
+ @app.route("/profile/", methods=["GET", "POST", "PATCH"])
@use_args(make_user_schema)
def profile_view(args):
- username = args["username"]
+ username = args.get("username")
# ...
+
Reducing Boilerplate
++++++++++++++++++++
@@ -138,14 +142,8 @@ We can reduce boilerplate and improve [re]usability with a simple helper functio
only = request.args.get("fields", None)
# Respect partial updates for PATCH requests
partial = request.method == "PATCH"
- # Add current request to the schema's context
- # and ensure we're always using strict mode
return schema_cls(
- only=only,
- partial=partial,
- strict=True,
- context={"request": request},
- **schema_kwargs
+ only=only, partial=partial, context={"request": request}, **schema_kwargs
)
return use_args(factory, **kwargs)
@@ -275,9 +273,6 @@ For example, you might implement JSON PATCH according to `RFC 6902 <https://tool
path = fields.Str(required=True)
value = fields.Str(required=True)
- class Meta:
- strict = True
-
@app.route("/profile/", methods=["patch"])
@use_args(PatchSchema(many=True), locations=("json",))
diff --git a/docs/index.rst b/docs/index.rst
index 0de96a3f..e152b9f3 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -15,11 +15,9 @@ webargs is a Python library for parsing and validating HTTP request objects, wit
app = Flask(__name__)
- hello_args = {"name": fields.Str(required=True)}
-
@app.route("/")
- @use_args(hello_args)
+ @use_args({"name": fields.Str(required=True)})
def index(args):
return "Hello " + args["name"]
diff --git a/examples/schema_example.py b/examples/schema_example.py
index f1177dc8..148918bc 100644
--- a/examples/schema_example.py
+++ b/examples/schema_example.py
@@ -89,9 +89,6 @@ class UserSchema(Schema):
first_name = fields.Str()
last_name = fields.Str()
- class Meta:
- strict = True
-
@post_dump(pass_many=True)
def wrap_with_envelope(self, data, many, **kwargs):
return {"data": data}
|
ansible__molecule-1717 | build fails on functional tests shard 1/3
# Issue Type
- Bug report
# Desired Behavior
CI green
# Actual Behaviour
Build fails on functional tests shard 1/3, for all versions of Ansible and python
example: https://travis-ci.com/ansible/molecule/jobs/174166218
```
test/functional/docker/test_scenarios.py::test_plugins[plugins-docker-default] PASSED [100%]
=================================== FAILURES ===================================
_____________ test_host_group_vars[host_group_vars-docker-default] _____________
scenario_to_test = 'host_group_vars', with_scenario = None
scenario_name = 'default'
@skip_unsupported_matrix
@pytest.mark.parametrize(
'scenario_to_test, driver_name, scenario_name', [
('host_group_vars', 'docker', 'default'),
],
indirect=[
'scenario_to_test',
'driver_name',
'scenario_name',
])
def test_host_group_vars(scenario_to_test, with_scenario, scenario_name):
options = {
'all': True,
}
cmd = sh.molecule.bake('test', **options)
> out = pytest.helpers.run_command(cmd, log=False)
../../functional/docker/test_scenarios.py:349:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../../conftest.py:43: in run_command
return util.run_command(cmd)
../../../molecule/util.py:105: in run_command
return cmd()
../../../.tox/ansible27-functional/lib/python3.7/site-packages/sh.py:1427: in __call__
return RunningCommand(cmd, call_args, stdin, stdout, stderr)
../../../.tox/ansible27-functional/lib/python3.7/site-packages/sh.py:774: in __init__
self.wait()
../../../.tox/ansible27-functional/lib/python3.7/site-packages/sh.py:792: in wait
self.handle_command_exit_code(exit_code)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = --> Validating schema /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/links/molecule....
code = 1
def handle_command_exit_code(self, code):
""" here we determine if we had an exception, or an error code that we
weren't expecting to see. if we did, we create and raise an exception
"""
ca = self.call_args
exc_class = get_exc_exit_code_would_raise(code, ca["ok_code"],
ca["piped"])
if exc_class:
exc = exc_class(self.ran, self.process.stdout, self.process.stderr,
ca["truncate_exc"])
> raise exc
E sh.ErrorReturnCode_1:
E
E RAN: /home/travis/build/ansible/molecule/.tox/ansible27-functional/bin/molecule test --all
E
E STDOUT:
E --> Validating schema /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/links/molecule.yml.
E Validation completed successfully.
E --> Validating schema /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/default/molecule.yml.
E Validation completed successfully.
E --> Test matrix
E
E ├── links
E │ ├── lint
E │ ├── destroy
E │ ├── dependency
E │ ├── syntax
E │ ├── create
E │ ├── prepare
E │ ├── converge
E │ ├── idempotence
E │ ├── side_effect
E │ ├── v... (15851 more, please see e.stdout)
E
E STDERR:
../../../.tox/ansible27-functional/lib/python3.7/site-packages/sh.py:815: ErrorReturnCode_1
--------------------------- Captured stdout teardown ---------------------------
CLEANUP: Destroying instances for all scenario(s)
--> Validating schema /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/links/molecule.yml.
Validation completed successfully.
--> Validating schema /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/default/molecule.yml.
Validation completed successfully.
--> Test matrix
├── links
│ └── destroy
└── default
└── destroy
--> Inventory /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/links/../../host_vars linked to /tmp/molecule/host_group_vars/links/host_vars
--> Inventory /home/travis/build/ansible/molecule/test/scenarios/host_group_vars/molecule/links/../../group_vars linked to /tmp/molecule/host_group_vars/links/group_vars
--> Scenario: 'links'
--> Action: 'destroy'
PLAY [Destroy] *****************************************************************
TASK [Destroy molecule instance(s)] ********************************************
changed: [localhost] => (item=None)
changed: [localhost]
TASK [Wait for instance(s) deletion to complete] *******************************
ok: [localhost] => (item=None)
ok: [localhost]
TASK [Delete docker network(s)] ************************************************
PLAY RECAP *********************************************************************
localhost : ok=2 changed=1 unreachable=0 failed=0
--> Scenario: 'default'
--> Action: 'destroy'
PLAY [Destroy] *****************************************************************
TASK [Destroy molecule instance(s)] ********************************************
changed: [localhost] => (item=None)
changed: [localhost]
TASK [Wait for instance(s) deletion to complete] *******************************
ok: [localhost] => (item=None)
ok: [localhost]
TASK [Delete docker network(s)] ************************************************
PLAY RECAP *********************************************************************
localhost : ok=2 changed=1 unreachable=0 failed=0
```
| [
{
"content": "# Copyright (c) 2015-2018 Cisco Systems, Inc.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to\n# deal in the Software without restriction, including without limitation the\n# right... | [
{
"content": "# Copyright (c) 2015-2018 Cisco Systems, Inc.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to\n# deal in the Software without restriction, including without limitation the\n# right... | diff --git a/molecule/util.py b/molecule/util.py
index 1c64367502..426cae35ae 100644
--- a/molecule/util.py
+++ b/molecule/util.py
@@ -102,7 +102,7 @@ def run_command(cmd, debug=False):
print_environment_vars(cmd._partial_call_args.get('env', {}))
print_debug('COMMAND', str(cmd))
print()
- return cmd()
+ return cmd(_truncate_exc=False)
def os_walk(directory, pattern, excludes=[]):
diff --git a/test/scenarios/host_group_vars/molecule/default/playbook.yml b/test/scenarios/host_group_vars/molecule/default/playbook.yml
index 074a053525..b42d93e651 100644
--- a/test/scenarios/host_group_vars/molecule/default/playbook.yml
+++ b/test/scenarios/host_group_vars/molecule/default/playbook.yml
@@ -10,7 +10,8 @@
changed_when: false
- name: Group vars group_var for group example from molecule.yml
- command: echo "{{ host_group_vars_example_group_one_molecule_yml }} {{ host_group_vars_example_group_two_molecule_yml }}"
+ command: |-
+ echo "{{ host_group_vars_example_group_one_molecule_yml }} {{ host_group_vars_example_group_two_molecule_yml }}"
changed_when: false
- name: Group vars from group_vars existing directory
|
qtile__qtile-1645 | lazy.when
# Issue description
I found this quite oldy [`config.py`](https://gist.github.com/cjbarnes18/4151805) that uses a `when` operation to limit the keybinding to a layout but it throws an exception. I also couldn't find it in the docs, so is it supposed to exist? Is there another similar intended way to limit key bindings to a layout.
```python
from libqtile.lazy import lazy
```
...
```python
Key([mod], 'Left',
lazy.layout.left().when('xmonadtall'))
```
# Qtile version
v0.15.0
# Stack traces
```
libqtile xcore.py:_xpoll():L277 Got an exception in poll loop
Traceback (most recent call last):
File "/share/git/qtile/libqtile/backend/x11/xcore.py", line 246, in _xpoll
ret = target(event)
File "/share/git/qtile/libqtile/backend/x11/xcore.py", line 494, in handle_KeyPress
self.qtile.process_key_event(keysym, event.state & self._valid_mask)
File "/share/git/qtile/libqtile/core/manager.py", line 342, in process_key_event
if cmd.check(self):
AttributeError: 'NoneType' object has no attribute 'check'
```
Thanks for any help
| [
{
"content": "# Copyright (c) 2019, Sean Vig. All rights reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights... | [
{
"content": "# Copyright (c) 2019, Sean Vig. All rights reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights... | diff --git a/libqtile/lazy.py b/libqtile/lazy.py
index c30c4d0542..0ab1dffea6 100644
--- a/libqtile/lazy.py
+++ b/libqtile/lazy.py
@@ -72,6 +72,7 @@ def kwargs(self) -> Dict:
def when(self, layout=None, when_floating=True):
self._layout = layout
self._when_floating = when_floating
+ return self
def check(self, q) -> bool:
if self._layout is not None:
|
chainer__chainer-258 | Shape of output value of `concat` is list in GPU
`cuda.empty([1])` makes a `GPUArray` with `list` shape. It causes a type invalid error.
https://github.com/pfnet/chainer/blob/master/chainer/functions/concat.py#L69
| [
{
"content": "import numpy\n\nfrom chainer import cuda\nfrom chainer import function\nfrom chainer.utils import type_check\n\n_args = 'const float* x, float* y, int cdimx, int cdimy, int rdim, int coffset'\n_preamble = '''\n#define COPY(statement) \\\n int l = i / (rdim * cdimx); \\\n int c = i / rdi... | [
{
"content": "import numpy\n\nfrom chainer import cuda\nfrom chainer import function\nfrom chainer.utils import type_check\n\n_args = 'const float* x, float* y, int cdimx, int cdimy, int rdim, int coffset'\n_preamble = '''\n#define COPY(statement) \\\n int l = i / (rdim * cdimx); \\\n int c = i / rdi... | diff --git a/chainer/functions/concat.py b/chainer/functions/concat.py
index 748616e60cb7..3828b9b8e68d 100644
--- a/chainer/functions/concat.py
+++ b/chainer/functions/concat.py
@@ -64,6 +64,7 @@ def forward_gpu(self, xs):
shape = list(xs[0].shape)
for x in xs[1:]:
shape[self.axis] += x.shape[self.axis]
+ shape = tuple(shape)
self.shape = shape
y = cuda.empty(shape, dtype=xs[0].dtype)
diff --git a/tests/functions_tests/test_concat.py b/tests/functions_tests/test_concat.py
index 1169faf30d2d..6bb66a2d942c 100644
--- a/tests/functions_tests/test_concat.py
+++ b/tests/functions_tests/test_concat.py
@@ -20,6 +20,7 @@ def check_forward(self, xs_data, y_data, axis):
xs = tuple(chainer.Variable(x_data) for x_data in xs_data)
y = functions.concat(xs, axis=axis)
gradient_check.assert_allclose(y_data, y.data, atol=0, rtol=0)
+ self.assertIsInstance(y.data.shape, tuple)
def test_forward_cpu(self):
self.check_forward(self.xs, self.y, axis=self.axis)
|
Kinto__kinto-1752 | Deleting a collection doesn't delete access_control_entries for its children
`buckets.py` has an event listener that ensures that when a bucket is deleted, everything underneath it is recursively deleted. `collections.py` has one too but it doesn't appear to be as robust -- it doesn't have a wildcard to match objects more than one level below it (which might be OK, since only records are below collections now), and `delete_object_permissions` is only called on the collection rather than its children.
| [
{
"content": "import colander\nfrom pyramid.events import subscriber\n\nfrom kinto.core import resource, utils\nfrom kinto.core.events import ResourceChanged, ACTIONS\nfrom kinto.schema_validation import validate_from_bucket_schema_or_400, JSONSchemaMapping\n\n\nclass CollectionSchema(resource.ResourceSchema):\... | [
{
"content": "import colander\nfrom pyramid.events import subscriber\n\nfrom kinto.core import resource, utils\nfrom kinto.core.events import ResourceChanged, ACTIONS\nfrom kinto.schema_validation import validate_from_bucket_schema_or_400, JSONSchemaMapping\n\n\nclass CollectionSchema(resource.ResourceSchema):\... | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 193a066de..cb740b1a0 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -7,7 +7,8 @@ This document describes changes between each past release.
10.0.1 (unreleased)
-------------------
-- Nothing changed yet.
+**Bug fixes**
+- Deleting a collection doesn't delete access_control_entrries for its children (fixes #1647)
10.0.0 (2018-08-16)
@@ -35,11 +36,11 @@ This document describes changes between each past release.
- Raise a configuration error if the ``kinto.plugin.accounts`` is included without being enabled in policies.
Without this *kinto-admin* would present a confusing login experience (fixes #1734).
-
**Internal changes**
- Upgrade kinto-admin to v1.20.0
+
9.2.3 (2018-07-05)
------------------
diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst
index c43d6a8c8..ab472d2d8 100644
--- a/CONTRIBUTORS.rst
+++ b/CONTRIBUTORS.rst
@@ -6,6 +6,7 @@ Contributors
* Aditya Bhasin <conlini@gmail.com>
* Aiman Parvaiz <aimanparvaiz@gmail.com>
* Anh <anh.trinhtrung@gmail.com>
+* Alexander Ryabkov <alexryabkov@gmail.com>
* Alexis Metaireau <alexis@mozilla.com>
* Andy McKay <amckay@mozilla.com>
* Anthony Garuccio <garuccio124@gmail.com>
diff --git a/kinto/views/collections.py b/kinto/views/collections.py
index 8c3528d0e..e27388b89 100644
--- a/kinto/views/collections.py
+++ b/kinto/views/collections.py
@@ -56,4 +56,4 @@ def on_collections_deleted(event):
with_deleted=False)
storage.purge_deleted(collection_id=None,
parent_id=parent_id)
- permission.delete_object_permissions(parent_id)
+ permission.delete_object_permissions(parent_id + '/*')
diff --git a/tests/test_views_collections.py b/tests/test_views_collections.py
index f561963ba..544eaff29 100644
--- a/tests/test_views_collections.py
+++ b/tests/test_views_collections.py
@@ -158,6 +158,14 @@ def test_can_be_created_after_deletion_with_if_none_match_star(self):
self.app.put_json(self.collection_url, MINIMALIST_COLLECTION,
headers=headers, status=201)
+ def test_collection_permissions_are_removed_after_collection_deleted(self):
+ self.assertDictEqual(self.permission.get_object_permissions(
+ self.collection_url), {})
+
+ def test_records_permissions_are_removed_after_collection_deleted(self):
+ self.assertDictEqual(self.permission.get_object_permissions(
+ self.record_url), {})
+
class CollectionCreationTest(BaseWebTest, unittest.TestCase):
|
Pycord-Development__pycord-2295 | After is set to id=0 even if you pass a value for after in https://docs.pycord.dev/en/stable/api/models.html#discord.Guild.audit_logs
### Summary
After is not updated to the value passed. This result in all audit log being fetch
### Reproduction Steps
1) Call audit_logs() with a value for after that is not the oldest entry id
### Minimal Reproducible Code
```python
object_id = discord.Object(id=any_audit_log_id)
async for entry in guild.audit_logs(after=object_id):
pass
```
### Expected Results
Received only the entries after the value after
### Actual Results
Received all entry, even the ones before the value after specifed
### Intents
view_audit_log
### System Information
- Python v3.11.1-final
- py-cord-dev v2.5.None-candidate
- py-cord-dev pkg_resources: v2.5.0rc5
- aiohttp v3.8.5
- system info: Windows 10 10.0.22631
### Checklist
- [X] I have searched the open issues for duplicates.
- [X] I have shown the entire traceback, if possible.
- [X] I have removed my token from display, if visible.
### Additional Context
Here is the inital question in discord help server: [inital question](https://discord.com/channels/881207955029110855/1132206148309749830/1186522479750029393)
Here is the problem in the code that I identified: [problem](https://discord.com/channels/881207955029110855/1132206148309749830/1186537206358229032)
Here is the potential solution: [solution](https://discord.com/channels/881207955029110855/1132206148309749830/1186541811683033168)
| [
{
"content": "\"\"\"\nThe MIT License (MIT)\n\nCopyright (c) 2015-2021 Rapptz\nCopyright (c) 2021-present Pycord Development\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without r... | [
{
"content": "\"\"\"\nThe MIT License (MIT)\n\nCopyright (c) 2015-2021 Rapptz\nCopyright (c) 2021-present Pycord Development\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without r... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6928a6bac4..6ece1cf3d2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -201,6 +201,8 @@ These changes are available on the `master` branch, but have not yet been releas
([#2243](https://github.com/Pycord-Development/pycord/pull/2243))
- Fixed `Intents.all()` returning the wrong value.
([#2257](https://github.com/Pycord-Development/pycord/issues/2257))
+- Fixed `AuditLogIterator` not respecting the `after` parameter.
+ ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))
## [2.4.1] - 2023-03-20
diff --git a/discord/iterators.py b/discord/iterators.py
index b171d70ed6..7507cfd5d8 100644
--- a/discord/iterators.py
+++ b/discord/iterators.py
@@ -430,7 +430,7 @@ def __init__(
self.before = before
self.user_id = user_id
self.action_type = action_type
- self.after = OLDEST_OBJECT
+ self.after = after or OLDEST_OBJECT
self._users = {}
self._state = guild._state
|
scikit-image__scikit-image-1145 | find_contours returns (y,x) instead of (x,y) pairs
The API doc says for the return value "Each contour is an ndarray of shape `(n, 2)`, consisting of n `(x, y)` coordinates along the contour."
A small test case, with input:

```
def testImage():
n = 10
coord = np.ones((n,n))
r = n*0.4
y,x = np.ogrid[-r: r+1, -r: r+1]
mask = x**2+y**2 <= r**2
coord[mask] = -coord[mask]
coord[coord>0] = np.nan
# make it non-symmetric
coord[4,0] = np.nan
r = ~np.isnan(coord)
return np.hstack((r,r))
import skimage.measure
contours = skimage.measure.find_contours(testImage(), 0.99)
print contours
# output:
[array([[ 0., 4.],
[ 1., 5.],
[ 1., 6.],
[ 1., 6.],
[ 2., 7.],
[ 2., 7.],
[ 3., 7.],
[ 4., 8.],
[ 4., 8.],
[ 4., 8.],
[ 5., 7.],
[ 6., 7.],
[ 6., 7.],
[ 7., 6.],
[ 7., 6.],
[ 7., 5.],
[ 8., 4.],
[ 8., 4.],
[ 8., 4.],
[ 7., 3.],
[ 7., 2.],
[ 7., 2.],
[ 6., 1.],
[ 6., 1.],
[ 5., 1.],
[ 4., 1.],
[ 3., 1.],
[ 2., 1.],
[ 2., 1.],
[ 1., 2.],
[ 1., 2.],
[ 1., 3.],
[ 0., 4.]]), array([[ 0., 14.],
[ 1., 15.],
[ 1., 16.],
[ 1., 16.],
[ 2., 17.],
[ 2., 17.],
[ 3., 17.],
[ 4., 18.],
[ 4., 18.],
[ 4., 18.],
[ 5., 17.],
[ 6., 17.],
[ 6., 17.],
[ 7., 16.],
[ 7., 16.],
[ 7., 15.],
[ 8., 14.],
[ 8., 14.],
[ 8., 14.],
[ 7., 13.],
[ 7., 12.],
[ 7., 12.],
[ 6., 11.],
[ 6., 11.],
[ 5., 11.],
[ 4., 11.],
[ 3., 11.],
[ 2., 11.],
[ 2., 11.],
[ 1., 12.],
[ 1., 12.],
[ 1., 13.],
[ 0., 14.]])]
```
You can see clearly that the x-coordinate is actually in the second column and not the first.
Apart from that, why are there consecutive duplicates? Should I open a separate issue for that?
| [
{
"content": "import numpy as np\nfrom . import _find_contours_cy\n\nfrom collections import deque\n\n_param_options = ('high', 'low')\n\n\ndef find_contours(array, level,\n fully_connected='low', positive_orientation='low'):\n \"\"\"Find iso-valued contours in a 2D array for a given level v... | [
{
"content": "import numpy as np\nfrom . import _find_contours_cy\n\nfrom collections import deque\n\n_param_options = ('high', 'low')\n\n\ndef find_contours(array, level,\n fully_connected='low', positive_orientation='low'):\n \"\"\"Find iso-valued contours in a 2D array for a given level v... | diff --git a/skimage/measure/_find_contours.py b/skimage/measure/_find_contours.py
index 0eea912676b..ff53795fce1 100755
--- a/skimage/measure/_find_contours.py
+++ b/skimage/measure/_find_contours.py
@@ -35,7 +35,7 @@ def find_contours(array, level,
-------
contours : list of (n,2)-ndarrays
Each contour is an ndarray of shape ``(n, 2)``,
- consisting of n ``(x, y)`` coordinates along the contour.
+ consisting of n ``(row, column)`` coordinates along the contour.
Notes
-----
|
pallets__werkzeug-1402 | Test Client does not keep Authorization in the request headers when following redirects
Hi,
When sending a POST request with `follow_redirects=True` and with `{Authorization: 'Bearer {}'.format(token)}` added to the headers and the endpoint returns a 303 code; the client follows the redirect, but the authorization header gets dropped on the second request.
More specifically, on `test.py#open()` the second request's environ is missing the `HTTP_AUTHORIZATION` that the first one contains.
The redirect is to a different endpoint on the same domain.
This happens under python 2.7.13 and werkzeug 0.12.2.
I looked for similar issues, the closest one was https://github.com/pallets/werkzeug/issues/26 but it does not mention the handling of 303.
Is this behaviour intended or could it be an oversight? I couldn't see any mention of headers in https://tools.ietf.org/html/rfc7231#section-6.4.4
| [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"\n werkzeug.http\n ~~~~~~~~~~~~~\n\n Werkzeug comes with a bunch of utilities that help Werkzeug to deal with\n HTTP data. Most of the classes and functions provided by this module are\n used by the wrappers, but they are useful on their own, too, esp... | [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"\n werkzeug.http\n ~~~~~~~~~~~~~\n\n Werkzeug comes with a bunch of utilities that help Werkzeug to deal with\n HTTP data. Most of the classes and functions provided by this module are\n used by the wrappers, but they are useful on their own, too, esp... | diff --git a/CHANGES.rst b/CHANGES.rst
index a3753ff79..3d25a164b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -116,6 +116,21 @@ Unreleased
versions of Lighttpd. ``LighttpdCGIRootFix`` was renamed to
``CGIRootFix`` in 0.9. The old name emits a deprecation warning and
will be removed in the next version. (`#1141`_)
+- The test :class:`~test.Client` redirect handling is rewritten.
+ (`#1402`_)
+
+ - The redirect environ is copied from the initial request environ.
+ - Script root and path are correctly distinguished when
+ redirecting to a path under the root.
+ - The HEAD method is not changed to GET.
+ - 307 and 308 codes preserve the method and body. All others
+ ignore the body and related headers.
+ - Headers are passed to the new request for all codes, following
+ what browsers do.
+ - :class:`~test.EnvironBuilder` sets the content type and length
+ headers in addition to the WSGI keys when detecting them from
+ the data.
+
.. _`#209`: https://github.com/pallets/werkzeug/pull/209
.. _`#609`: https://github.com/pallets/werkzeug/pull/609
@@ -164,6 +179,7 @@ Unreleased
.. _`#1393`: https://github.com/pallets/werkzeug/pull/1393
.. _`#1395`: https://github.com/pallets/werkzeug/pull/1395
.. _`#1401`: https://github.com/pallets/werkzeug/pull/1401
+.. _`#1402`: https://github.com/pallets/werkzeug/pull/1402
Version 0.14.1
diff --git a/tests/test_test.py b/tests/test_test.py
index 19f651873..0854f1002 100644
--- a/tests/test_test.py
+++ b/tests/test_test.py
@@ -56,17 +56,6 @@ def redirect_with_get_app(environ, start_response):
return response(environ, start_response)
-def redirect_with_post_app(environ, start_response):
- req = Request(environ)
- if req.url == 'http://localhost/some/redirect/':
- assert req.method == 'GET', 'request should be GET'
- assert not req.form, 'request should not have data'
- response = Response('current url: %s' % req.url)
- else:
- response = redirect('http://localhost/some/redirect/')
- return response(environ, start_response)
-
-
def external_redirect_demo_app(environ, start_response):
response = redirect('http://example.com/')
return response(environ, start_response)
@@ -333,6 +322,22 @@ def test_create_environ_query_string_error():
create_environ('/foo?bar=baz', query_string={'a': 'b'})
+def test_builder_from_environ():
+ environ = create_environ(
+ "/foo",
+ base_url="https://example.com/base",
+ query_string={"name": "Werkzeug"},
+ data={"foo": "bar"},
+ headers={"X-Foo": "bar"}
+ )
+ builder = EnvironBuilder.from_environ(environ)
+ try:
+ new_environ = builder.get_environ()
+ finally:
+ builder.close()
+ assert new_environ == environ
+
+
def test_file_closing():
closed = []
@@ -390,21 +395,35 @@ def local_redirect_app(environ, start_response):
strict_eq(resp.data, b'current path: /to/location')
-def test_follow_redirect_with_post_307():
- def redirect_with_post_307_app(environ, start_response):
- req = Request(environ)
- if req.url == 'http://localhost/some/redirect/':
- assert req.method == 'POST', 'request should be POST'
- assert not req.form, 'request should not have data'
- response = Response('current url: %s' % req.url)
- else:
- response = redirect('http://localhost/some/redirect/', code=307)
- return response(environ, start_response)
+@pytest.mark.parametrize(
+ ("code", "keep"),
+ ((302, False), (301, False), (307, True), (308, True)),
+)
+def test_follow_redirect_body(code, keep):
+ @Request.application
+ def app(request):
+ if request.url == "http://localhost/some/redirect/":
+ assert request.method == "POST" if keep else "GET"
+ assert request.headers["X-Foo"] == "bar"
+
+ if keep:
+ assert request.form["foo"] == "bar"
+ else:
+ assert not request.form
+
+ return Response("current url: %s" % request.url)
+
+ return redirect("http://localhost/some/redirect/", code=code)
- c = Client(redirect_with_post_307_app, response_wrapper=BaseResponse)
- resp = c.post('/', follow_redirects=True, data='foo=blub+hehe&blah=42')
- assert resp.status_code == 200
- assert resp.data == b'current url: http://localhost/some/redirect/'
+ c = Client(app, response_wrapper=BaseResponse)
+ response = c.post(
+ "/",
+ follow_redirects=True,
+ data={"foo": "bar"},
+ headers={"X-Foo": "bar"},
+ )
+ assert response.status_code == 200
+ assert response.data == b"current url: http://localhost/some/redirect/"
def test_follow_external_redirect():
@@ -436,11 +455,17 @@ def test_follow_redirect_loop():
c.get('/', follow_redirects=True)
-def test_follow_redirect_with_post():
- c = Client(redirect_with_post_app, response_wrapper=BaseResponse)
- resp = c.post('/', follow_redirects=True, data='foo=blub+hehe&blah=42')
- strict_eq(resp.status_code, 200)
- strict_eq(resp.data, b'current url: http://localhost/some/redirect/')
+def test_follow_redirect_non_root_base_url():
+ @Request.application
+ def app(request):
+ if request.path == "/redirect":
+ return redirect("done")
+
+ return Response(request.path)
+
+ c = Client(app, response_wrapper=Response)
+ response = c.get("/redirect", base_url="http://localhost/other", follow_redirects=True)
+ assert response.data == b"/done"
def test_path_info_script_name_unquoting():
diff --git a/werkzeug/http.py b/werkzeug/http.py
index 2e3adff6d..0e96d6b60 100644
--- a/werkzeug/http.py
+++ b/werkzeug/http.py
@@ -121,6 +121,7 @@
304: 'Not Modified',
305: 'Use Proxy',
307: 'Temporary Redirect',
+ 308: 'Permanent Redirect',
400: 'Bad Request',
401: 'Unauthorized',
402: 'Payment Required', # unused
diff --git a/werkzeug/test.py b/werkzeug/test.py
index 1e1301139..b5a93b73b 100644
--- a/werkzeug/test.py
+++ b/werkzeug/test.py
@@ -32,10 +32,17 @@
from werkzeug.wrappers import BaseRequest
from werkzeug.urls import url_encode, url_fix, iri_to_uri, url_unquote, \
url_unparse, url_parse
-from werkzeug.wsgi import get_host, get_current_url, ClosingIterator
+from werkzeug.wsgi import get_current_url, ClosingIterator
from werkzeug.utils import dump_cookie, get_content_type
-from werkzeug.datastructures import FileMultiDict, MultiDict, \
- CombinedMultiDict, Headers, FileStorage, CallbackDict
+from werkzeug.datastructures import (
+ FileMultiDict,
+ MultiDict,
+ CombinedMultiDict,
+ Headers,
+ FileStorage,
+ CallbackDict,
+ EnvironHeaders,
+)
from werkzeug.http import dump_options_header, parse_options_header
@@ -355,6 +362,35 @@ def __init__(self, path='/', base_url=None, query_string=None,
if mimetype is not None:
self.mimetype = mimetype
+ @classmethod
+ def from_environ(cls, environ, **kwargs):
+ """Turn an environ dict back into a builder. Any extra kwargs
+ override the args extracted from the environ.
+
+ .. versionadded:: 0.15
+ """
+ headers = Headers(EnvironHeaders(environ))
+ out = {
+ "path": environ["PATH_INFO"],
+ "base_url": cls._make_base_url(
+ environ["wsgi.url_scheme"],
+ headers.pop("Host"),
+ environ["SCRIPT_NAME"],
+ ),
+ "query_string": environ["QUERY_STRING"],
+ "method": environ["REQUEST_METHOD"],
+ "input_stream": environ["wsgi.input"],
+ "content_type": headers.pop("Content-Type", None),
+ "content_length": headers.pop("Content-Length", None),
+ "errors_stream": environ["wsgi.errors"],
+ "multithread": environ["wsgi.multithread"],
+ "multiprocess": environ["wsgi.multiprocess"],
+ "run_once": environ["wsgi.run_once"],
+ "headers": headers,
+ }
+ out.update(kwargs)
+ return cls(**out)
+
def _add_file_from_data(self, key, value):
"""Called in the EnvironBuilder to add files from the data dict."""
if isinstance(value, tuple):
@@ -372,11 +408,19 @@ def _add_file_from_data(self, key, value):
else:
self.files.add_file(key, value)
- def _get_base_url(self):
- return url_unparse((self.url_scheme, self.host,
- self.script_root, '', '')).rstrip('/') + '/'
+ @staticmethod
+ def _make_base_url(scheme, host, script_root):
+ return url_unparse((scheme, host, script_root, "", "")).rstrip("/") + "/"
+
+ @property
+ def base_url(self):
+ """The base URL is used to extract the URL scheme, host name,
+ port, and root path.
+ """
+ return self._make_base_url(self.url_scheme, self.host, self.script_root)
- def _set_base_url(self, value):
+ @base_url.setter
+ def base_url(self, value):
if value is None:
scheme = 'http'
netloc = 'localhost'
@@ -390,12 +434,6 @@ def _set_base_url(self, value):
self.host = netloc
self.url_scheme = scheme
- base_url = property(_get_base_url, _set_base_url, doc='''
- The base URL is a URL that is used to extract the WSGI
- URL scheme, host (server name + server port) and the
- script root (`SCRIPT_NAME`).''')
- del _get_base_url, _set_base_url
-
def _get_content_type(self):
ct = self.headers.get('Content-Type')
if ct is None and not self._input_stream:
@@ -571,7 +609,13 @@ def close(self):
self.closed = True
def get_environ(self):
- """Return the built environ."""
+ """Return the built environ.
+
+ .. versionchanged:: 0.15
+ The content type and length headers are set based on
+ input stream detection. Previously this only set the WSGI
+ keys.
+ """
input_stream = self.input_stream
content_length = self.content_length
@@ -624,15 +668,23 @@ def _path_encode(x):
'wsgi.multiprocess': self.multiprocess,
'wsgi.run_once': self.run_once
})
+
+ headers = self.headers.copy()
+
if content_type is not None:
result['CONTENT_TYPE'] = content_type
+ headers.set("Content-Type", content_type)
+
if content_length is not None:
result['CONTENT_LENGTH'] = str(content_length)
+ headers.set("Content-Length", content_length)
- for key, value in self.headers.to_wsgi_list():
+ for key, value in headers.to_wsgi_list():
result['HTTP_%s' % key.upper().replace('-', '_')] = value
+
if self.environ_overrides:
result.update(self.environ_overrides)
+
return result
def get_request(self, cls=None):
@@ -724,43 +776,65 @@ def run_wsgi_app(self, environ, buffered=False):
return rv
def resolve_redirect(self, response, new_location, environ, buffered=False):
- """Resolves a single redirect and triggers the request again
- directly on this redirect client.
+ """Perform a new request to the location given by the redirect
+ response to the previous request.
"""
- scheme, netloc, script_root, qs, anchor = url_parse(new_location)
- base_url = url_unparse((scheme, netloc, '', '', '')).rstrip('/') + '/'
-
- cur_server_name = netloc.split(':', 1)[0].split('.')
- real_server_name = get_host(environ).rsplit(':', 1)[0].split('.')
- if cur_server_name == ['']:
- # this is a local redirect having autocorrect_location_header=False
- cur_server_name = real_server_name
- base_url = EnvironBuilder(environ).base_url
-
- if self.allow_subdomain_redirects:
- allowed = cur_server_name[-len(real_server_name):] == real_server_name
+ scheme, netloc, path, qs, anchor = url_parse(new_location)
+ builder = EnvironBuilder.from_environ(environ, query_string=qs)
+
+ to_name_parts = netloc.split(':', 1)[0].split(".")
+ from_name_parts = builder.server_name.split(".")
+
+ if to_name_parts != [""]:
+ # The new location has a host, use it for the base URL.
+ builder.url_scheme = scheme
+ builder.host = netloc
else:
- allowed = cur_server_name == real_server_name
+ # A local redirect with autocorrect_location_header=False
+ # doesn't have a host, so use the request's host.
+ to_name_parts = from_name_parts
+
+ # Explain why a redirect to a different server name won't be followed.
+ if to_name_parts != from_name_parts:
+ if to_name_parts[-len(from_name_parts):] == from_name_parts:
+ if not self.allow_subdomain_redirects:
+ raise RuntimeError("Following subdomain redirects is not enabled.")
+ else:
+ raise RuntimeError("Following external redirects is not supported.")
- if not allowed:
- raise RuntimeError('%r does not support redirect to '
- 'external targets' % self.__class__)
+ path_parts = path.split("/")
+ root_parts = builder.script_root.split("/")
- status_code = int(response[1].split(None, 1)[0])
- if status_code == 307:
- method = environ['REQUEST_METHOD']
+ if path_parts[:len(root_parts)] == root_parts:
+ # Strip the script root from the path.
+ builder.path = path[len(builder.script_root):]
else:
- method = 'GET'
+ # The new location is not under the script root, so use the
+ # whole path and clear the previous root.
+ builder.path = path
+ builder.script_root = ""
- # For redirect handling we temporarily disable the response
- # wrapper. This is not threadsafe but not a real concern
- # since the test client must not be shared anyways.
+ status_code = int(response[1].split(None, 1)[0])
+
+ # Only 307 and 308 preserve all of the original request.
+ if status_code not in {307, 308}:
+ # HEAD is preserved, everything else becomes GET.
+ if builder.method != "HEAD":
+ builder.method = "GET"
+
+ # Clear the body and the headers that describe it.
+ builder.input_stream = None
+ builder.content_type = None
+ builder.content_length = None
+ builder.headers.pop("Transfer-Encoding", None)
+
+ # Disable the response wrapper while handling redirects. Not
+ # thread safe, but the client should not be shared anyway.
old_response_wrapper = self.response_wrapper
self.response_wrapper = None
+
try:
- return self.open(path=script_root, base_url=base_url,
- query_string=qs, as_tuple=True,
- buffered=buffered, method=method)
+ return self.open(builder, as_tuple=True, buffered=buffered)
finally:
self.response_wrapper = old_response_wrapper
@@ -811,8 +885,10 @@ def open(self, *args, **kwargs):
redirect_chain = []
while 1:
status_code = int(response[1].split(None, 1)[0])
- if status_code not in (301, 302, 303, 305, 307) \
- or not follow_redirects:
+ if (
+ status_code not in {301, 302, 303, 305, 307, 308}
+ or not follow_redirects
+ ):
break
new_location = response[2]['location']
new_redirect_entry = (new_location, status_code)
|
biopython__biopython-877 | Enforce basic PEP8 style with TravisCI
See also #493 for using a git pre-commit hook.
I would like to have the git pre-commit hook be quite strict, requiring explicit by-passing with `--no-verify` on a case by case basis, while the TravisCI check should be less onerous but mandatory. Right now something like this in `.travis.yml` could work:
```
- pip install pep8
- pep8 --ignore E123,E126,E128,E501 BioSQL/
- pep8 --ignore E123,E126,E127,E128,E402,E501 Scripts/
- pep8 --ignore E127,E128,E501 Doc/examples/
- pep8 --ignore E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E201,E202,E231,E241,E302,E402,E501,E731,W291,W293,W391,W503 Bio/
```
I have no particular preference over using the command line tool `pep8` versus `flake8` or anything else - whatever is quickest would be practical if they check the same things.
Medium term I'd like us to work towards removing as many of these PEP8 violations as possible and make the TravisCI checking stricter over time.
This adds about 20 to 25s to the TravisCI run, but only really needs to be done once rather than for every version of Python (possibly twice for Python 2 and Python 3?). An alternative might by combining TravisCI with Tox along the lines used in https://github.com/galaxyproject/planemo/blob/master/.travis.yml and https://github.com/galaxyproject/planemo/blob/master/tox.ini
| [
{
"content": "# Copyright (C) 2002, Thomas Hamelryck (thamelry@binf.ku.dk)\n# This code is part of the Biopython distribution and governed by its\n# license. Please see the LICENSE file that should have been included\n# as part of this package.\n\n\"\"\"Use the DSSP program to calculate secondary structure and... | [
{
"content": "# Copyright (C) 2002, Thomas Hamelryck (thamelry@binf.ku.dk)\n# This code is part of the Biopython distribution and governed by its\n# license. Please see the LICENSE file that should have been included\n# as part of this package.\n\n\"\"\"Use the DSSP program to calculate secondary structure and... | diff --git a/.travis-tox.ini b/.travis-tox.ini
new file mode 100644
index 00000000000..0aa225d4ee9
--- /dev/null
+++ b/.travis-tox.ini
@@ -0,0 +1,103 @@
+# This is a configuration file for tox, used to test
+# Biopython on various versions of Python etc under
+# the Travis Continous Integration service which is
+# configured in the file .travis.yml
+#
+# By default tox will look for tox.ini, so this file
+# will not conflict with any personal tox setup.
+#
+# You can explicitly use this tox configuration on your
+# own machine (via the -c setting), PROVIDED you have
+# all the relevant versions of Python installed. e.g.
+# specifying a specific target envronment (via -e):
+#
+# $ pip install tox
+# $ tox -c .travis-tox.ini -e py35-nocov
+#
+# Or with test coverage:
+#
+# $ pip install tox coverage
+# $ tox -c .travis-tox.ini -e py35-cover
+#
+# Or to run the pep8 Python coding style checks:
+#
+# $ pip install tox pep8
+# $ tox -c .travis-tox.ini -e pep8
+#
+# See the envlist setting for other valid arguments.
+
+[tox]
+minversion = 2.0
+skipsdist = True
+envlist =
+ pep8
+ sdist
+ bdist_wheel
+ {py26,py27,py33,py34,py35,pypy,pypy3}-cover
+ {py26,py27,py33,py34,py35,pypy,pypy3}-nocov
+
+[testenv]
+# TODO: Try tox default sdist based install instead:
+skip_install = True
+sitepackages = True
+whitelist_externals =
+ bash
+ echo
+# Want to avoid overhead of compiling numpy or scipy:
+install_command = pip install --only-binary=numpy,scipy {opts} {packages}
+deps =
+ #Lines startings xxx: are filtered by the environment.
+ #Leaving py34 without any soft dependencies (just numpy)
+ cover: coverage
+ cover: codecov
+ py26: unittest2
+ {py26,py27}: mysql-python
+ {py26,py27,py33,py35}: mmtf-python
+ {py26,py27,py33,py35}: reportlab
+ {py26,py27,py33,py35}: psycopg2
+ {py26,py27,py33,py35,pypy}: mysql-connector-python-rf
+ {py26,py27,py33,py35,pypy}: rdflib
+ {py26,py27,py33,py34,py35}: numpy
+ {py26,py35}: scipy
+ py27: networkx
+ py35: matplotlib
+commands =
+ #The bash call is a work around for the pipe character
+ #The yes is in case we get our prompt about missing NumPy
+ #The /dev/null is to hide the verbose output but leave warnings
+ bash -c \'/usr/bin/yes | python setup.py install > /dev/null\'
+ #The bash call is a work around for the cd command
+ nocov: bash -c \'cd Tests && python run_tests.py --offline\'
+ #See https://codecov.io/ and https://github.com/codecov/example-python
+ cover: bash -c \'cd Tests && coverage run --source=Bio,BioSQL run_tests.py --offline\'
+ cover: codecov
+
+[testenv:pep8]
+# This does not need to install Biopython or any of its dependencies
+skip_install = True
+whitelist_externals =
+ pep8
+deps =
+ pep8
+commands =
+ pep8 --max-line-length 92 BioSQL/
+ pep8 --ignore E402 --max-line-length 90 Scripts/
+ pep8 --max-line-length 90 Doc/examples/
+ pep8 --ignore E122,E123,E126,E127,E128,E129,E501,E731 Bio/
+ pep8 --ignore E122,E123,E126,E127,E128,E241,E402,E501,E731 Tests/
+
+[testenv:sdist]
+# This does not need to install Biopython or any of its dependencies
+skip_install = True
+deps =
+commands =
+ python setup.py sdist --manifest-only
+ python setup.py sdist --formats=gztar,zip
+
+[testenv:bdist_wheel]
+# This should use NumPy while compiling our C code...
+skip_install = True
+deps =
+ numpy
+commands =
+ python setup.py bdist_wheel
diff --git a/.travis.yml b/.travis.yml
index ab754028a98..b6373701acf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,39 +1,35 @@
# Special configuration file to run tests on Travis-CI via GitHub notifications
# See https://travis-ci.org/biopython/biopython/builds for results
#
-# The tests are run via the coverage script, and if the tests pass the coverage
-# information is pushed to https://codecov.io/github/biopython/biopython
+# Using TravisCI's configuration alone became too complicated once we wanted
+# to cover more than just running the unit tests on different versions of
+# Python, so this now does all the complicated test configuration via TOX
+# See file .travis-tox.ini
#
-# Note when testing Python 3, the 'python' command will invoke Python 3
-# and similarly for PyPy too.
-
-# Environment variables setup via the matrix
-# - DEP = list of python packages to install via default pip install
-# - COV = yes/no; should tests be run with coverage metric collection
-# - OPT = options to run_tests.py such as --offline
+# Environment variables setup here:
+# - TOXENV = environment used in Tox (conventionally uses py35 etc)
#
-# Note we're explicitly allowing the online test targets to fail without
-# considering the whole test run to be a failure.
language: python
matrix:
include:
- - python: "2.6"
- env: DEP="mmtf-python rdflib reportlab psycopg2 mysql-python mysql-connector-python-rf unittest2 scipy" COV="yes" OPT="--offline"
- - python: "2.7"
- env: DEP="mmtf-python rdflib reportlab psycopg2 mysql-python mysql-connector-python-rf networkx" COV="yes" OPT="--offline"
- - python: "3.3"
- env: DEP="mmtf-python psycopg2 mysql-connector-python-rf" COV="yes" OPT=""
- - python: "3.4"
- env: DEP="" COV="yes" OPT="--offline"
- - python: "3.5"
- env: DEP="mmtf-python rdflib reportlab psycopg2 mysql-connector-python-rf scipy matplotlib" COV="yes" OPT="--offline"
- - python: "pypy"
- env: DEP="rdflib mysql-connector-python-rf" COV="yes" OPT="--offline"
- - python: "pypy3"
- env: COV="no" OPT="--offline"
- allow_failures:
- - python: "3.3"
+ - env: TOXENV=pep8
+ - env: TOXENV=sdist
+ - env: TOXENV=bdist_wheel
+ - python: 2.6
+ env: TOXENV=py26-cover
+ - python: 2.7
+ env: TOXENV=py27-cover
+ - python: 3.3
+ env: TOXENV=py33-cover
+ - python: 3.4
+ env: TOXENV=py34-cover
+ - python: 3.5
+ env: TOXENV=py35-cover
+ - python: pypy
+ env: TOXENV=pypy-cover
+ - python: pypy3
+ env: TOXENV=pypy3-nocov
sudo: false
addons:
@@ -49,30 +45,14 @@ addons:
- samtools
- wise
-before_install:
- - "pip install --upgrade pip setuptools"
- - "pip install --only-binary=numpy,scipy $DEP"
- - "if [[ $COV == 'yes' ]]; then pip install coverage; fi"
-
-
install:
-#The yes is in case we get our prompt about missing NumPy
- - "/usr/bin/yes | python setup.py install"
-
-before_script:
- - cd Tests
- - cp biosql.ini.sample biosql.ini
+ - "cp Tests/biosql.ini.sample Tests/biosql.ini"
+ - "pip install --upgrade pip setuptools"
+ - "pip install tox"
+ - "tox -c .travis-tox.ini -e $TOXENV --notest"
script:
-#Using just coverage should match up to the current Python version:
- - "if [[ $COV == 'yes' ]]; then coverage run --source=Bio,BioSQL run_tests.py $OPT; fi"
- - "if [[ $COV != 'yes' ]]; then python run_tests.py $OPT; fi"
-
-after_success:
-#See https://codecov.io/ and https://github.com/codecov/example-python
- - "if [[ $COV == 'yes' ]]; then pip install codecov; fi"
- - "if [[ $COV == 'yes' ]]; then codecov; fi"
+ - "tox -c .travis-tox.ini -e $TOXENV"
-#The email defaults are too talkative
notifications:
email: false
diff --git a/Bio/PDB/DSSP.py b/Bio/PDB/DSSP.py
index 2ff1e59af47..8fcc3da2e56 100644
--- a/Bio/PDB/DSSP.py
+++ b/Bio/PDB/DSSP.py
@@ -285,7 +285,7 @@ def __init__(self, model, pdb_file, dssp="dssp", acc_array="Sander"):
"""
self.residue_max_acc = residue_max_acc[acc_array]
-
+
# create DSSP dictionary
dssp_dict, dssp_keys = dssp_dict_from_pdb_file(pdb_file, dssp)
dssp_map = {}
|
biopython__biopython-4683 | two test failures affecting Bio.SeqIO.SeqXmlIO in Debian sid
Greetings,
This issue may not be an easy one, and even risks being Debian
specific, so if you are busy somewhere else, then I won't mind.
:)
I'm having great difficulties pinpointing a change between
Debian testing and sid which is causing [Debian bug #1064147],
affecting both Biopython 1.81 and 1.83 in sid, but none of them
in testing (as of today). The error output comes from the test
suite, and gives in Debian sid:
======================================================================
ERROR: test_embl7 (test_SeqIO.TestSeqIO.test_embl7)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 3406, in test_embl7
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
======================================================================
ERROR: test_genbank8 (test_SeqIO.TestSeqIO.test_genbank8)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 2803, in test_genbank8
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
Version comparison of Biopython direct dependencies suggest they
are not involved in the test regression I observe:
* python3-numpy version in sid: 1:1.24.2-2
* python3-numpy version in testing: 1:1.24.2-2
* python3 version in sid: 3.11.6-1
* python3 version in testing: 3.11.6-1
* libc6 version in sid: 2.37-15
* libc6 version in testing: 2.37-15
* python3-reportlab version in sid: 4.1.0-1
* python3-reportlab version in testing: 4.1.0-1
* w3c-sgml-lib version in sid: 1.3-3
* w3c-sgml-lib version in testing: 1.3-3
This means that the issue is caused by a transitive dependency
(which I have not managed to identify yet), or something else
entirely. I also reproduced the problem on [Debian Salsa CI],
which strongly hints that I haven't mishandled my build
environment. Besides, if one of the direct dependencies had
triggered the bug, then I would have expected the test run
triggered by the [package migration CI] to have tripped, which
has not happened (which hints that the situation did not appear
before 2024 February 3rd in sid).
I wouldn't be surprised to learn that this isn't be a problem in
Biopython per se, but I'm running out of options without your
thoughts upstream (maybe the combination of these two particular
tests failing and the others passing hints to something in
particular?). Do you per chance have an idea of what I am
missing that could cause the SeqXmlIO records to be empty and
cause these test failures?
Thank you for your time,
Étienne.
PS: here below, the mandatory form for your convenience:
### Setup
I am reporting a problem with Biopython version, Python version,
and operating system as follows. In Debian sid:
>>> import sys; print(sys.version)
3.11.8 (main, Feb 7 2024, 21:52:08) [GCC 13.2.0]
>>> import platform; print(platform.python_implementation()); print(platform.platform())
CPython
Linux-6.6.15-amd64-x86_64-with-glibc2.37
>>> import Bio; print(Bio.__version__)
1.83
In Debian testing (no changes visibly):
>>> import sys; print(sys.version)
3.11.8 (main, Feb 7 2024, 21:52:08) [GCC 13.2.0]
>>> import platform; print(platform.python_implementation()); print(platform.platform())
CPython
Linux-6.6.15-amd64-x86_64-with-glibc2.37
>>> import Bio; print(Bio.__version__)
1.83
This is also valid with Biopython 1.81.
### Expected behaviour
I would like to make all test items of the test suite pass on
Debian sid.
### Actual behaviour
All test items pass on Debian testing. However on Debian sid, I
observe the following test items failing:
======================================================================
ERROR: test_embl7 (test_SeqIO.TestSeqIO.test_embl7)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 3406, in test_embl7
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
======================================================================
ERROR: test_genbank8 (test_SeqIO.TestSeqIO.test_genbank8)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 2803, in test_genbank8
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
### Steps to reproduce
Run the test suite.
[Debian bug #1064147]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064147
[Debian Salsa CI]: https://salsa.debian.org/med-team/python-biopython/-/jobs/5314383
[package migration CI]: https://ci.debian.net/packages/p/python-biopython/unstable/amd64/
two test failures affecting Bio.SeqIO.SeqXmlIO in Debian sid
Greetings,
This issue may not be an easy one, and even risks being Debian
specific, so if you are busy somewhere else, then I won't mind.
:)
I'm having great difficulties pinpointing a change between
Debian testing and sid which is causing [Debian bug #1064147],
affecting both Biopython 1.81 and 1.83 in sid, but none of them
in testing (as of today). The error output comes from the test
suite, and gives in Debian sid:
======================================================================
ERROR: test_embl7 (test_SeqIO.TestSeqIO.test_embl7)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 3406, in test_embl7
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
======================================================================
ERROR: test_genbank8 (test_SeqIO.TestSeqIO.test_genbank8)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 2803, in test_genbank8
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
Version comparison of Biopython direct dependencies suggest they
are not involved in the test regression I observe:
* python3-numpy version in sid: 1:1.24.2-2
* python3-numpy version in testing: 1:1.24.2-2
* python3 version in sid: 3.11.6-1
* python3 version in testing: 3.11.6-1
* libc6 version in sid: 2.37-15
* libc6 version in testing: 2.37-15
* python3-reportlab version in sid: 4.1.0-1
* python3-reportlab version in testing: 4.1.0-1
* w3c-sgml-lib version in sid: 1.3-3
* w3c-sgml-lib version in testing: 1.3-3
This means that the issue is caused by a transitive dependency
(which I have not managed to identify yet), or something else
entirely. I also reproduced the problem on [Debian Salsa CI],
which strongly hints that I haven't mishandled my build
environment. Besides, if one of the direct dependencies had
triggered the bug, then I would have expected the test run
triggered by the [package migration CI] to have tripped, which
has not happened (which hints that the situation did not appear
before 2024 February 3rd in sid).
I wouldn't be surprised to learn that this isn't be a problem in
Biopython per se, but I'm running out of options without your
thoughts upstream (maybe the combination of these two particular
tests failing and the others passing hints to something in
particular?). Do you per chance have an idea of what I am
missing that could cause the SeqXmlIO records to be empty and
cause these test failures?
Thank you for your time,
Étienne.
PS: here below, the mandatory form for your convenience:
### Setup
I am reporting a problem with Biopython version, Python version,
and operating system as follows. In Debian sid:
>>> import sys; print(sys.version)
3.11.8 (main, Feb 7 2024, 21:52:08) [GCC 13.2.0]
>>> import platform; print(platform.python_implementation()); print(platform.platform())
CPython
Linux-6.6.15-amd64-x86_64-with-glibc2.37
>>> import Bio; print(Bio.__version__)
1.83
In Debian testing (no changes visibly):
>>> import sys; print(sys.version)
3.11.8 (main, Feb 7 2024, 21:52:08) [GCC 13.2.0]
>>> import platform; print(platform.python_implementation()); print(platform.platform())
CPython
Linux-6.6.15-amd64-x86_64-with-glibc2.37
>>> import Bio; print(Bio.__version__)
1.83
This is also valid with Biopython 1.81.
### Expected behaviour
I would like to make all test items of the test suite pass on
Debian sid.
### Actual behaviour
All test items pass on Debian testing. However on Debian sid, I
observe the following test items failing:
======================================================================
ERROR: test_embl7 (test_SeqIO.TestSeqIO.test_embl7)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 3406, in test_embl7
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
======================================================================
ERROR: test_genbank8 (test_SeqIO.TestSeqIO.test_genbank8)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 2803, in test_genbank8
self.perform_test(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 625, in perform_test
self.check_simple_write_read(
File "/tmp/autopkgtest.OslsYr/autopkgtest_tmp/Tests/test_SeqIO.py", line 362, in check_simple_write_read
records2 = list(SeqIO.parse(handle=handle, format=fmt))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/Interfaces.py", line 85, in __next__
return next(self.records)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 482, in iterate
parser.close()
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 240, in close
self.feed(b"", isFinal=True)
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
File "../Modules/pyexpat.c", line 416, in StartElement
File "/usr/lib/python3.11/xml/sax/expatreader.py", line 369, in start_element_ns
self._cont_handler.startElementNS(pair, None,
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 184, in startEntryFieldElement
return self.startPropertyElement(attrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/Bio/SeqIO/SeqXmlIO.py", line 374, in startPropertyElement
record = self.records[-1]
~~~~~~~~~~~~^^^^
IndexError: list index out of range
### Steps to reproduce
Run the test suite.
[Debian bug #1064147]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064147
[Debian Salsa CI]: https://salsa.debian.org/med-team/python-biopython/-/jobs/5314383
[package migration CI]: https://ci.debian.net/packages/p/python-biopython/unstable/amd64/
| [
{
"content": "# Copyright 2010 by Thomas Schmitt.\n#\n# This file is part of the Biopython distribution and governed by your\n# choice of the \"Biopython License Agreement\" or the \"BSD 3-Clause License\".\n# Please see the LICENSE file that should have been included as part of this\n# package.\n\"\"\"Bio.SeqI... | [
{
"content": "# Copyright 2010 by Thomas Schmitt.\n#\n# This file is part of the Biopython distribution and governed by your\n# choice of the \"Biopython License Agreement\" or the \"BSD 3-Clause License\".\n# Please see the LICENSE file that should have been included as part of this\n# package.\n\"\"\"Bio.SeqI... | diff --git a/Bio/SeqIO/SeqXmlIO.py b/Bio/SeqIO/SeqXmlIO.py
index 4b95491c4c8..8fe75ebb728 100644
--- a/Bio/SeqIO/SeqXmlIO.py
+++ b/Bio/SeqIO/SeqXmlIO.py
@@ -441,7 +441,8 @@ class SeqXmlIterator(SequenceIterator):
method calls.
"""
- BLOCK = 1024
+ # Small block size can be a problem with libexpat 2.6.0 onwards:
+ BLOCK = 4096
def __init__(self, stream_or_path, namespace=None):
"""Create the object and initialize the XML parser."""
|
aio-libs__aiohttp-4415 | Task was destroyed but it's pending
On master, I see outputs from `run_app()` like follows:
```
======== Running on http://0.0.0.0:8080 ========
(Press CTRL+C to quit)
Task was destroyed but it is pending!
task: <Task pending name='Task-4' coro=<RequestHandler.start() done, defined at /home/andrew/.virtualenvs/multidict/lib/python3.8/site-packages/aiohttp/web_protocol.py:437> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8822ffef10>()]>>
```
I suspect it happens on errors and keepalive closing in `web_protocol.py`.
The message should go.
| [
{
"content": "import asyncio\nimport asyncio.streams\nimport traceback\nfrom collections import deque\nfrom contextlib import suppress\nfrom html import escape as html_escape\nfrom http import HTTPStatus\nfrom logging import Logger\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Awaitable,\n Callabl... | [
{
"content": "import asyncio\nimport asyncio.streams\nimport traceback\nfrom collections import deque\nfrom contextlib import suppress\nfrom html import escape as html_escape\nfrom http import HTTPStatus\nfrom logging import Logger\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Awaitable,\n Callabl... | diff --git a/CHANGES/4408.bugfix b/CHANGES/4408.bugfix
new file mode 100644
index 00000000000..9185aaab042
--- /dev/null
+++ b/CHANGES/4408.bugfix
@@ -0,0 +1 @@
+Fix a warning about unfinished task in `web_protocol.py`
diff --git a/aiohttp/web_protocol.py b/aiohttp/web_protocol.py
index 30e9c387e2a..2b7eef5757e 100644
--- a/aiohttp/web_protocol.py
+++ b/aiohttp/web_protocol.py
@@ -277,6 +277,10 @@ def connection_lost(self, exc: Optional[BaseException]) -> None:
if self._error_handler is not None:
self._error_handler.cancel()
+ if self._task_handler is not None:
+ self._task_handler.cancel()
+ if self._waiter is not None:
+ self._waiter.cancel()
self._task_handler = None
diff --git a/tests/test_web_protocol.py b/tests/test_web_protocol.py
index 84d0f493378..4405f192c1c 100644
--- a/tests/test_web_protocol.py
+++ b/tests/test_web_protocol.py
@@ -821,7 +821,7 @@ async def disconn():
writer.write(b"x")
writer.close()
await asyncio.sleep(0.1)
- logger.debug.assert_called_with('Ignored premature client disconnection.')
+ logger.debug.assert_called_with('Ignored premature client disconnection')
assert disconnected_notified
|
AUTOMATIC1111__stable-diffusion-webui-12387 | [Bug]: Lora cannot be loaded in API mode
### Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
### What happened?
when I run webui --api to start a simple api only server, and I post a http request ,it show
**Skipping unknown extra network: lora**
100%|████████████████████████████████████████████████████████████████████████████████████████████| 40/40 [00:11<00:00, 3.39it/s]
INFO: 127.0.0.1:38420 - "POST /sdapi/v1/txt2img HTTP/1.1" 200 OK
INFO: 127.0.0.1:38647 - "POST /sdapi/v1/png-info HTTP/1.1" 200 OK
And I check the web.py, It seems that lora is not registered,for some reason I can't access the web page, so I don't konw if lora works
### Steps to reproduce the problem
1. download release package
2. download diffusion and lora checkpoint file
3. run webui.sh to prepare env
4. exec ./webui.sh --nowebapi
5. and it occurs
### What should have happened?
**Skipping unknown extra network: lora** shouldn't happen
### Commit where the problem happens
release v1.0.0-pre
### What platforms do you use to access the UI ?
_No response_
### What browsers do you use to access the UI ?
_No response_
### Command Line Arguments
```Shell
./webui.sh --nowebui
```
### List of extensions
No
### Console logs
```Shell
Skipping unknown extra network: lora
100%|████████████████████████████████████████████████████████████████████████████████████████████| 40/40 [00:10<00:00, 3.68it/s]
INFO: 127.0.0.1:39473 - "POST /sdapi/v1/txt2img HTTP/1.1" 200 OK
INFO: 127.0.0.1:39758 - "POST /sdapi/v1/png-info HTTP/1.1" 200 OK
```
### Additional information
_No response_
| [
{
"content": "from __future__ import annotations\r\n\r\nimport os\r\nimport sys\r\nimport time\r\nimport importlib\r\nimport signal\r\nimport re\r\nimport warnings\r\nimport json\r\nfrom threading import Thread\r\nfrom typing import Iterable\r\n\r\nfrom fastapi import FastAPI\r\nfrom fastapi.middleware.cors imp... | [
{
"content": "from __future__ import annotations\r\n\r\nimport os\r\nimport sys\r\nimport time\r\nimport importlib\r\nimport signal\r\nimport re\r\nimport warnings\r\nimport json\r\nfrom threading import Thread\r\nfrom typing import Iterable\r\n\r\nfrom fastapi import FastAPI\r\nfrom fastapi.middleware.cors imp... | diff --git a/webui.py b/webui.py
index a5b115759af..86a62a920ae 100644
--- a/webui.py
+++ b/webui.py
@@ -341,6 +341,7 @@ def api_only():
setup_middleware(app)
api = create_api(app)
+ modules.script_callbacks.before_ui_callback()
modules.script_callbacks.app_started_callback(None, app)
print(f"Startup time: {startup_timer.summary()}.")
|
ansible-collections__amazon.aws-337 | ec2_eni idempotence bug
<!--- Verify first that your issue is not already reported on GitHub -->
<!--- Also test if the latest release and devel branch are affected too -->
<!--- Complete *all* sections as described, this form is processed automatically -->
##### SUMMARY
The encoding of groups causes a bytes type does not equal a string type so idempotence fails. This is the line at fault I belive: https://github.com/ansible-collections/amazon.aws/blame/ac6b2cd478773befdde43bfadc0de40969ad4d0b/plugins/modules/ec2_eni.py#L772
##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
ec2_eni
##### ANSIBLE VERSION
<!--- Paste verbatim output from "ansible --version" between quotes -->
```paste below
ansible 2.10.5
python version = 3.9.1 (default, Jan 8 2021, 17:17:17) [Clang 12.0.0 (clang-1200.0.32.28)]
```
##### STEPS TO REPRODUCE
Pass security group names to the ec2_eni module & it will always report a change.
##### EXPECTED RESULTS
It should not report a change.
| [
{
"content": "#!/usr/bin/python\n#\n# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)\n\nfrom __future__ import absolute_import, division, print_function\n__metaclass__ = type\n\n\nDOCUMENTATION = '''\n---\nmodule: ec2_eni\nversion_added: 1.0.0\nshort_description: Crea... | [
{
"content": "#!/usr/bin/python\n#\n# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)\n\nfrom __future__ import absolute_import, division, print_function\n__metaclass__ = type\n\n\nDOCUMENTATION = '''\n---\nmodule: ec2_eni\nversion_added: 1.0.0\nshort_description: Crea... | diff --git a/changelogs/fragments/337-ec2_eni-fix-idempotency-security-groups.yml b/changelogs/fragments/337-ec2_eni-fix-idempotency-security-groups.yml
new file mode 100644
index 00000000000..0a04d1de173
--- /dev/null
+++ b/changelogs/fragments/337-ec2_eni-fix-idempotency-security-groups.yml
@@ -0,0 +1,3 @@
+---
+minor_changes:
+- ec2_eni - fix idempotency when ``security_groups`` attribute is specified (https://github.com/ansible-collections/amazon.aws/pull/337).
diff --git a/plugins/modules/ec2_eni.py b/plugins/modules/ec2_eni.py
index 01a81f991d9..d9a82a73934 100644
--- a/plugins/modules/ec2_eni.py
+++ b/plugins/modules/ec2_eni.py
@@ -769,7 +769,7 @@ def get_sec_group_list(groups):
# Build list of remote security groups
remote_security_groups = []
for group in groups:
- remote_security_groups.append(group["GroupId"].encode())
+ remote_security_groups.append(group["GroupId"])
return remote_security_groups
diff --git a/tests/integration/targets/ec2_eni/tasks/main.yaml b/tests/integration/targets/ec2_eni/tasks/main.yaml
index 3a0996617bf..e02d641a1a1 100644
--- a/tests/integration/targets/ec2_eni/tasks/main.yaml
+++ b/tests/integration/targets/ec2_eni/tasks/main.yaml
@@ -7,6 +7,7 @@
region: "{{ aws_region }}"
collections:
+ - ansible.netcommon
- community.aws
block:
diff --git a/tests/integration/targets/ec2_eni/tasks/test_eni_basic_creation.yaml b/tests/integration/targets/ec2_eni/tasks/test_eni_basic_creation.yaml
index b18af2dc9b3..49db43759fa 100644
--- a/tests/integration/targets/ec2_eni/tasks/test_eni_basic_creation.yaml
+++ b/tests/integration/targets/ec2_eni/tasks/test_eni_basic_creation.yaml
@@ -57,7 +57,7 @@
- _interface_0.private_dns_name is string
- _interface_0.private_dns_name.endswith("ec2.internal")
- '"private_ip_address" in _interface_0'
- - _interface_0.private_ip_address | ipaddr()
+ - _interface_0.private_ip_address | ansible.netcommon.ipaddr
- _interface_0.private_ip_address == ip_1
- '"private_ip_addresses" in _interface_0'
- _interface_0.private_ip_addresses | length == 1
@@ -152,7 +152,7 @@
- _interface_0.private_dns_name is string
- _interface_0.private_dns_name.endswith("ec2.internal")
- '"private_ip_address" in _interface_0'
- - _interface_0.private_ip_address | ipaddr()
+ - _interface_0.private_ip_address | ansible.netcommon.ipaddr
- _interface_0.private_ip_address == ip_5
- '"private_ip_addresses" in _interface_0'
- _interface_0.private_ip_addresses | length == 1
|
scikit-hep__awkward-1248 | `NumpyLike.to_rectilinear` fails for NumPy arrays
### Version of Awkward Array
1.8.3rc0
### Description and code to reproduce
This bug is most easily triggered when invoking a NumPy function with a rectilinear Awkward argument and NumPy rectilinear argument, e.g. `np.isin`:
```pycon
>>> reference = np.r_[1,2,3,4]
>>> test = ak.Array([1,2,9,0])
>>> np.isin(test, reference)
```
which gives the following traceback:
```pytb
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<__array_function__ internals>", line 5, in isin
File "/home/angus/Git/awkward-1.0/awkward/highlevel.py", line 1440, in __array_function__
return ak._connect._numpy.array_function(func, types, args, kwargs)
File "/home/angus/Git/awkward-1.0/awkward/_connect/_numpy.py", line 40, in array_function
args = tuple(_to_rectilinear(x) for x in args)
File "/home/angus/Git/awkward-1.0/awkward/_connect/_numpy.py", line 40, in <genexpr>
args = tuple(_to_rectilinear(x) for x in args)
File "/home/angus/Git/awkward-1.0/awkward/_connect/_numpy.py", line 32, in _to_rectilinear
return nplike.to_rectilinear(arg, allow_missing=False)
File "/home/angus/Git/awkward-1.0/awkward/nplike.py", line 422, in to_rectilinear
return [self.to_rectilinear(x, *args, **kwargs) for x in array]
File "/home/angus/Git/awkward-1.0/awkward/nplike.py", line 422, in <listcomp>
return [self.to_rectilinear(x, *args, **kwargs) for x in array]
File "/home/angus/Git/awkward-1.0/awkward/nplike.py", line 425, in to_rectilinear
raise TypeError("to_rectilinear argument must be iterable")
TypeError: to_rectilinear argument must be iterable
```
I think we need to handle the case where an array is `np.ndarray`.
| [
{
"content": "# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE\n\n# v2: keep this file, but modernize the 'of' function; ptr_lib is gone.\n\n\nimport ctypes\n\nfrom collections.abc import Iterable\n\nimport numpy\n\nimport awkward as ak\n\n\ndef of(*arrays):\n libs = se... | [
{
"content": "# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE\n\n# v2: keep this file, but modernize the 'of' function; ptr_lib is gone.\n\n\nimport ctypes\n\nfrom collections.abc import Iterable\n\nimport numpy\n\nimport awkward as ak\n\n\ndef of(*arrays):\n libs = se... | diff --git a/src/awkward/nplike.py b/src/awkward/nplike.py
index fac7effe42..e385a0b419 100644
--- a/src/awkward/nplike.py
+++ b/src/awkward/nplike.py
@@ -400,7 +400,10 @@ def __call__(self, *args):
class Numpy(NumpyLike):
def to_rectilinear(self, array, *args, **kwargs):
- if isinstance(
+ if isinstance(array, numpy.ndarray):
+ return array
+
+ elif isinstance(
array,
(
ak.Array,
diff --git a/tests/test_1247-numpy-to_rectilinear-ndarray.py b/tests/test_1247-numpy-to_rectilinear-ndarray.py
new file mode 100644
index 0000000000..ac97c68513
--- /dev/null
+++ b/tests/test_1247-numpy-to_rectilinear-ndarray.py
@@ -0,0 +1,13 @@
+# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
+
+import pytest # noqa: F401
+import numpy as np # noqa: F401
+import awkward as ak # noqa: F401
+
+
+def test():
+ array = np.array([1, 2, 9, 0])
+ nplike = ak.nplike.of(array)
+
+ ak_array = ak.from_numpy(array)
+ assert ak.to_list(nplike.to_rectilinear(array)) == ak.to_list(ak_array)
diff --git a/tests/v2/test_1247-numpy-to_rectilinear-ndarray.py b/tests/v2/test_1247-numpy-to_rectilinear-ndarray.py
new file mode 100644
index 0000000000..28177a33ea
--- /dev/null
+++ b/tests/v2/test_1247-numpy-to_rectilinear-ndarray.py
@@ -0,0 +1,12 @@
+# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
+
+import pytest # noqa: F401
+import numpy as np # noqa: F401
+import awkward as ak # noqa: F401
+
+
+def test():
+ array = np.array([1, 2, 9, 0])
+ nplike = ak.nplike.of(array)
+ ak_array = ak._v2.operations.convert.from_numpy(array)
+ assert nplike.to_rectilinear(array).tolist() == ak_array.tolist()
|
sktime__sktime-5368 | [BUG] `numba` related failures on main from `tslearn` `lcss`
On main, it seems we have the following `numba` related failures:
```
During: resolving callee type: type(CPUDispatcher(<function _local_squared_dist at 0x14fc267a0>))
During: typing of call at /Users/runner/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/tslearn/metrics/dtw_variants.py (1421)
```
This is not related to the recent newer `numba` release as we did not upgrade yet.
For test runs with the failures, see here: https://github.com/sktime/sktime/actions/runs/6424459407/job/17445296470?pr=5083
| [
{
"content": "# copyright: sktime developers, BSD-3-Clause License (see LICENSE file)\n\"\"\"Implements adapter for tslearn distances and kernels.\"\"\"\nimport numpy as np\n\n__all__ = [\"_TslearnPwTrafoAdapter\"]\n__author__ = [\"fkiraly\"]\n\n\ndef _subset_dict(d, keys):\n \"\"\"Subsets dictionary to keys... | [
{
"content": "# copyright: sktime developers, BSD-3-Clause License (see LICENSE file)\n\"\"\"Implements adapter for tslearn distances and kernels.\"\"\"\nimport numpy as np\n\n__all__ = [\"_TslearnPwTrafoAdapter\"]\n__author__ = [\"fkiraly\"]\n\n\ndef _subset_dict(d, keys):\n \"\"\"Subsets dictionary to keys... | diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 09ffafa2073..af09cdb481b 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -2,7 +2,7 @@ Contributors
============
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
-[](#contributors)
+[](#contributors)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
@@ -30,13 +30,14 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/alex-hh"><img src="https://avatars.githubusercontent.com/u/5719745?v=4?s=100" width="100px;" alt="Alex Hawkins-Hooker"/><br /><sub><b>Alex Hawkins-Hooker</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=alex-hh" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://medium.com/@alexandra.amidon"><img src="https://avatars2.githubusercontent.com/u/17050655?v=4?s=100" width="100px;" alt="Alexandra Amidon"/><br /><sub><b>Alexandra Amidon</b></sub></a><br /><a href="#blog-lynnssi" title="Blogposts">📝</a> <a href="https://github.com/sktime/sktime/commits?author=lynnssi" title="Documentation">📖</a> <a href="#ideas-lynnssi" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/alexfilothodoros"><img src="https://avatars.githubusercontent.com/u/6419847?v=4?s=100" width="100px;" alt="Alexandros Filothodoros"/><br /><sub><b>Alexandros Filothodoros</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=alexfilothodoros" title="Documentation">📖</a> <a href="#maintenance-alexfilothodoros" title="Maintenance">🚧</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/ali-parizad"><img src="https://avatars.githubusercontent.com/u/13907016?v=4?s=100" width="100px;" alt="Ali Parizad"/><br /><sub><b>Ali Parizad</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ali-parizad" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ali-tny"><img src="https://avatars.githubusercontent.com/u/26010073?v=4?s=100" width="100px;" alt="Ali Teeney"/><br /><sub><b>Ali Teeney</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ali-tny" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/myprogrammerpersonality"><img src="https://avatars.githubusercontent.com/u/49058167?v=4?s=100" width="100px;" alt="Ali Yazdizadeh"/><br /><sub><b>Ali Yazdizadeh</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=myprogrammerpersonality" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/alwinw"><img src="https://avatars3.githubusercontent.com/u/16846521?v=4?s=100" width="100px;" alt="Alwin"/><br /><sub><b>Alwin</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=alwinw" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=alwinw" title="Code">💻</a> <a href="#maintenance-alwinw" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/AnH0ang"><img src="?s=100" width="100px;" alt="An Hoang"/><br /><sub><b>An Hoang</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3AAnH0ang" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=AnH0ang" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/akanz1"><img src="https://avatars3.githubusercontent.com/u/51492342?v=4?s=100" width="100px;" alt="Andreas Kanz"/><br /><sub><b>Andreas Kanz</b></sub></a><br /><a href="#tutorial-akanz1" title="Tutorials">✅</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/akanz1"><img src="https://avatars3.githubusercontent.com/u/51492342?v=4?s=100" width="100px;" alt="Andreas Kanz"/><br /><sub><b>Andreas Kanz</b></sub></a><br /><a href="#tutorial-akanz1" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/angus924"><img src="https://avatars0.githubusercontent.com/u/55837131?v=4?s=100" width="100px;" alt="Angus Dempster"/><br /><sub><b>Angus Dempster</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=angus924" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=angus924" title="Tests">⚠️</a> <a href="#tutorial-angus924" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/yarnabrina/"><img src="https://avatars.githubusercontent.com/u/39331844?v=4?s=100" width="100px;" alt="Anirban Ray"/><br /><sub><b>Anirban Ray</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Ayarnabrina" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=yarnabrina" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=yarnabrina" title="Documentation">📖</a> <a href="#ideas-yarnabrina" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-yarnabrina" title="Maintenance">🚧</a> <a href="#mentoring-yarnabrina" title="Mentoring">🧑🏫</a> <a href="#question-yarnabrina" title="Answering Questions">💬</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Ayarnabrina" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/sktime/sktime/commits?author=yarnabrina" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/yard1/"><img src="https://avatars.githubusercontent.com/u/10364161?v=4?s=100" width="100px;" alt="Antoni Baum"/><br /><sub><b>Antoni Baum</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Yard1" title="Code">💻</a></td>
@@ -45,9 +46,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/bugslayer-332"><img src="?s=100" width="100px;" alt="Arepalli Yashwanth Reddy"/><br /><sub><b>Arepalli Yashwanth Reddy</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=bugslayer-332" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Abugslayer-332" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=bugslayer-332" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ermshaua/"><img src="https://avatars.githubusercontent.com/u/23294512?v=4?s=100" width="100px;" alt="Arik Ermshaus"/><br /><sub><b>Arik Ermshaus</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ermshaua" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/arnau-jim%C3%A9nez-castany-b2ba2597/"><img src="https://avatars.githubusercontent.com/u/38285979?s=400&u=8bdd0021cb5bae47ba5bd69c355c694dc3090f5e&v=4?s=100" width="100px;" alt="Arnau"/><br /><sub><b>Arnau</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Arnau" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/arnavrneo"><img src="https://avatars.githubusercontent.com/u/48650781?v=4?s=100" width="100px;" alt="Arnav"/><br /><sub><b>Arnav</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=arnavrneo" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/arnavrneo"><img src="https://avatars.githubusercontent.com/u/48650781?v=4?s=100" width="100px;" alt="Arnav"/><br /><sub><b>Arnav</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=arnavrneo" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/ayushmaan-seth-4a96364a/"><img src="https://avatars1.githubusercontent.com/u/29939762?v=4?s=100" width="100px;" alt="Ayushmaan Seth"/><br /><sub><b>Ayushmaan Seth</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Ayushmaanseth" title="Code">💻</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3AAyushmaanseth" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/sktime/sktime/commits?author=Ayushmaanseth" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/commits?author=Ayushmaanseth" title="Documentation">📖</a> <a href="#eventOrganizing-Ayushmaanseth" title="Event Organizing">📋</a> <a href="#tutorial-Ayushmaanseth" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/BandaSaiTejaReddy"><img src="https://avatars0.githubusercontent.com/u/31387911?v=4?s=100" width="100px;" alt="BANDASAITEJAREDDY"/><br /><sub><b>BANDASAITEJAREDDY</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=BandaSaiTejaReddy" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=BandaSaiTejaReddy" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/badrmarani"><img src="https://avatars.githubusercontent.com/badrmarani?s=100" width="100px;" alt="Badr-Eddine Marani"/><br /><sub><b>Badr-Eddine Marani</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=badrmarani" title="Code">💻</a></td>
@@ -56,9 +57,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://haskarb.github.io/"><img src="https://avatars.githubusercontent.com/u/20501023?v=4?s=100" width="100px;" alt="Bhaskar Dhariyal"/><br /><sub><b>Bhaskar Dhariyal</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=haskarb" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=haskarb" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/BINAYKUMAR943"><img src="https://avatars.githubusercontent.com/u/38756834?v=4?s=100" width="100px;" alt="Binay Kumar"/><br /><sub><b>Binay Kumar</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=BINAYKUMAR943" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=BINAYKUMAR943" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=BINAYKUMAR943" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://angelpone.github.io/"><img src="https://avatars.githubusercontent.com/u/32930283?v=4?s=100" width="100px;" alt="Bohan Zhang"/><br /><sub><b>Bohan Zhang</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=AngelPone" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/boukepostma"><img src="https://avatars.githubusercontent.com/boukepostma?s=100" width="100px;" alt="Bouke Postma"/><br /><sub><b>Bouke Postma</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=boukepostma" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Aboukepostma" title="Bug reports">🐛</a> <a href="#ideas-boukepostma" title="Ideas, Planning, & Feedback">🤔</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/boukepostma"><img src="https://avatars.githubusercontent.com/boukepostma?s=100" width="100px;" alt="Bouke Postma"/><br /><sub><b>Bouke Postma</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=boukepostma" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Aboukepostma" title="Bug reports">🐛</a> <a href="#ideas-boukepostma" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://bmurphyportfolio.netlify.com/"><img src="https://avatars2.githubusercontent.com/u/32182553?v=4?s=100" width="100px;" alt="Brian Murphy"/><br /><sub><b>Brian Murphy</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=bmurdata" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Carlosbogo"><img src="https://avatars.githubusercontent.com/u/84228424?v=4?s=100" width="100px;" alt="Carlos Borrajo"/><br /><sub><b>Carlos Borrajo</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Carlosbogo" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=Carlosbogo" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/vnmabus"><img src="https://avatars1.githubusercontent.com/u/2364173?v=4?s=100" width="100px;" alt="Carlos Ramos Carreño"/><br /><sub><b>Carlos Ramos Carreño</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=vnmabus" title="Documentation">📖</a></td>
@@ -67,9 +68,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ckastner"><img src="https://avatars.githubusercontent.com/u/15859947?v=4?s=100" width="100px;" alt="Christian Kastner"/><br /><sub><b>Christian Kastner</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ckastner" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Ackastner" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/hoesler/"><img src="https://avatars.githubusercontent.com/u/1052770?v=4?s=100" width="100px;" alt="Christoph Hösler"/><br /><sub><b>Christoph Hösler</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=hoesler" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/cdahlin"><img src="https://avatars.githubusercontent.com/u/1567780?v=4?s=100" width="100px;" alt="Christopher Dahlin"/><br /><sub><b>Christopher Dahlin</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=cdahlin" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/topher-lo"><img src="?s=100" width="100px;" alt="Christopher Lo"/><br /><sub><b>Christopher Lo</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=topher-lo" title="Code">💻</a> <a href="#ideas-topher-lo" title="Ideas, Planning, & Feedback">🤔</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/topher-lo"><img src="?s=100" width="100px;" alt="Christopher Lo"/><br /><sub><b>Christopher Lo</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=topher-lo" title="Code">💻</a> <a href="#ideas-topher-lo" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Gigi1111"><img src="https://avatars.githubusercontent.com/Gigi1111?s=100" width="100px;" alt="Chung-Fan Tsai"/><br /><sub><b>Chung-Fan Tsai</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Gigi1111" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ciaran-g"><img src="https://avatars.githubusercontent.com/u/41995662?v=4?s=100" width="100px;" alt="Ciaran Gilbert"/><br /><sub><b>Ciaran Gilbert</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Aciaran-g" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=ciaran-g" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=ciaran-g" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=ciaran-g" title="Tests">⚠️</a> <a href="#ideas-ciaran-g" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ClaudiaSanches"><img src="https://avatars3.githubusercontent.com/u/28742178?v=4?s=100" width="100px;" alt="ClaudiaSanches"/><br /><sub><b>ClaudiaSanches</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ClaudiaSanches" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=ClaudiaSanches" title="Tests">⚠️</a></td>
@@ -78,9 +79,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/DBCerigo"><img src="https://avatars.githubusercontent.com/u/8318425?v=4?s=100" width="100px;" alt="Daniel Burkhardt Cerigo"/><br /><sub><b>Daniel Burkhardt Cerigo</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=DBCerigo" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/daniel-martin-martinez"><img src="https://avatars.githubusercontent.com/dainelli98?s=100" width="100px;" alt="Daniel Martín Martínez"/><br /><sub><b>Daniel Martín Martínez</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=dainelli98" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Adainelli98" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/dashapetr"><img src="https://avatars.githubusercontent.com/u/54349415?v=4?s=100" width="100px;" alt="Darya Petrashka"/><br /><sub><b>Darya Petrashka</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=dashapetr" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://dhirschfeld.github.io/"><img src="https://avatars1.githubusercontent.com/u/881019?v=4?s=100" width="100px;" alt="Dave Hirschfeld"/><br /><sub><b>Dave Hirschfeld</b></sub></a><br /><a href="#infra-dhirschfeld" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://dhirschfeld.github.io/"><img src="https://avatars1.githubusercontent.com/u/881019?v=4?s=100" width="100px;" alt="Dave Hirschfeld"/><br /><sub><b>Dave Hirschfeld</b></sub></a><br /><a href="#infra-dhirschfeld" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/davidbp"><img src="https://avatars3.githubusercontent.com/u/4223580?v=4?s=100" width="100px;" alt="David Buchaca Prats"/><br /><sub><b>David Buchaca Prats</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=davidbp" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/davidgilbertson"><img src="https://avatars.githubusercontent.com/u/4443482?v=4?s=100" width="100px;" alt="David Gilbertson"/><br /><sub><b>David Gilbertson</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=davidgilbertson" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Adavidgilbertson" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="http://www.uco.es/grupos/ayrna/index.php/es/publicaciones/articulos?publications_view_all=1&theses_view_all=0&projects_view_all=0&task=show&view=member&id=22"><img src="https://avatars1.githubusercontent.com/u/47889499?v=4?s=100" width="100px;" alt="David Guijo Rubio"/><br /><sub><b>David Guijo Rubio</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=dguijo" title="Code">💻</a> <a href="#ideas-dguijo" title="Ideas, Planning, & Feedback">🤔</a></td>
@@ -89,9 +90,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Dbhasin1"><img src="https://avatars.githubusercontent.com/u/56479884?v=4?s=100" width="100px;" alt="Drishti Bhasin "/><br /><sub><b>Drishti Bhasin </b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Dbhasin1" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/dsherry"><img src="https://avatars.githubusercontent.com/dsherry?s=100" width="100px;" alt="Dylan Sherry"/><br /><sub><b>Dylan Sherry</b></sub></a><br /><a href="#infra-dsherry" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Emiliathewolf"><img src="https://avatars2.githubusercontent.com/u/22026218?v=4?s=100" width="100px;" alt="Emilia Rose"/><br /><sub><b>Emilia Rose</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Emiliathewolf" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=Emiliathewolf" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/erjieyong"><img src="https://avatars.githubusercontent.com/u/109052378?v=4?s=100" width="100px;" alt="Er Jie Yong"/><br /><sub><b>Er Jie Yong</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Aerjieyong" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=erjieyong" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/erjieyong"><img src="https://avatars.githubusercontent.com/u/109052378?v=4?s=100" width="100px;" alt="Er Jie Yong"/><br /><sub><b>Er Jie Yong</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Aerjieyong" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=erjieyong" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/evanmiller29"><img src="https://avatars2.githubusercontent.com/u/8062590?v=4?s=100" width="100px;" alt="Evan Miller"/><br /><sub><b>Evan Miller</b></sub></a><br /><a href="#tutorial-evanmiller29" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/eyalshafran"><img src="https://avatars.githubusercontent.com/u/16999574?v=4?s=100" width="100px;" alt="Eyal Shafran"/><br /><sub><b>Eyal Shafran</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=eyalshafran" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/eyjo"><img src="https://avatars.githubusercontent.com/eyjo?s=100" width="100px;" alt="Eyjólfur Sigurðsson"/><br /><sub><b>Eyjólfur Sigurðsson</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=eyjo" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=eyjo" title="Documentation">📖</a></td>
@@ -100,9 +101,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/flix6x"><img src="https://avatars.githubusercontent.com/u/30658763?v=4?s=100" width="100px;" alt="Felix Claessen"/><br /><sub><b>Felix Claessen</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Flix6x" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=Flix6x" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=Flix6x" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/issues?q=author%3AFlix6x" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/fstinner"><img src="https://avatars.githubusercontent.com/u/11679462?v=4?s=100" width="100px;" alt="Florian Stinner"/><br /><sub><b>Florian Stinner</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=fstinner" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=fstinner" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/fkiraly"><img src="https://avatars1.githubusercontent.com/u/7985502?v=4?s=100" width="100px;" alt="Franz Kiraly"/><br /><sub><b>Franz Kiraly</b></sub></a><br /><a href="#blog-fkiraly" title="Blogposts">📝</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Afkiraly" title="Bug reports">🐛</a> <a href="#business-fkiraly" title="Business development">💼</a> <a href="https://github.com/sktime/sktime/commits?author=fkiraly" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=fkiraly" title="Documentation">📖</a> <a href="#design-fkiraly" title="Design">🎨</a> <a href="#eventOrganizing-fkiraly" title="Event Organizing">📋</a> <a href="#example-fkiraly" title="Examples">💡</a> <a href="#financial-fkiraly" title="Financial">💵</a> <a href="#fundingFinding-fkiraly" title="Funding Finding">🔍</a> <a href="#ideas-fkiraly" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-fkiraly" title="Maintenance">🚧</a> <a href="#mentoring-fkiraly" title="Mentoring">🧑🏫</a> <a href="#projectManagement-fkiraly" title="Project Management">📆</a> <a href="#question-fkiraly" title="Answering Questions">💬</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Afkiraly" title="Reviewed Pull Requests">👀</a> <a href="#talk-fkiraly" title="Talks">📢</a> <a href="https://github.com/sktime/sktime/commits?author=fkiraly" title="Tests">⚠️</a> <a href="#tutorial-fkiraly" title="Tutorials">✅</a> <a href="#video-fkiraly" title="Videos">📹</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/freddyaboulton"><img src="https://avatars.githubusercontent.com/u/41651716?v=4?s=100" width="100px;" alt="Freddy A Boulton"/><br /><sub><b>Freddy A Boulton</b></sub></a><br /><a href="#infra-freddyaboulton" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/sktime/sktime/commits?author=freddyaboulton" title="Tests">⚠️</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/freddyaboulton"><img src="https://avatars.githubusercontent.com/u/41651716?v=4?s=100" width="100px;" alt="Freddy A Boulton"/><br /><sub><b>Freddy A Boulton</b></sub></a><br /><a href="#infra-freddyaboulton" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/sktime/sktime/commits?author=freddyaboulton" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/chernika158"><img src="https://avatars.githubusercontent.com/u/43787741?s=400&v=4?s=100" width="100px;" alt="Galina Chernikova"/><br /><sub><b>Galina Chernikova</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=chernika158" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/goastler"><img src="https://avatars0.githubusercontent.com/u/7059456?v=4?s=100" width="100px;" alt="George Oastler"/><br /><sub><b>George Oastler</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=goastler" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=goastler" title="Tests">⚠️</a> <a href="#platform-goastler" title="Packaging/porting to new platform">📦</a> <a href="#example-goastler" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/commits?author=goastler" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/gracewgao/"><img src="https://avatars0.githubusercontent.com/u/38268331?v=4?s=100" width="100px;" alt="Grace Gao"/><br /><sub><b>Grace Gao</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=gracewgao" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Agracewgao" title="Bug reports">🐛</a></td>
@@ -111,9 +112,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/BensHamza"><img src="https://avatars.githubusercontent.com/u/96446862?v=4?s=100" width="100px;" alt="Hamza Benslimane"/><br /><sub><b>Hamza Benslimane</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3ABensHamza" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=BensHamza" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/hazrulakmal"><img src="https://avatars.githubusercontent.com/u/24774385?v=4?s=100" width="100px;" alt="Hazrul Akmal"/><br /><sub><b>Hazrul Akmal</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=hazrulakmal" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=hazrulakmal" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Ahazrulakmal" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=hazrulakmal" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/hliebert"><img src="https://avatars.githubusercontent.com/u/20834265?s=100" width="100px;" alt="Helge Liebert"/><br /><sub><b>Helge Liebert</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Ahliebert" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=hliebert" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/huayiwei/"><img src="https://avatars3.githubusercontent.com/u/22870735?v=4?s=100" width="100px;" alt="Huayi Wei"/><br /><sub><b>Huayi Wei</b></sub></a><br /><a href="#tutorial-huayicodes" title="Tutorials">✅</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/huayiwei/"><img src="https://avatars3.githubusercontent.com/u/22870735?v=4?s=100" width="100px;" alt="Huayi Wei"/><br /><sub><b>Huayi Wei</b></sub></a><br /><a href="#tutorial-huayicodes" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Ifeanyi30"><img src="https://avatars.githubusercontent.com/u/49926145?v=4?s=100" width="100px;" alt="Ifeanyi30"/><br /><sub><b>Ifeanyi30</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Ifeanyi30" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/iljamaurer"><img src="https://avatars.githubusercontent.com/u/45882103?v=4?s=100" width="100px;" alt="Ilja Maurer"/><br /><sub><b>Ilja Maurer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=iljamaurer" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/IlyasMoutawwakil"><img src="https://avatars.githubusercontent.com/IlyasMoutawwakil?s=100" width="100px;" alt="Ilyas Moutawwakil"/><br /><sub><b>Ilyas Moutawwakil</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=IlyasMoutawwakil" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=IlyasMoutawwakil" title="Documentation">📖</a></td>
@@ -122,9 +123,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/jnrusson1"><img src="https://avatars.githubusercontent.com/u/51986332?v=4?s=100" width="100px;" alt="Jack Russon"/><br /><sub><b>Jack Russon</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jnrusson1" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="http://www.timeseriesclassification.com/"><img src="https://avatars0.githubusercontent.com/u/44509982?v=4?s=100" width="100px;" alt="James Large"/><br /><sub><b>James Large</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=James-Large" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=James-Large" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=James-Large" title="Tests">⚠️</a> <a href="#infra-James-Large" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-James-Large" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/jambo6"><img src="https://https://avatars.githubusercontent.com/jambo6?s=100" width="100px;" alt="James Morrill"/><br /><sub><b>James Morrill</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jambo6" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/janpipek"><img src="https://avatars.githubusercontent.com/janpipek?s=100" width="100px;" alt="Jan Pipek"/><br /><sub><b>Jan Pipek</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=janpipek" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/janpipek"><img src="https://avatars.githubusercontent.com/janpipek?s=100" width="100px;" alt="Jan Pipek"/><br /><sub><b>Jan Pipek</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=janpipek" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/jasmineliaw"><img src="?s=100" width="100px;" alt="Jasmine Liaw"/><br /><sub><b>Jasmine Liaw</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jasmineliaw" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="http://www.timeseriesclassification.com"><img src="https://avatars1.githubusercontent.com/u/38794632?v=4?s=100" width="100px;" alt="Jason Lines"/><br /><sub><b>Jason Lines</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jasonlines" title="Code">💻</a> <a href="#business-jasonlines" title="Business development">💼</a> <a href="https://github.com/sktime/sktime/commits?author=jasonlines" title="Documentation">📖</a> <a href="#design-jasonlines" title="Design">🎨</a> <a href="#eventOrganizing-jasonlines" title="Event Organizing">📋</a> <a href="#fundingFinding-jasonlines" title="Funding Finding">🔍</a> <a href="#ideas-jasonlines" title="Ideas, Planning, & Feedback">🤔</a> <a href="#projectManagement-jasonlines" title="Project Management">📆</a> <a href="#question-jasonlines" title="Answering Questions">💬</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Ajasonlines" title="Reviewed Pull Requests">👀</a> <a href="#talk-jasonlines" title="Talks">📢</a> <a href="#example-jasonlines" title="Examples">💡</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/whackteachers"><img src="https://avatars0.githubusercontent.com/u/33785383?v=4?s=100" width="100px;" alt="Jason Pong"/><br /><sub><b>Jason Pong</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=whackteachers" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=whackteachers" title="Tests">⚠️</a></td>
@@ -133,9 +134,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/jorenham"><img src="?s=100" width="100px;" alt="Joren Hammudoglu"/><br /><sub><b>Joren Hammudoglu</b></sub></a><br /><a href="#infra-jorenham" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://juanitorduz.github.io/"><img src="https://avatars1.githubusercontent.com/u/22996444?v=4?s=100" width="100px;" alt="Juan Orduz"/><br /><sub><b>Juan Orduz</b></sub></a><br /><a href="#tutorial-juanitorduz" title="Tutorials">✅</a> <a href="https://github.com/sktime/sktime/commits?author=juanitorduz" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/julia-kraus"><img src="https://avatars.githubusercontent.com/julia-kraus?s=100" width="100px;" alt="Julia Kraus"/><br /><sub><b>Julia Kraus</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=julia-kraus" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=julia-kraus" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=julia-kraus" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/jelc53"><img src="?s=100" width="100px;" alt="Julian Cooper"/><br /><sub><b>Julian Cooper</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jelc53" title="Code">💻</a> <a href="#ideas-jelc53" title="Ideas, Planning, & Feedback">🤔</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/jelc53"><img src="?s=100" width="100px;" alt="Julian Cooper"/><br /><sub><b>Julian Cooper</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jelc53" title="Code">💻</a> <a href="#ideas-jelc53" title="Ideas, Planning, & Feedback">🤔</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/julnow"><img src="https://avatars.githubusercontent.com/u/21206185?v=4?s=100" width="100px;" alt="Julian Nowak"/><br /><sub><b>Julian Nowak</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Ajulnow" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=julnow" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/julianarn/"><img src="https://avatars.githubusercontent.com/u/19613567?v=4?s=100" width="100px;" alt="Juliana"/><br /><sub><b>Juliana</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=julramos" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.justinshenk.com/"><img src="https://avatars.githubusercontent.com/u/10270308?v=4?s=100" width="100px;" alt="Justin Shenk"/><br /><sub><b>Justin Shenk</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=justinshenk" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/kcc-lion"><img src="?s=100" width="100px;" alt="Kai Lion"/><br /><sub><b>Kai Lion</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=kcc-lion" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=kcc-lion" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/commits?author=kcc-lion" title="Documentation">📖</a></td>
@@ -143,10 +145,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://kejsitake.com/"><img src="https://avatars.githubusercontent.com/u/23707808?v=4?s=100" width="100px;" alt="Kejsi Take"/><br /><sub><b>Kejsi Take</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=kejsitake" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/kevinlam2"><img src="https://avatars.githubusercontent.com/u/114420932?s=400&v=4?s=100" width="100px;" alt="Kevin Lam"/><br /><sub><b>Kevin Lam</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=klam-data" title="Code">💻</a> <a href="#example-klam-data" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/commits?author=klam-data" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://whitakerlab.github.io/"><img src="https://avatars1.githubusercontent.com/u/3626306?v=4?s=100" width="100px;" alt="Kirstie Whitaker"/><br /><sub><b>Kirstie Whitaker</b></sub></a><br /><a href="#ideas-KirstieJane" title="Ideas, Planning, & Feedback">🤔</a> <a href="#fundingFinding-KirstieJane" title="Funding Finding">🔍</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/kishmanani"><img src="https://avatars.githubusercontent.com/u/30973056?v=4?s=100" width="100px;" alt="Kishan Manani"/><br /><sub><b>Kishan Manani</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/issues?q=author%3AKishManani" title="Bug reports">🐛</a> <a href="#ideas-KishManani" title="Ideas, Planning, & Feedback">🤔</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/krumeto"><img src="https://avatars3.githubusercontent.com/u/11272436?v=4?s=100" width="100px;" alt="Krum Arnaudov"/><br /><sub><b>Krum Arnaudov</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Akrumeto" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=krumeto" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/kishmanani"><img src="https://avatars.githubusercontent.com/u/30973056?v=4?s=100" width="100px;" alt="Kishan Manani"/><br /><sub><b>Kishan Manani</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=KishManani" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/issues?q=author%3AKishManani" title="Bug reports">🐛</a> <a href="#ideas-KishManani" title="Ideas, Planning, & Feedback">🤔</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/krumeto"><img src="https://avatars3.githubusercontent.com/u/11272436?v=4?s=100" width="100px;" alt="Krum Arnaudov"/><br /><sub><b>Krum Arnaudov</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Akrumeto" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=krumeto" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/koralturkk"><img src="https://avatars2.githubusercontent.com/u/18037789?s=460&v=4?s=100" width="100px;" alt="Kutay Koralturk"/><br /><sub><b>Kutay Koralturk</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=koralturkk" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Akoralturkk" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ltsaprounis"><img src="https://avatars.githubusercontent.com/u/64217214?v=4?s=100" width="100px;" alt="Leonidas Tsaprounis"/><br /><sub><b>Leonidas Tsaprounis</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ltsaprounis" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Altsaprounis" title="Bug reports">🐛</a> <a href="#mentoring-ltsaprounis" title="Mentoring">🧑🏫</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Altsaprounis" title="Reviewed Pull Requests">👀</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/lielleravid"><img src="https://avatars.githubusercontent.com/u/37774194?v=4?s=100" width="100px;" alt="Lielle Ravid"/><br /><sub><b>Lielle Ravid</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=lielleravid" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=lielleravid" title="Documentation">📖</a></td>
@@ -154,10 +156,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="http://lpantano.github.io/"><img src="https://avatars2.githubusercontent.com/u/1621788?v=4?s=100" width="100px;" alt="Lorena Pantano"/><br /><sub><b>Lorena Pantano</b></sub></a><br /><a href="#ideas-lpantano" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ltoniazzi"><img src="https://avatars.githubusercontent.com/u/61414566?s=100" width="100px;" alt="Lorenzo Toniazzi"/><br /><sub><b>Lorenzo Toniazzi</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ltoniazzi" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Lovkush-A"><img src="https://avatars.githubusercontent.com/u/25344832?v=4?s=100" width="100px;" alt="Lovkush"/><br /><sub><b>Lovkush</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Lovkush-A" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=Lovkush-A" title="Tests">⚠️</a> <a href="#ideas-Lovkush-A" title="Ideas, Planning, & Feedback">🤔</a> <a href="#mentoring-Lovkush-A" title="Mentoring">🧑🏫</a> <a href="#projectManagement-Lovkush-A" title="Project Management">📆</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/luca-miniati"><img src="https://avatars.githubusercontent.com/u/87467600?v=4?s=100" width="100px;" alt="Luca Miniati"/><br /><sub><b>Luca Miniati</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=luca-miniati" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=luca-miniati" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/lbventura"><img src="https://avatars.githubusercontent.com/u/68004282?s=96&v=4?s=100" width="100px;" alt="Luis Ventura"/><br /><sub><b>Luis Ventura</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=lbventura" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/luca-miniati"><img src="https://avatars.githubusercontent.com/u/87467600?v=4?s=100" width="100px;" alt="Luca Miniati"/><br /><sub><b>Luca Miniati</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=luca-miniati" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=luca-miniati" title="Documentation">📖</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/lbventura"><img src="https://avatars.githubusercontent.com/u/68004282?s=96&v=4?s=100" width="100px;" alt="Luis Ventura"/><br /><sub><b>Luis Ventura</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=lbventura" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/luiszugasti"><img src="https://avatars.githubusercontent.com/u/11198457?s=460&u=0645b72683e491824aca16db9702f1d3eb990389&v=4?s=100" width="100px;" alt="Luis Zugasti"/><br /><sub><b>Luis Zugasti</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=luiszugasti" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/lmmentel"><img src="https://avatars.githubusercontent.com/u/8989838?v=4?s=100" width="100px;" alt="Lukasz Mentel"/><br /><sub><b>Lukasz Mentel</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=lmmentel" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=lmmentel" title="Documentation">📖</a> <a href="#infra-lmmentel" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/sktime/sktime/commits?author=lmmentel" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Almmentel" title="Bug reports">🐛</a> <a href="#maintenance-lmmentel" title="Maintenance">🚧</a> <a href="#mentoring-lmmentel" title="Mentoring">🧑🏫</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/marrov"><img src="https://avatars.githubusercontent.com/u/54272586?v=4?s=100" width="100px;" alt="Marc Rovira"/><br /><sub><b>Marc Rovira</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=marrov" title="Documentation">📖</a></td>
@@ -165,10 +167,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/MarcoGorelli"><img src="https://avatars2.githubusercontent.com/u/33491632?v=4?s=100" width="100px;" alt="Marco Gorelli"/><br /><sub><b>Marco Gorelli</b></sub></a><br /><a href="#infra-MarcoGorelli" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/margaret-gorlin/"><img src="?s=100" width="100px;" alt="Margaret Gorlin"/><br /><sub><b>Margaret Gorlin</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mgorlin" title="Code">💻</a> <a href="#example-mgorlin" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/commits?author=mgorlin" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/mariamjabara"><img src="?s=100" width="100px;" alt="Mariam Jabara"/><br /><sub><b>Mariam Jabara</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mariamjabara" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://twitter.com/marielli"><img src="https://avatars2.githubusercontent.com/u/13499809?v=4?s=100" width="100px;" alt="Marielle"/><br /><sub><b>Marielle</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=marielledado" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=marielledado" title="Code">💻</a> <a href="#ideas-marielledado" title="Ideas, Planning, & Feedback">🤔</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/mloning"><img src="https://avatars3.githubusercontent.com/u/21020482?v=4?s=100" width="100px;" alt="Markus Löning"/><br /><sub><b>Markus Löning</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mloning" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=mloning" title="Tests">⚠️</a> <a href="#maintenance-mloning" title="Maintenance">🚧</a> <a href="#platform-mloning" title="Packaging/porting to new platform">📦</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Amloning" title="Reviewed Pull Requests">👀</a> <a href="#infra-mloning" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#example-mloning" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Amloning" title="Bug reports">🐛</a> <a href="#tutorial-mloning" title="Tutorials">✅</a> <a href="#business-mloning" title="Business development">💼</a> <a href="https://github.com/sktime/sktime/commits?author=mloning" title="Documentation">📖</a> <a href="#design-mloning" title="Design">🎨</a> <a href="#eventOrganizing-mloning" title="Event Organizing">📋</a> <a href="#fundingFinding-mloning" title="Funding Finding">🔍</a> <a href="#ideas-mloning" title="Ideas, Planning, & Feedback">🤔</a> <a href="#projectManagement-mloning" title="Project Management">📆</a> <a href="#question-mloning" title="Answering Questions">💬</a> <a href="#talk-mloning" title="Talks">📢</a> <a href="#mentoring-mloning" title="Mentoring">🧑🏫</a> <a href="#video-mloning" title="Videos">📹</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://twitter.com/marielli"><img src="https://avatars2.githubusercontent.com/u/13499809?v=4?s=100" width="100px;" alt="Marielle"/><br /><sub><b>Marielle</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=marielledado" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=marielledado" title="Code">💻</a> <a href="#ideas-marielledado" title="Ideas, Planning, & Feedback">🤔</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/mloning"><img src="https://avatars3.githubusercontent.com/u/21020482?v=4?s=100" width="100px;" alt="Markus Löning"/><br /><sub><b>Markus Löning</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mloning" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=mloning" title="Tests">⚠️</a> <a href="#maintenance-mloning" title="Maintenance">🚧</a> <a href="#platform-mloning" title="Packaging/porting to new platform">📦</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Amloning" title="Reviewed Pull Requests">👀</a> <a href="#infra-mloning" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#example-mloning" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Amloning" title="Bug reports">🐛</a> <a href="#tutorial-mloning" title="Tutorials">✅</a> <a href="#business-mloning" title="Business development">💼</a> <a href="https://github.com/sktime/sktime/commits?author=mloning" title="Documentation">📖</a> <a href="#design-mloning" title="Design">🎨</a> <a href="#eventOrganizing-mloning" title="Event Organizing">📋</a> <a href="#fundingFinding-mloning" title="Funding Finding">🔍</a> <a href="#ideas-mloning" title="Ideas, Planning, & Feedback">🤔</a> <a href="#projectManagement-mloning" title="Project Management">📆</a> <a href="#question-mloning" title="Answering Questions">💬</a> <a href="#talk-mloning" title="Talks">📢</a> <a href="#mentoring-mloning" title="Mentoring">🧑🏫</a> <a href="#video-mloning" title="Videos">📹</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/martin-walter-1a33b3114/"><img src="https://avatars0.githubusercontent.com/u/29627036?v=4?s=100" width="100px;" alt="Martin Walter"/><br /><sub><b>Martin Walter</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=aiwalter" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Aaiwalter" title="Bug reports">🐛</a> <a href="#projectManagement-aiwalter" title="Project Management">📆</a> <a href="#fundingFinding-aiwalter" title="Funding Finding">🔍</a> <a href="#mentoring-aiwalter" title="Mentoring">🧑🏫</a> <a href="#ideas-aiwalter" title="Ideas, Planning, & Feedback">🤔</a> <a href="#design-aiwalter" title="Design">🎨</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Aaiwalter" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/sktime/sktime/commits?author=aiwalter" title="Documentation">📖</a> <a href="#talk-aiwalter" title="Talks">📢</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/martinagvilas"><img src="https://avatars2.githubusercontent.com/u/37339384?v=4?s=100" width="100px;" alt="Martina G. Vilas"/><br /><sub><b>Martina G. Vilas</b></sub></a><br /><a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Amartinagvilas" title="Reviewed Pull Requests">👀</a> <a href="#ideas-martinagvilas" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/MCRE-BE"><img src="https://avatars.githubusercontent.com/u/99316631?s=100" width="100px;" alt="Mathias Creemers"/><br /><sub><b>Mathias Creemers</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3AMCRE-BE" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=MCRE-BE" title="Code">💻</a></td>
@@ -176,10 +178,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/solen0id"><img src="https://avatars.githubusercontent.com/u/20767606?v=4?s=100" width="100px;" alt="Max Patzelt"/><br /><sub><b>Max Patzelt</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=solen0id" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Hephaest"><img src="https://avatars2.githubusercontent.com/u/37981444?v=4?s=100" width="100px;" alt="Miao Cai"/><br /><sub><b>Miao Cai</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3AHephaest" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=Hephaest" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="michaelfeil.eu"><img src="https://avatars.githubusercontent.com/u/63565275?v=4?s=100" width="100px;" alt="Michael Feil"/><br /><sub><b>Michael Feil</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=michaelfeil" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=michaelfeil" title="Tests">⚠️</a> <a href="#ideas-michaelfeil" title="Ideas, Planning, & Feedback">🤔</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/mgazian000"><img src="https://avatars.githubusercontent.com/mgazian000?s=100" width="100px;" alt="Michael Gaziani"/><br /><sub><b>Michael Gaziani</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mgazian000" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/MichalChromcak"><img src="https://avatars1.githubusercontent.com/u/12393430?v=4?s=100" width="100px;" alt="Michal Chromcak"/><br /><sub><b>Michal Chromcak</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Tests">⚠️</a> <a href="#tutorial-MichalChromcak" title="Tutorials">✅</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/mgazian000"><img src="https://avatars.githubusercontent.com/mgazian000?s=100" width="100px;" alt="Michael Gaziani"/><br /><sub><b>Michael Gaziani</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mgazian000" title="Documentation">📖</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/MichalChromcak"><img src="https://avatars1.githubusercontent.com/u/12393430?v=4?s=100" width="100px;" alt="Michal Chromcak"/><br /><sub><b>Michal Chromcak</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=MichalChromcak" title="Tests">⚠️</a> <a href="#tutorial-MichalChromcak" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/miraep8"><img src="https://avatars.githubusercontent.com/u/10511777?s=400&u=10a774fd4be767fa3b23a82a98bbfe102c17f0f3&v=4?s=100" width="100px;" alt="Mirae Parker"/><br /><sub><b>Mirae Parker</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=miraep8" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=miraep8" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/MBristle"><img src="https://avatars.githubusercontent.com/MBristle?s=100" width="100px;" alt="Mirko Bristle"/><br /><sub><b>Mirko Bristle</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=MBristle" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://mo-saif.github.io/"><img src="https://avatars0.githubusercontent.com/u/27867617?v=4?s=100" width="100px;" alt="Mohammed Saif Kazamel"/><br /><sub><b>Mohammed Saif Kazamel</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3AMo-Saif" title="Bug reports">🐛</a></td>
@@ -187,10 +189,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Multivin12"><img src="https://avatars3.githubusercontent.com/u/36476633?v=4?s=100" width="100px;" alt="Multivin12"/><br /><sub><b>Multivin12</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Multivin12" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=Multivin12" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/marcio55afr"><img src="https://avatars.githubusercontent.com/u/42646282?v=4?s=100" width="100px;" alt="Márcio A. Freitas Jr"/><br /><sub><b>Márcio A. Freitas Jr</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=marcio55afr" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/niekvanderlaan"><img src="https://avatars.githubusercontent.com/u/9962825?v=4?s=100" width="100px;" alt="Niek van der Laan"/><br /><sub><b>Niek van der Laan</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=niekvanderlaan" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/ngupta23"><img src="https://avatars0.githubusercontent.com/u/33585645?v=4?s=100" width="100px;" alt="Nikhil Gupta"/><br /><sub><b>Nikhil Gupta</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ngupta23" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Angupta23" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=ngupta23" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/nshahpazov/"><img src="https://avatars.githubusercontent.com/nshahpazov?s=100" width="100px;" alt="Nikola Shahpazov"/><br /><sub><b>Nikola Shahpazov</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=nshahpazov" title="Documentation">📖</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/ngupta23"><img src="https://avatars0.githubusercontent.com/u/33585645?v=4?s=100" width="100px;" alt="Nikhil Gupta"/><br /><sub><b>Nikhil Gupta</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ngupta23" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Angupta23" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=ngupta23" title="Documentation">📖</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/nshahpazov/"><img src="https://avatars.githubusercontent.com/nshahpazov?s=100" width="100px;" alt="Nikola Shahpazov"/><br /><sub><b>Nikola Shahpazov</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=nshahpazov" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/nilesh05apr"><img src="https://avatars.githubusercontent.com/u/65773314?v=4?s=100" width="100px;" alt="Nilesh Kumar"/><br /><sub><b>Nilesh Kumar</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=nilesh05apr" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ninfueng"><img src="https://avatars2.githubusercontent.com/u/28499769?v=4?s=100" width="100px;" alt="Ninnart Fuengfusin"/><br /><sub><b>Ninnart Fuengfusin</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ninfueng" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/NoaBenAmi"><img src="https://avatars.githubusercontent.com/u/37590002?v=4?s=100" width="100px;" alt="Noa Ben Ami"/><br /><sub><b>Noa Ben Ami</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=NoaBenAmi" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=NoaBenAmi" title="Tests">⚠️</a> <a href="https://github.com/sktime/sktime/commits?author=NoaBenAmi" title="Documentation">📖</a></td>
@@ -198,10 +200,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/kachayev"><img src="https://avatars.githubusercontent.com/u/485647?v=4?s=100" width="100px;" alt="Oleksii Kachaiev"/><br /><sub><b>Oleksii Kachaiev</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=kachayev" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=kachayev" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/olivermatthews"><img src="https://avatars.githubusercontent.com/u/31141490?v=4?s=100" width="100px;" alt="Oliver Matthews"/><br /><sub><b>Oliver Matthews</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=OliverMatthews" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/prockenschaub"><img src="https://avatars0.githubusercontent.com/u/15381732?v=4?s=100" width="100px;" alt="Patrick Rockenschaub"/><br /><sub><b>Patrick Rockenschaub</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=prockenschaub" title="Code">💻</a> <a href="#design-prockenschaub" title="Design">🎨</a> <a href="#ideas-prockenschaub" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/commits?author=prockenschaub" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="http://www2.informatik.hu-berlin.de/~schaefpa/"><img src="https://avatars0.githubusercontent.com/u/7783034?v=4?s=100" width="100px;" alt="Patrick Schäfer"/><br /><sub><b>Patrick Schäfer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=patrickzib" title="Code">💻</a> <a href="#tutorial-patrickzib" title="Tutorials">✅</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://ber.gp"><img src="https://avatars1.githubusercontent.com/u/9824244?v=4?s=100" width="100px;" alt="Paul"/><br /><sub><b>Paul</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Pangoraw" title="Documentation">📖</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="http://www2.informatik.hu-berlin.de/~schaefpa/"><img src="https://avatars0.githubusercontent.com/u/7783034?v=4?s=100" width="100px;" alt="Patrick Schäfer"/><br /><sub><b>Patrick Schäfer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=patrickzib" title="Code">💻</a> <a href="#tutorial-patrickzib" title="Tutorials">✅</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://ber.gp"><img src="https://avatars1.githubusercontent.com/u/9824244?v=4?s=100" width="100px;" alt="Paul"/><br /><sub><b>Paul</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Pangoraw" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/paulyim97/"><img src="https://avatars.githubusercontent.com/pyyim?s=100" width="100px;" alt="Paul Yim"/><br /><sub><b>Paul Yim</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=pyyim" title="Code">💻</a> <a href="#example-pyyim" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/commits?author=pyyim" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.imes.uni-hannover.de/de/institut/team/m-sc-karl-philipp-kortmann/"><img src="https://avatars.githubusercontent.com/u/20466981?v=4?s=100" width="100px;" alt="Philipp Kortmann"/><br /><sub><b>Philipp Kortmann</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=MrPr3ntice" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=MrPr3ntice" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Piyush1729"><img src="https://avatars2.githubusercontent.com/u/64950012?v=4?s=100" width="100px;" alt="Piyush Gade"/><br /><sub><b>Piyush Gade</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Piyush1729" title="Code">💻</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3APiyush1729" title="Reviewed Pull Requests">👀</a></td>
@@ -209,10 +211,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/pul95"><img src="https://avatars.githubusercontent.com/pul95?s=100" width="100px;" alt="Pulkit Verma"/><br /><sub><b>Pulkit Verma</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=pul95" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Quaterion"><img src="https://avatars2.githubusercontent.com/u/23200273?v=4?s=100" width="100px;" alt="Quaterion"/><br /><sub><b>Quaterion</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3AQuaterion" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/rakshitha123"><img src="https://avatars.githubusercontent.com/u/7654679?v=4?s=100" width="100px;" alt="Rakshitha Godahewa"/><br /><sub><b>Rakshitha Godahewa</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=rakshitha123" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=rakshitha123" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/Ram0nB"><img src="https://avatars.githubusercontent.com/u/45173421?s=100" width="100px;" alt="Ramon Bussing"/><br /><sub><b>Ramon Bussing</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Ram0nB" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=Ram0nB" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/RavenRudi"><img src="https://avatars.githubusercontent.com/u/46402968?v=4?s=100" width="100px;" alt="RavenRudi"/><br /><sub><b>RavenRudi</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=RavenRudi" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/Ram0nB"><img src="https://avatars.githubusercontent.com/u/45173421?s=100" width="100px;" alt="Ramon Bussing"/><br /><sub><b>Ramon Bussing</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Ram0nB" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=Ram0nB" title="Code">💻</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/RavenRudi"><img src="https://avatars.githubusercontent.com/u/46402968?v=4?s=100" width="100px;" alt="RavenRudi"/><br /><sub><b>RavenRudi</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=RavenRudi" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/wolph"><img src="?s=100" width="100px;" alt="Rick van Hattem"/><br /><sub><b>Rick van Hattem</b></sub></a><br /><a href="#infra-wolph" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Ris-Bali"><img src="https://avatars.githubusercontent.com/u/81592570?v=4?s=100" width="100px;" alt="Rishabh Bali"/><br /><sub><b>Rishabh Bali</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Ris-Bali" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/RishiKumarRay"><img src="https://avatars.githubusercontent.com/u/87641376?v=4?s=100" width="100px;" alt="Rishi Kumar Ray"/><br /><sub><b>Rishi Kumar Ray</b></sub></a><br /><a href="#infra-RishiKumarRay" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
@@ -220,10 +222,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/romanlutz/"><img src="https://avatars.githubusercontent.com/u/10245648?v=4?s=100" width="100px;" alt="Roman Lutz"/><br /><sub><b>Roman Lutz</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=romanlutz" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ronnie-llamado"><img src="https://avatars.githubusercontent.com/ronnie-llamado?s=100" width="100px;" alt="Ronnie Llamado"/><br /><sub><b>Ronnie Llamado</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ronnie-llamado" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/rnkuhns"><img src="https://avatars0.githubusercontent.com/u/26907244?v=4?s=100" width="100px;" alt="Ryan Kuhns"/><br /><sub><b>Ryan Kuhns</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=RNKuhns" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=RNKuhns" title="Documentation">📖</a> <a href="#tutorial-RNKuhns" title="Tutorials">✅</a> <a href="#example-RNKuhns" title="Examples">💡</a> <a href="#ideas-RNKuhns" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3ARNKuhns" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/sktime/sktime/commits?author=RNKuhns" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/achieveordie"><img src="https://avatars.githubusercontent.com/u/54197164?v=4?s=100" width="100px;" alt="Sagar Mishra"/><br /><sub><b>Sagar Mishra</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=achieveordie" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://sajay.online"><img src="https://avatars2.githubusercontent.com/u/25329624?v=4?s=100" width="100px;" alt="Sajaysurya Ganesh"/><br /><sub><b>Sajaysurya Ganesh</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Documentation">📖</a> <a href="#design-sajaysurya" title="Design">🎨</a> <a href="#example-sajaysurya" title="Examples">💡</a> <a href="#ideas-sajaysurya" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Tests">⚠️</a> <a href="#tutorial-sajaysurya" title="Tutorials">✅</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/achieveordie"><img src="https://avatars.githubusercontent.com/u/54197164?v=4?s=100" width="100px;" alt="Sagar Mishra"/><br /><sub><b>Sagar Mishra</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=achieveordie" title="Tests">⚠️</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://sajay.online"><img src="https://avatars2.githubusercontent.com/u/25329624?v=4?s=100" width="100px;" alt="Sajaysurya Ganesh"/><br /><sub><b>Sajaysurya Ganesh</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Documentation">📖</a> <a href="#design-sajaysurya" title="Design">🎨</a> <a href="#example-sajaysurya" title="Examples">💡</a> <a href="#ideas-sajaysurya" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/commits?author=sajaysurya" title="Tests">⚠️</a> <a href="#tutorial-sajaysurya" title="Tutorials">✅</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/SamiAlavi"><img src="https://avatars.githubusercontent.com/u/32700289?v=4?s=100" width="100px;" alt="Sami Alavi"/><br /><sub><b>Sami Alavi</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=SamiAlavi" title="Code">💻</a> <a href="#maintenance-SamiAlavi" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/Saransh-cpp"><img src="https://avatars.githubusercontent.com/u/74055102?v=4?s=100" width="100px;" alt="Saransh Chopra"/><br /><sub><b>Saransh Chopra</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=Saransh-cpp" title="Documentation">📖</a> <a href="#infra-Saransh-cpp" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/satya-pattnaik-77a430144/"><img src="https://avatars.githubusercontent.com/u/22102468?v=4?s=100" width="100px;" alt="Satya Prakash Pattnaik"/><br /><sub><b>Satya Prakash Pattnaik</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=satya-pattnaik" title="Documentation">📖</a></td>
@@ -231,10 +233,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/SebasKoel"><img src="https://avatars3.githubusercontent.com/u/66252156?v=4?s=100" width="100px;" alt="Sebastiaan Koel"/><br /><sub><b>Sebastiaan Koel</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=SebasKoel" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=SebasKoel" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/shagn"><img src="https://avatars.githubusercontent.com/u/16029092?v=4?s=100" width="100px;" alt="Sebastian Hagn"/><br /><sub><b>Sebastian Hagn</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=shagn" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ShivamPathak99"><img src="https://avatars.githubusercontent.com/u/98941325?s=400&v=4?s=100" width="100px;" alt="Shivam Pathak"/><br /><sub><b>Shivam Pathak</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ShivamPathak99" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/AurumnPegasus"><img src="https://avatars.githubusercontent.com/u/54315149?v=4?s=100" width="100px;" alt="Shivansh Subramanian"/><br /><sub><b>Shivansh Subramanian</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=AurumnPegasus" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=AurumnPegasus" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/solomon-botchway-a1383821b/"><img src="https://avatars.githubusercontent.com/u/62394255?v=4?s=100" width="100px;" alt="Solomon Botchway"/><br /><sub><b>Solomon Botchway</b></sub></a><br /><a href="#maintenance-snnbotchway" title="Maintenance">🚧</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/AurumnPegasus"><img src="https://avatars.githubusercontent.com/u/54315149?v=4?s=100" width="100px;" alt="Shivansh Subramanian"/><br /><sub><b>Shivansh Subramanian</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=AurumnPegasus" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=AurumnPegasus" title="Code">💻</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/solomon-botchway-a1383821b/"><img src="https://avatars.githubusercontent.com/u/62394255?v=4?s=100" width="100px;" alt="Solomon Botchway"/><br /><sub><b>Solomon Botchway</b></sub></a><br /><a href="#maintenance-snnbotchway" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/khrapovs"><img src="https://avatars.githubusercontent.com/u/3774663?v=4?s=100" width="100px;" alt="Stanislav Khrapov"/><br /><sub><b>Stanislav Khrapov</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=khrapovs" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/SveaMeyer13"><img src="https://avatars.githubusercontent.com/u/46671894?v=4?s=100" width="100px;" alt="Svea Marie Meyer"/><br /><sub><b>Svea Marie Meyer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=SveaMeyer13" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=SveaMeyer13" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/TNTran92"><img src="https://avatars.githubusercontent.com/u/55965636?v=4?s=100" width="100px;" alt="TNTran92"/><br /><sub><b>TNTran92</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=TNTran92" title="Code">💻</a></td>
@@ -242,10 +244,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://thayeylolu.github.io/portfolio/"><img src="https://avatars.githubusercontent.com/u/13348874?v=4?s=100" width="100px;" alt="Taiwo Owoseni"/><br /><sub><b>Taiwo Owoseni</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=thayeylolu" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/lnthach"><img src="https://avatars0.githubusercontent.com/u/7788363?v=4?s=100" width="100px;" alt="Thach Le Nguyen"/><br /><sub><b>Thach Le Nguyen</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=lnthach" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=lnthach" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/mathco-wf"><img src="https://avatars.githubusercontent.com/mathco-wf?s=100" width="100px;" alt="TheMathcompay Widget Factory Team"/><br /><sub><b>TheMathcompay Widget Factory Team</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=mathco-wf" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/tombh"><img src="https://avatars.githubusercontent.com/u/160835?s=80&v=4?s=100" width="100px;" alt="Thomas Buckley-Houston"/><br /><sub><b>Thomas Buckley-Houston</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Atombh" title="Bug reports">🐛</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/xxl4tomxu98"><img src="https://avatars.githubusercontent.com/u/62292177?s=40&v=4?s=100" width="100px;" alt="Tom Xu"/><br /><sub><b>Tom Xu</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=xxl4tomxu98" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=xxl4tomxu98" title="Documentation">📖</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/tombh"><img src="https://avatars.githubusercontent.com/u/160835?s=80&v=4?s=100" width="100px;" alt="Thomas Buckley-Houston"/><br /><sub><b>Thomas Buckley-Houston</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Atombh" title="Bug reports">🐛</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/xxl4tomxu98"><img src="https://avatars.githubusercontent.com/u/62292177?s=40&v=4?s=100" width="100px;" alt="Tom Xu"/><br /><sub><b>Tom Xu</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=xxl4tomxu98" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=xxl4tomxu98" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/tch"><img src="https://avatars3.githubusercontent.com/u/184076?v=4?s=100" width="100px;" alt="Tomasz Chodakowski"/><br /><sub><b>Tomasz Chodakowski</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=tch" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=tch" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Atch" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="http://www.timeseriesclassification.com"><img src="https://avatars1.githubusercontent.com/u/9594042?v=4?s=100" width="100px;" alt="Tony Bagnall"/><br /><sub><b>Tony Bagnall</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=TonyBagnall" title="Code">💻</a> <a href="#business-TonyBagnall" title="Business development">💼</a> <a href="https://github.com/sktime/sktime/commits?author=TonyBagnall" title="Documentation">📖</a> <a href="#design-TonyBagnall" title="Design">🎨</a> <a href="#eventOrganizing-TonyBagnall" title="Event Organizing">📋</a> <a href="#fundingFinding-TonyBagnall" title="Funding Finding">🔍</a> <a href="#ideas-TonyBagnall" title="Ideas, Planning, & Feedback">🤔</a> <a href="#projectManagement-TonyBagnall" title="Project Management">📆</a> <a href="#question-TonyBagnall" title="Answering Questions">💬</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3ATonyBagnall" title="Reviewed Pull Requests">👀</a> <a href="#talk-TonyBagnall" title="Talks">📢</a> <a href="#data-TonyBagnall" title="Data">🔣</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/utsavcoding"><img src="https://avatars3.githubusercontent.com/u/55446385?v=4?s=100" width="100px;" alt="Utsav Kumar Tiwari"/><br /><sub><b>Utsav Kumar Tiwari</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=utsavcoding" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=utsavcoding" title="Documentation">📖</a></td>
@@ -253,10 +255,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ViktorKaz"><img src="https://avatars0.githubusercontent.com/u/33499138?v=4?s=100" width="100px;" alt="ViktorKaz"/><br /><sub><b>ViktorKaz</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ViktorKaz" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=ViktorKaz" title="Documentation">📖</a> <a href="#design-ViktorKaz" title="Design">🎨</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/VyomkeshVyas"><img src="?s=100" width="100px;" alt="Vyomkesh Vyas"/><br /><sub><b>Vyomkesh Vyas</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=VyomkeshVyas" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=VyomkeshVyas" title="Documentation">📖</a> <a href="#example-VyomkeshVyas" title="Examples">💡</a> <a href="https://github.com/sktime/sktime/commits?author=VyomkeshVyas" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://www.linkedin.com/in/templierw/"><img src="https://github.com/templierw.png?s=100" width="100px;" alt="William Templier"/><br /><sub><b>William Templier</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=templierw" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/magittan"><img src="https://avatars0.githubusercontent.com/u/14024202?v=4?s=100" width="100px;" alt="William Zheng"/><br /><sub><b>William Zheng</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=magittan" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=magittan" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/yairbeer"><img src="https://avatars.githubusercontent.com/yairbeer?s=100" width="100px;" alt="Yair Beer"/><br /><sub><b>Yair Beer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=yairbeer" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/magittan"><img src="https://avatars0.githubusercontent.com/u/14024202?v=4?s=100" width="100px;" alt="William Zheng"/><br /><sub><b>William Zheng</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=magittan" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=magittan" title="Tests">⚠️</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/yairbeer"><img src="https://avatars.githubusercontent.com/yairbeer?s=100" width="100px;" alt="Yair Beer"/><br /><sub><b>Yair Beer</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=yairbeer" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/yashlamba"><img src="https://avatars.githubusercontent.com/u/44164398?v=4?s=100" width="100px;" alt="Yash Lamba"/><br /><sub><b>Yash Lamba</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=yashlamba" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/xuyxu"><img src="https://avatars2.githubusercontent.com/u/22359569?v=4?s=100" width="100px;" alt="Yi-Xuan Xu"/><br /><sub><b>Yi-Xuan Xu</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=xuyxu" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=xuyxu" title="Tests">⚠️</a> <a href="#maintenance-xuyxu" title="Maintenance">🚧</a> <a href="https://github.com/sktime/sktime/commits?author=xuyxu" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/ZiyaoWei"><img src="https://avatars.githubusercontent.com/u/940823?v=4?s=100" width="100px;" alt="Ziyao Wei"/><br /><sub><b>Ziyao Wei</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=ZiyaoWei" title="Code">💻</a></td>
@@ -264,10 +266,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/abandus"><img src="https://avatars2.githubusercontent.com/u/46486474?v=4?s=100" width="100px;" alt="abandus"/><br /><sub><b>abandus</b></sub></a><br /><a href="#ideas-abandus" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/commits?author=abandus" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/adoherty21"><img src="https://avatars.githubusercontent.com/u/52799751?s=400&v=4?s=100" width="100px;" alt="adoherty21"/><br /><sub><b>adoherty21</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Aadoherty21" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/bethrice44"><img src="https://avatars.githubusercontent.com/u/11226988?v=4?s=100" width="100px;" alt="bethrice44"/><br /><sub><b>bethrice44</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Abethrice44" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=bethrice44" title="Code">💻</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Abethrice44" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/sktime/sktime/commits?author=bethrice44" title="Tests">⚠️</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/big-o"><img src="https://avatars1.githubusercontent.com/u/1134151?v=4?s=100" width="100px;" alt="big-o"/><br /><sub><b>big-o</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=big-o" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=big-o" title="Tests">⚠️</a> <a href="#design-big-o" title="Design">🎨</a> <a href="#ideas-big-o" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Abig-o" title="Reviewed Pull Requests">👀</a> <a href="#tutorial-big-o" title="Tutorials">✅</a> <a href="#mentoring-big-o" title="Mentoring">🧑🏫</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/bobbys-dev"><img src="https://avatars.githubusercontent.com/bobbys-dev?s=100" width="100px;" alt="bobbys"/><br /><sub><b>bobbys</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=bobbys-dev" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/big-o"><img src="https://avatars1.githubusercontent.com/u/1134151?v=4?s=100" width="100px;" alt="big-o"/><br /><sub><b>big-o</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=big-o" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=big-o" title="Tests">⚠️</a> <a href="#design-big-o" title="Design">🎨</a> <a href="#ideas-big-o" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Abig-o" title="Reviewed Pull Requests">👀</a> <a href="#tutorial-big-o" title="Tutorials">✅</a> <a href="#mentoring-big-o" title="Mentoring">🧑🏫</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/bobbys-dev"><img src="https://avatars.githubusercontent.com/bobbys-dev?s=100" width="100px;" alt="bobbys"/><br /><sub><b>bobbys</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=bobbys-dev" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/brettkoonce"><img src="https://avatars2.githubusercontent.com/u/11281814?v=4?s=100" width="100px;" alt="brett koonce"/><br /><sub><b>brett koonce</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=brettkoonce" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/btrtts"><img src="https://avatars3.githubusercontent.com/u/66252156?v=4?s=100" width="100px;" alt="btrtts"/><br /><sub><b>btrtts</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=btrtts" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/chizzi25"><img src="https://avatars3.githubusercontent.com/u/67911243?v=4?s=100" width="100px;" alt="chizzi25"/><br /><sub><b>chizzi25</b></sub></a><br /><a href="#blog-chizzi25" title="Blogposts">📝</a></td>
@@ -275,10 +277,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/danbartl"><img src="https://avatars.githubusercontent.com/u/19947407?v=4?s=100" width="100px;" alt="danbartl"/><br /><sub><b>danbartl</b></sub></a><br /><a href="https://github.com/sktime/sktime/issues?q=author%3Adanbartl" title="Bug reports">🐛</a> <a href="https://github.com/sktime/sktime/commits?author=danbartl" title="Code">💻</a> <a href="https://github.com/sktime/sktime/pulls?q=is%3Apr+reviewed-by%3Adanbartl" title="Reviewed Pull Requests">👀</a> <a href="#talk-danbartl" title="Talks">📢</a> <a href="https://github.com/sktime/sktime/commits?author=danbartl" title="Tests">⚠️</a> <a href="#tutorial-danbartl" title="Tutorials">✅</a> <a href="#video-danbartl" title="Videos">📹</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/hamzahiqb"><img src="https://avatars3.githubusercontent.com/u/10302415?v=4?s=100" width="100px;" alt="hamzahiqb"/><br /><sub><b>hamzahiqb</b></sub></a><br /><a href="#infra-hamzahiqb" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/hiqbal2"><img src="https://avatars3.githubusercontent.com/u/10302415?v=4?s=100" width="100px;" alt="hiqbal2"/><br /><sub><b>hiqbal2</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=hiqbal2" title="Documentation">📖</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/jesellier"><img src="https://avatars0.githubusercontent.com/u/51952076?v=4?s=100" width="100px;" alt="jesellier"/><br /><sub><b>jesellier</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jesellier" title="Code">💻</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/jschemm"><img src="https://avatars.githubusercontent.com/u/81151346?v=4?s=100" width="100px;" alt="jschemm"/><br /><sub><b>jschemm</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jschemm" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/jesellier"><img src="https://avatars0.githubusercontent.com/u/51952076?v=4?s=100" width="100px;" alt="jesellier"/><br /><sub><b>jesellier</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jesellier" title="Code">💻</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/jschemm"><img src="https://avatars.githubusercontent.com/u/81151346?v=4?s=100" width="100px;" alt="jschemm"/><br /><sub><b>jschemm</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=jschemm" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/kkoziara"><img src="https://avatars1.githubusercontent.com/u/4346849?v=4?s=100" width="100px;" alt="kkoziara"/><br /><sub><b>kkoziara</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=kkoziara" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Akkoziara" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/matteogales"><img src="https://avatars0.githubusercontent.com/u/9269326?v=4?s=100" width="100px;" alt="matteogales"/><br /><sub><b>matteogales</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=matteogales" title="Code">💻</a> <a href="#design-matteogales" title="Design">🎨</a> <a href="#ideas-matteogales" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/oleskiewicz"><img src="https://avatars1.githubusercontent.com/u/5682158?v=4?s=100" width="100px;" alt="oleskiewicz"/><br /><sub><b>oleskiewicz</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=oleskiewicz" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=oleskiewicz" title="Documentation">📖</a> <a href="https://github.com/sktime/sktime/commits?author=oleskiewicz" title="Tests">⚠️</a></td>
@@ -286,10 +288,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="11.11%"><a href="https://github.com/xloem"><img src="?s=100" width="100px;" alt="patiently pending world peace"/><br /><sub><b>patiently pending world peace</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=xloem" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/raishubham1"><img src="https://avatars3.githubusercontent.com/u/29356417?v=4?s=100" width="100px;" alt="raishubham1"/><br /><sub><b>raishubham1</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=raishubham1" title="Documentation">📖</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/simone-pignotti"><img src="https://avatars1.githubusercontent.com/u/44410066?v=4?s=100" width="100px;" alt="simone-pignotti"/><br /><sub><b>simone-pignotti</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=simone-pignotti" title="Code">💻</a> <a href="https://github.com/sktime/sktime/issues?q=author%3Asimone-pignotti" title="Bug reports">🐛</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/sophijka"><img src="https://avatars2.githubusercontent.com/u/47450591?v=4?s=100" width="100px;" alt="sophijka"/><br /><sub><b>sophijka</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sophijka" title="Documentation">📖</a> <a href="#maintenance-sophijka" title="Maintenance">🚧</a></td>
- <td align="center" valign="top" width="11.11%"><a href="https://github.com/sri1419"><img src="https://avatars2.githubusercontent.com/u/65078278?v=4?s=100" width="100px;" alt="sri1419"/><br /><sub><b>sri1419</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sri1419" title="Code">💻</a></td>
</tr>
<tr>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/sophijka"><img src="https://avatars2.githubusercontent.com/u/47450591?v=4?s=100" width="100px;" alt="sophijka"/><br /><sub><b>sophijka</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sophijka" title="Documentation">📖</a> <a href="#maintenance-sophijka" title="Maintenance">🚧</a></td>
+ <td align="center" valign="top" width="11.11%"><a href="https://github.com/sri1419"><img src="https://avatars2.githubusercontent.com/u/65078278?v=4?s=100" width="100px;" alt="sri1419"/><br /><sub><b>sri1419</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=sri1419" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/tensorflow-as-tf"><img src="https://avatars.githubusercontent.com/u/51345718?v=4?s=100" width="100px;" alt="tensorflow-as-tf"/><br /><sub><b>tensorflow-as-tf</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=tensorflow-as-tf" title="Code">💻</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/vedazeren"><img src="https://avatars3.githubusercontent.com/u/63582874?v=4?s=100" width="100px;" alt="vedazeren"/><br /><sub><b>vedazeren</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=vedazeren" title="Code">💻</a> <a href="https://github.com/sktime/sktime/commits?author=vedazeren" title="Tests">⚠️</a></td>
<td align="center" valign="top" width="11.11%"><a href="https://github.com/vincent-nich12"><img src="https://avatars3.githubusercontent.com/u/36476633?v=4?s=100" width="100px;" alt="vincent-nich12"/><br /><sub><b>vincent-nich12</b></sub></a><br /><a href="https://github.com/sktime/sktime/commits?author=vincent-nich12" title="Code">💻</a></td>
diff --git a/sktime/dists_kernels/base/adapters/_tslearn.py b/sktime/dists_kernels/base/adapters/_tslearn.py
index 2952c658a74..9cbfa0c6608 100644
--- a/sktime/dists_kernels/base/adapters/_tslearn.py
+++ b/sktime/dists_kernels/base/adapters/_tslearn.py
@@ -140,4 +140,7 @@ def _transform(self, X, X2=None):
if isinstance(X2, list):
X2 = self._coerce_df_list_to_list_of_arr(X2)
- return self._eval_tslearn_pwtrafo(X, X2)
+ if self._is_cdist:
+ return self._eval_tslearn_pwtrafo(X, X2)
+ else:
+ return self._eval_tslearn_pwtrafo_vectorized(X, X2)
|
spacetelescope__jwql-421 | Add README to style_guide directory
We are starting to have a range of helpful documents in our `jwql/style_guide` directory - the general style guide. This is great!
I am thinking it would now be helpful to include a `README.md` file in there, so that any prospective user who looks there is met with some information about what resources are available.
| [
{
"content": "#! /usr/bin/env python\n\n\"\"\"\nThis module is intended to be a template to aid in creating new\nmonitoring scripts and to demonstrate how to format them to fully\nutilize the ``jwql`` framework.\n\nEach monitoring script must be executable from the command line (i.e.\nhave a ``if '__name__' == ... | [
{
"content": "#! /usr/bin/env python\n\n\"\"\"\nThis module is intended to be a template to aid in creating new\nmonitoring scripts and to demonstrate how to format them to fully\nutilize the ``jwql`` framework.\n\nEach monitoring script must be executable from the command line (i.e.\nhave a ``if '__name__' == ... | diff --git a/.pep8speaks.yml b/.pep8speaks.yml
index 146120ea3..d6a129ad9 100644
--- a/.pep8speaks.yml
+++ b/.pep8speaks.yml
@@ -4,7 +4,7 @@ message: # Customize the comment made by the bot
opened: # Messages when a new PR is submitted
header: "Hello @{name}, Thank you for submitting the Pull Request !"
# The keyword {name} is converted into the author's username
- footer: "If you have not done so, please consult the [`jwql` Style Guide](https://github.com/spacetelescope/jwql/blob/master/style_guide/style_guide.md)"
+ footer: "If you have not done so, please consult the [`jwql` Style Guide](https://github.com/spacetelescope/jwql/blob/master/style_guide/README.md)"
# The messages can be written as they would over GitHub
updated: # Messages when new commits are added to the PR
header: "Hello @{name}, Thank you for updating !"
diff --git a/README.md b/README.md
index db25081f4..e03cd513c 100644
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ Much of the `jwql` software depends on the existence of a `config.json` file wit
## Software Contributions
-There are two current pages to review before you begin contributing to the `jwql` development. The first is our [style guide](https://github.com/spacetelescope/jwql/blob/master/style_guide/style_guide.md) and the second is our [suggested git workflow page](https://github.com/spacetelescope/jwql/wiki/git-&-GitHub-workflow-for-contributing), which contains an in-depth explanation of the workflow.
+There are two current pages to review before you begin contributing to the `jwql` development. The first is our [style guide](https://github.com/spacetelescope/jwql/blob/master/style_guide/README.md) and the second is our [suggested git workflow page](https://github.com/spacetelescope/jwql/wiki/git-&-GitHub-workflow-for-contributing), which contains an in-depth explanation of the workflow.
Contributors are also encouraged to check out the [Checklist for Contributors Guide](https://github.com/spacetelescope/jwql/wiki/Checklist-for-Contributors-and-Reviewers-of-Pull-Requests) to ensure the pull request contains all of the necessary changes.
diff --git a/jwql/utils/monitor_template.py b/jwql/utils/monitor_template.py
index aa443ff9f..ae6d46d9a 100644
--- a/jwql/utils/monitor_template.py
+++ b/jwql/utils/monitor_template.py
@@ -46,7 +46,7 @@
Any monitoring script written for ``jwql`` must adhere to the
``jwql`` style guide located at:
- https://github.com/spacetelescope/jwql/blob/master/style_guide/style_guide.md
+ https://github.com/spacetelescope/jwql/blob/master/style_guide/README.md
"""
import os
diff --git a/style_guide/style_guide.md b/style_guide/README.md
similarity index 100%
rename from style_guide/style_guide.md
rename to style_guide/README.md
|
voxel51__fiftyone-3439 | [BUG] Fiftyone v0.21.6 localhost Not found, while v0.21.4 Could not connect session, despite working before 7Aug23
### System information
- **OS Platform and Distribution** (`Windows 11 Pro, build 22621.2134`)
- **Google Chrome** (`Version 115.0.5790.171 (Official Build) (64-bit)`)
- **Python version** (`python --version 3.10.0`)
- **FiftyOne version** (`fiftyone --version 0.21.4`)
- **FiftyOne installed from** (`pip`)
### Commands to reproduce
I have my own custom Python script (including option to run fiftyone's quickstart) working for weeks at least until 7 Aug 2023. I'm unable to share the custom scripts.
Today (17 Aug 2023), as I run through installing fiftyone and running my scripts, I encounter the following problems.
I had a few updates to Google Chrome browser in these 10 days too.
### Describe the problem
Here's what i've tried.
Scenario A: fiftyone v0.21.6
Problem: `App launched. Point your browser to http://localhost:5151`. But unable to load App page at localhost 5151 ("Not found" displayed on page)
Solutions tried but did not work: [Registry settings](https://github.com/voxel51/fiftyone/issues/2010) and/or [mimetype](https://github.com/voxel51/fiftyone/issues/2522#issuecomment-1416318362)
Scenario B: fiftyone v0.21.4
Problem: unable to fully display the App (it only shows the fiftyone skeleton page with "Select Dataset", and no layout and data in the middle). The terminal repeatedly gives `could not connect session, retrying in 10 seconds`.
I'm unsure what is the cause to the above and would appreciate your assistance.
### What areas of FiftyOne does this bug affect?
- [x] `App`: FiftyOne application issue
- [ ] `Core`: Core Python library issue
- [ ] `Server`: FiftyOne server issue
### Willingness to contribute
The FiftyOne Community encourages bug fix contributions. Would you or another member of your organization be willing to contribute a fix for this bug to the FiftyOne codebase?
- [ ] Yes. I can contribute a fix for this bug independently
- [ ] Yes. I would be willing to contribute a fix for this bug with guidance from the FiftyOne community
- [x] No. I cannot contribute a bug fix at this time
| [
{
"content": "\"\"\"\nFiftyOne Server app.\n\n| Copyright 2017-2023, Voxel51, Inc.\n| `voxel51.com <https://voxel51.com/>`_\n|\n\"\"\"\nfrom datetime import date, datetime\nimport os\nimport pathlib\n\nimport eta.core.utils as etau\nfrom starlette.applications import Starlette\nfrom starlette.middleware import ... | [
{
"content": "\"\"\"\nFiftyOne Server app.\n\n| Copyright 2017-2023, Voxel51, Inc.\n| `voxel51.com <https://voxel51.com/>`_\n|\n\"\"\"\nfrom datetime import date, datetime\nimport os\nimport pathlib\n\nimport eta.core.utils as etau\nfrom starlette.applications import Starlette\nfrom starlette.middleware import ... | diff --git a/fiftyone/server/app.py b/fiftyone/server/app.py
index 9c38331d843..8af626b0073 100644
--- a/fiftyone/server/app.py
+++ b/fiftyone/server/app.py
@@ -112,7 +112,6 @@ async def dispatch(
app=Static(
directory=os.path.join(os.path.dirname(__file__), "static"),
html=True,
- follow_symlink=True,
),
name="static",
),
|
City-of-Helsinki__linkedevents-130 | Add short description in kulke importer
| [
{
"content": "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\nimport os\nimport re\nimport functools\nfrom lxml import etree\nfrom modeltranslation.translator import translator\nimport dateutil\nfrom pytz import timezone\nfrom django.conf import settings\nfrom django.utils.timezone import get_... | [
{
"content": "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\nimport os\nimport re\nimport functools\nfrom lxml import etree\nfrom modeltranslation.translator import translator\nimport dateutil\nfrom pytz import timezone\nfrom django.conf import settings\nfrom django.utils.timezone import get_... | diff --git a/events/importer/kulke.py b/events/importer/kulke.py
index 458485b2e..bc3e86fa5 100644
--- a/events/importer/kulke.py
+++ b/events/importer/kulke.py
@@ -298,6 +298,7 @@ def clean(t):
description = ''
if caption:
description += caption
+ event['short_description'][lang] = caption
if caption and bodytext:
description += "\n\n"
if bodytext:
|
sql-machine-learning__elasticdl-532 | Fix logging issue
Currently, the logging is not working as intended. E.g. the formatting was ignored for WARNING and INFO log are not printed out.
| [
{
"content": "import logging\nimport time\nimport argparse\nimport os\nimport recordio\n\nimport grpc\nimport tensorflow as tf\n\ntf.enable_eager_execution()\n\nfrom contextlib import closing\nfrom concurrent import futures\nfrom elasticdl.proto import elasticdl_pb2_grpc\nfrom elasticdl.python.elasticdl.master.... | [
{
"content": "import logging\nimport time\nimport argparse\nimport os\nimport recordio\n\nimport grpc\nimport tensorflow as tf\n\ntf.enable_eager_execution()\n\nfrom contextlib import closing\nfrom concurrent import futures\nfrom elasticdl.proto import elasticdl_pb2_grpc\nfrom elasticdl.python.elasticdl.master.... | diff --git a/elasticdl/python/elasticdl/master/main.py b/elasticdl/python/elasticdl/master/main.py
index 3cc388df8..9e5cc153b 100644
--- a/elasticdl/python/elasticdl/master/main.py
+++ b/elasticdl/python/elasticdl/master/main.py
@@ -157,7 +157,9 @@ def main():
"--master_addr",
master_addr,
"--codec_type",
- args.codec_type
+ args.codec_type,
+ "--log_level",
+ args.log_level
]
worker_manager = WorkerManager(
|
WeblateOrg__weblate-4665 | migrations fail for database name containing "-"
**Describe the bug**
Applying memory.0007_use_trigram...Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
psycopg2.errors.SyntaxError: syntax error at or near "-"
LINE 1: ALTER DATABASE weblate-staging SET pg_trgm.similarity_thresh...
^
**To Reproduce**
Set the database name to "weblate-staging"
I worked around this by changing of
ALTER DATABASE {} SET
to
ALTER DATABASE \"{}\" SET
in 0007_use_trigram.py and 0008_adjust_similarity.py.
weblate-4.1.1
| [
{
"content": "# Generated by Django 3.0.5 on 2020-05-12 11:44\n\nfrom django.db import migrations\n\n\ndef update_index(apps, schema_editor):\n if schema_editor.connection.vendor != \"postgresql\":\n return\n # This ensures that extensions are loaded into the session. Without that\n # the next A... | [
{
"content": "# Generated by Django 3.0.5 on 2020-05-12 11:44\n\nfrom django.db import migrations\n\n\ndef update_index(apps, schema_editor):\n if schema_editor.connection.vendor != \"postgresql\":\n return\n # This ensures that extensions are loaded into the session. Without that\n # the next A... | diff --git a/weblate/memory/migrations/0008_adjust_similarity.py b/weblate/memory/migrations/0008_adjust_similarity.py
index 1cb119c0a701..fd125cca4090 100644
--- a/weblate/memory/migrations/0008_adjust_similarity.py
+++ b/weblate/memory/migrations/0008_adjust_similarity.py
@@ -15,7 +15,7 @@ def update_index(apps, schema_editor):
schema_editor.execute(
"ALTER ROLE {} SET pg_trgm.similarity_threshold = 0.5".format(
- schema_editor.connection.settings_dict["USER"]
+ schema_editor.quote_name(schema_editor.connection.settings_dict["USER"])
)
)
|
wright-group__WrightTools-552 | setter for null
Currently null is not settable on a channel
It can be worked around with `channel.attrs['null']`
| [
{
"content": "\"\"\"Channel class and associated.\"\"\"\n\n\n# --- import --------------------------------------------------------------------------------------\n\n\nimport numpy as np\n\nimport h5py\n\nfrom .. import kit as wt_kit\nfrom .._dataset import Dataset\n\n\n# --- class -------------------------------... | [
{
"content": "\"\"\"Channel class and associated.\"\"\"\n\n\n# --- import --------------------------------------------------------------------------------------\n\n\nimport numpy as np\n\nimport h5py\n\nfrom .. import kit as wt_kit\nfrom .._dataset import Dataset\n\n\n# --- class -------------------------------... | diff --git a/WrightTools/data/_channel.py b/WrightTools/data/_channel.py
index 5302ada5b..f5f32892c 100644
--- a/WrightTools/data/_channel.py
+++ b/WrightTools/data/_channel.py
@@ -93,6 +93,10 @@ def null(self):
self.attrs['null'] = 0
return self.attrs['null']
+ @null.setter
+ def null(self, value):
+ self.attrs['null'] = value
+
@property
def major_extent(self):
"""Maximum deviation from null."""
diff --git a/tests/data/channel/null.py b/tests/data/channel/null.py
new file mode 100644
index 000000000..b45ca661e
--- /dev/null
+++ b/tests/data/channel/null.py
@@ -0,0 +1,28 @@
+"""Tests to do with null."""
+
+
+# --- import --------------------------------------------------------------------------------------
+
+
+import WrightTools as wt
+
+from WrightTools import datasets
+
+
+# --- test ----------------------------------------------------------------------------------------
+
+
+def test_setter():
+ p = datasets.BrunoldrRaman.LDS821_514nm_80mW
+ data = wt.data.from_BrunoldrRaman(p)
+ assert data.signal.null == 0
+ data.signal.null = 5
+ assert data.signal.null == 5
+ data.close()
+
+
+# --- run -----------------------------------------------------------------------------------------
+
+
+if __name__ == '__main__':
+ test_setter()
|
encode__uvicorn-943 | Docs: workers = 1 when WEB_CONCURRENCY is not set
Hello, thanks for this great ASGI server 🙂
I have an application that must use only one worker (it's not thread-safe), and so I wanted to confirm that, by default, uvicorn only uses one worker. But I had to read the source code
https://github.com/encode/uvicorn/blob/afb2d565c8dae859bcef4c76b3c6dc3f3077314d/uvicorn/config.py#L177
...to confirm that when `WEB_CONCURRENCY` is not defined, and `workers` is not specified, 1 is used.
Would you accept a PR adding that information to the docs (there are 4-5 places where this can be added)?
| [
{
"content": "import logging\nimport platform\nimport ssl\nimport sys\nimport typing\n\nimport click\n\nimport uvicorn\nfrom uvicorn.config import (\n HTTP_PROTOCOLS,\n INTERFACES,\n LIFESPAN,\n LOG_LEVELS,\n LOGGING_CONFIG,\n LOOP_SETUPS,\n SSL_PROTOCOL_VERSION,\n WS_PROTOCOLS,\n Con... | [
{
"content": "import logging\nimport platform\nimport ssl\nimport sys\nimport typing\n\nimport click\n\nimport uvicorn\nfrom uvicorn.config import (\n HTTP_PROTOCOLS,\n INTERFACES,\n LIFESPAN,\n LOG_LEVELS,\n LOGGING_CONFIG,\n LOOP_SETUPS,\n SSL_PROTOCOL_VERSION,\n WS_PROTOCOLS,\n Con... | diff --git a/docs/deployment.md b/docs/deployment.md
index cec0d8ef8..8aabe1b18 100644
--- a/docs/deployment.md
+++ b/docs/deployment.md
@@ -45,7 +45,7 @@ Options:
--workers INTEGER Number of worker processes. Defaults to the
$WEB_CONCURRENCY environment variable if
- available. Not valid with --reload.
+ available, or 1. Not valid with --reload.
--loop [auto|asyncio|uvloop] Event loop implementation. [default: auto]
--http [auto|h11|httptools] HTTP protocol implementation. [default:
diff --git a/docs/index.md b/docs/index.md
index be1a096ca..ae587f2ee 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -115,7 +115,7 @@ Options:
--workers INTEGER Number of worker processes. Defaults to the
$WEB_CONCURRENCY environment variable if
- available. Not valid with --reload.
+ available, or 1. Not valid with --reload.
--loop [auto|asyncio|uvloop] Event loop implementation. [default: auto]
--http [auto|h11|httptools] HTTP protocol implementation. [default:
diff --git a/docs/settings.md b/docs/settings.md
index 2a717ab93..8b8398f83 100644
--- a/docs/settings.md
+++ b/docs/settings.md
@@ -24,7 +24,7 @@ equivalent keyword arguments, eg. `uvicorn.run("example:app", port=5000, reload=
## Production
-* `--workers <int>` - Use multiple worker processes. Defaults to the value of the `$WEB_CONCURRENCY` environment variable.
+* `--workers <int>` - Use multiple worker processes. Defaults to the `$WEB_CONCURRENCY` environment variable if available, or 1.
## Logging
diff --git a/uvicorn/main.py b/uvicorn/main.py
index 6bfc631f0..d7e866ec4 100644
--- a/uvicorn/main.py
+++ b/uvicorn/main.py
@@ -90,7 +90,7 @@ def print_version(ctx, param, value):
default=None,
type=int,
help="Number of worker processes. Defaults to the $WEB_CONCURRENCY environment"
- " variable if available. Not valid with --reload.",
+ " variable if available, or 1. Not valid with --reload.",
)
@click.option(
"--loop",
|
plotly__dash-2175 | [BUG] NoUpdate.is_no_update can't handle ndarray
**Describe your context**
currently running project using dash for data display, callbacks pass ndarrays of certain sections of data to view
```
dash 2.6.0
dash-bootstrap-components 1.2.0
dash-core-components 2.0.0
dash-daq 0.5.0
dash-extensions 0.1.5
dash-html-components 2.0.0
dash-table 5.0.0
```
**Describe the bug**
if callback passes an ndarray, NoUpdate.is_no_update on line 441 of _callback.py raises a ValueError, this issue was not seen in previous versions.
```
[2022-07-31 16:27:03,570] ERROR in app: Exception on /_dash-update-component [POST]
Traceback (most recent call last):
File "...\venv\lib\site-packages\flask\app.py", line 2077, in wsgi_app
response = self.full_dispatch_request()
File "...\venv\lib\site-packages\flask\app.py", line 1525, in full_dispatch_request
rv = self.handle_user_exception(e)
File "...\venv\lib\site-packages\flask\app.py", line 1523, in full_dispatch_request
rv = self.dispatch_request()
File "...\venv\lib\site-packages\flask\app.py", line 1509, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**req.view_args)
File "...\venv\lib\site-packages\dash\dash.py", line 1260, in dispatch
ctx.run(
File "...\venv\lib\site-packages\dash\_callback.py", line 441, in add_context
if NoUpdate.is_no_update(output_value):
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
```
Workaround for this is wrapping ndarray with list, like this:
```
return [myndArr]
```
| [
{
"content": "import collections\nfrom functools import wraps\n\nimport flask\n\nfrom .dependencies import (\n handle_callback_args,\n handle_grouped_callback_args,\n Output,\n)\nfrom .exceptions import (\n PreventUpdate,\n WildcardInLongCallback,\n DuplicateCallback,\n MissingLongCallbackM... | [
{
"content": "import collections\nfrom functools import wraps\n\nimport flask\n\nfrom .dependencies import (\n handle_callback_args,\n handle_grouped_callback_args,\n Output,\n)\nfrom .exceptions import (\n PreventUpdate,\n WildcardInLongCallback,\n DuplicateCallback,\n MissingLongCallbackM... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1a73465b95..ae4c6516dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## [UNRELEASED]
+### Fixed
+
+- [#2175](https://github.com/plotly/dash/pull/2175) Fix [#2173](https://github.com/plotly/dash/issues/2173) callback output of ndarray and no_update check.
- [#2146](https://github.com/plotly/dash/pull/2146) Remove leftover debug console.log statement.
- [#2168](https://github.com/plotly/dash/pull/2168) Reverts [#2126](https://github.com/plotly/dash/pull/2126) (supporting redirect from root when using pages) until the new bugs introduced by that PR are fixed.
diff --git a/dash/_callback.py b/dash/_callback.py
index 6f48ca63c1..b23f14c6c3 100644
--- a/dash/_callback.py
+++ b/dash/_callback.py
@@ -40,9 +40,9 @@ def to_plotly_json(self): # pylint: disable=no-self-use
@staticmethod
def is_no_update(obj):
- return isinstance(obj, NoUpdate) or obj == {
- "_dash_no_update": "_dash_no_update"
- }
+ return isinstance(obj, NoUpdate) or (
+ isinstance(obj, dict) and obj == {"_dash_no_update": "_dash_no_update"}
+ )
GLOBAL_CALLBACK_LIST = []
diff --git a/tests/integration/callbacks/test_basic_callback.py b/tests/integration/callbacks/test_basic_callback.py
index bd1cb479bf..709122dc6b 100644
--- a/tests/integration/callbacks/test_basic_callback.py
+++ b/tests/integration/callbacks/test_basic_callback.py
@@ -4,6 +4,7 @@
import pytest
import time
+import numpy as np
import werkzeug
from dash_test_components import (
@@ -765,3 +766,19 @@ def update_output(value):
return f"returning {value}"
assert update_output("my-value") == "returning my-value"
+
+
+def test_cbsc018_callback_ndarray_output(dash_duo):
+ app = Dash(__name__)
+ app.layout = html.Div([dcc.Store(id="output"), html.Button("click", id="clicker")])
+
+ @app.callback(
+ Output("output", "data"),
+ Input("clicker", "n_clicks"),
+ )
+ def on_click(_):
+ return np.array([[1, 2, 3], [4, 5, 6]], np.int32)
+
+ dash_duo.start_server(app)
+
+ assert dash_duo.get_logs() == []
|
wright-group__WrightTools-878 | pcov TypeError in kit._leastsq
In kit._leastsq, if the line 62 if statement is not passed, the consequent else statement makes pcov data type float, triggering"TypeError: 'int' object is not subscriptable" in line 72-73:
72: try:
73: error.append(np.absolute(pcov[i][i]) ** 0.5)
Line 74 picks up index out of bound errors, not sure if it was meant to catch the type error.
74: except IndexError:
75: error.append(0.00)
Error is bypassed if I put a 2D array into line 68, but have not spent the time considering what this array should look like.
| [
{
"content": "\"\"\"Least-square fitting tools.\"\"\"\n\n\n# --- import --------------------------------------------------------------------------------------\n\n\nfrom ._utilities import Timer\n\nimport numpy as np\n\nfrom scipy import optimize as scipy_optimize\n\n\n# --- define ------------------------------... | [
{
"content": "\"\"\"Least-square fitting tools.\"\"\"\n\n\n# --- import --------------------------------------------------------------------------------------\n\n\nfrom ._utilities import Timer\n\nimport numpy as np\n\nfrom scipy import optimize as scipy_optimize\n\n\n# --- define ------------------------------... | diff --git a/WrightTools/kit/_leastsq.py b/WrightTools/kit/_leastsq.py
index 1c9393579..d448ba367 100644
--- a/WrightTools/kit/_leastsq.py
+++ b/WrightTools/kit/_leastsq.py
@@ -65,7 +65,7 @@ def errfunc(p, x, y):
if cov_verbose:
print(pcov)
else:
- pcov = np.inf
+ pcov = np.array(np.inf)
# calculate and write errors
error = []
for i in range(len(pfit_leastsq)):
diff --git a/tests/kit/leastsqfitter.py b/tests/kit/leastsqfitter.py
new file mode 100644
index 000000000..184eaba2b
--- /dev/null
+++ b/tests/kit/leastsqfitter.py
@@ -0,0 +1,19 @@
+import numpy as np
+import WrightTools as wt
+
+
+def test_leastsq():
+ x = np.linspace(0, 10)
+ y = np.linspace(10, 0)
+ fit, cov = wt.kit.leastsqfitter([0, 0], x, y, lambda p, x: p[0] * x + p[1])
+ assert np.allclose(fit, [-1, 10])
+ assert np.allclose(cov, [0, 0])
+
+
+def test_leastsq_no_corr():
+ x = np.linspace(0, 10)
+ y = np.linspace(10, 0)
+ # The third parameter does not determine output, this caused an exception in wt <= 3.2.1
+ fit, cov = wt.kit.leastsqfitter([0, 0, 0], x, y, lambda p, x: p[0] * x + p[1])
+ assert np.allclose(fit, [-1, 10, 0])
+ assert np.allclose(cov, [0, 0, 0])
|
spacetelescope__jwql-569 | Write tests for bokeh templating software
With the merge of #459, bokeh templating will be implemented for `jwql`. We should address the test coverage for this software.
| [
{
"content": "\"\"\"\nThis is a minimal example demonstrating how to create a Bokeh app using\nthe ``bokeh-templating`` package and the associated YAML template files.\n\nAuthor\n-------\n\n - Graham Kanarek\n\nDependencies\n------------\n\n The user must have PyYAML, Bokeh, and the ``bokeh-templating``\n... | [
{
"content": "\"\"\"\nThis is a minimal example demonstrating how to create a Bokeh app using\nthe ``bokeh-templating`` package and the associated YAML template files.\n\nAuthor\n-------\n\n - Graham Kanarek\n\nDependencies\n------------\n\n The user must have PyYAML, Bokeh, and the ``bokeh-templating``\n... | diff --git a/jwql/bokeh_templating/example/example_interface.yaml b/jwql/bokeh_templating/example/example_interface.yaml
index 7e6a32e3e..4aec297c7 100644
--- a/jwql/bokeh_templating/example/example_interface.yaml
+++ b/jwql/bokeh_templating/example/example_interface.yaml
@@ -1,24 +1,15 @@
-- !ColumnDataSource: &dummy # This is a dummy ColumnDataSource used to trigger the controller method whenever a slider is changed.
- data:
- value: []
- on_change: ['data', !self.controller ]
-- !CustomJS: &callback # This callback changes the value of the dummy ColumnDataSource data to trigger the controller method.
- ref: "callback"
- args:
- source: *dummy
- code: "\n source.data = { value: [cb_obj.value] }\n"
- !Slider: &a_slider # a slider for the a value
ref: "a_slider"
title: "A"
value: 4
range: !!python/tuple [1, 20, 0.1]
- callback: *callback
+ on_change: ['value', !self.controller ]
- !Slider: &b_slider # a slider for the b value
ref: "b_slider"
title: "B"
value: 2
range: !!python/tuple [1, 20, 0.1]
- callback: *callback
+ on_change: ['value', !self.controller ]
- !ColumnDataSource: &figure_source # the ColumnDataSource for the figure
ref: "figure_source"
data:
diff --git a/jwql/bokeh_templating/example/main.py b/jwql/bokeh_templating/example/main.py
index 3aa0ac856..770b4d4c3 100644
--- a/jwql/bokeh_templating/example/main.py
+++ b/jwql/bokeh_templating/example/main.py
@@ -24,6 +24,8 @@
class TestBokehApp(BokehTemplate):
"""This is a minimal ``BokehTemplate`` app."""
+
+ _embed = True
def pre_init(self):
"""Before creating the Bokeh interface (by parsing the interface
diff --git a/jwql/tests/test_bokeh_templating.py b/jwql/tests/test_bokeh_templating.py
new file mode 100644
index 000000000..c513f9e10
--- /dev/null
+++ b/jwql/tests/test_bokeh_templating.py
@@ -0,0 +1,62 @@
+"""Tests for the ``bokeh_templating`` module.
+Authors
+-------
+ - Graham Kanarek
+Use
+---
+ These tests can be run via the command line (omit the -s to
+ suppress verbose output to stdout):
+ ::
+ pytest -s test_bokeh_templating.py
+"""
+
+import os
+import numpy as np
+from jwql.bokeh_templating import BokehTemplate
+file_dir = os.path.dirname(os.path.realpath(__file__))
+
+
+class TestTemplate(BokehTemplate):
+ """
+ A minimal BokehTemplate app for testing purposes. This is adapted from
+ the example included in the ``bokeh_template`` package.
+ """
+
+ _embed = True
+
+ def pre_init(self):
+ """
+ Before creating the Bokeh interface (by parsing the interface
+ file), we must initialize our ``a`` and ``b`` variables, and set
+ the path to the interface file.
+ """
+
+ self.a, self.b = 4, 2
+
+ self.format_string = None
+ self.interface_file = os.path.join(file_dir, "test_bokeh_tempating_interface.yaml")
+
+ # No post-initialization tasks are required.
+ post_init = None
+
+ @property
+ def x(self):
+ """The x-value of the Lissajous curves."""
+ return 4. * np.sin(self.a * np.linspace(0, 2 * np.pi, 500))
+
+ @property
+ def y(self):
+ """The y-value of the Lissajous curves."""
+ return 3. * np.sin(self.b * np.linspace(0, 2 * np.pi, 500))
+
+ def controller(self, attr, old, new):
+ """
+ This is the controller function which is used to update the
+ curves when the sliders are adjusted. Note the use of the
+ ``self.refs`` dictionary for accessing the Bokeh object
+ attributes.
+ """
+ self.a = self.refs["a_slider"].value
+ self.b = self.refs["b_slider"].value
+
+ self.refs["figure_source"].data = {'x': self.x, 'y': self.y}
diff --git a/jwql/tests/test_bokeh_templating_interface.yaml b/jwql/tests/test_bokeh_templating_interface.yaml
new file mode 100644
index 000000000..4aec297c7
--- /dev/null
+++ b/jwql/tests/test_bokeh_templating_interface.yaml
@@ -0,0 +1,26 @@
+- !Slider: &a_slider # a slider for the a value
+ ref: "a_slider"
+ title: "A"
+ value: 4
+ range: !!python/tuple [1, 20, 0.1]
+ on_change: ['value', !self.controller ]
+- !Slider: &b_slider # a slider for the b value
+ ref: "b_slider"
+ title: "B"
+ value: 2
+ range: !!python/tuple [1, 20, 0.1]
+ on_change: ['value', !self.controller ]
+- !ColumnDataSource: &figure_source # the ColumnDataSource for the figure
+ ref: "figure_source"
+ data:
+ x: !self.x
+ y: !self.y
+- !Figure: &the_figure # the Figure itself, which includes a single line element.
+ ref: 'the_figure'
+ elements:
+ - {'kind': 'line', 'source': *figure_source, 'line_color': 'orange', 'line_width': 2}
+- !Document: # the Bokeh document layout: a single column with the figure and two sliders
+ - !column:
+ - *the_figure # note the use of YAML anchors to add the Bokeh objects to the Document layout directly.
+ - *a_slider
+ - *b_slider
\ No newline at end of file
|
scipy__scipy-10353 | BUG: interpolate.NearestNDInterpolator with pandas
interpolate.NearestNDInterpolator does not work as expected when used with selected pandas dataframe.
This is due to the index being maintained when making selections in pandas.
### Reproducing code example:
```
import numpy as np
import pandas as pd
from scipy import interpolate
df = pd.DataFrame(np.array([[0, 0, 0, 0, 1, 0, 1],
[0, 0, 0, 0, 0, 1, 1],
[0, 0, 0, 0, 1, 1, 2]]).T, columns=['x', 'y', 'z'])
df_select = df[3:]
NI = interpolate.NearestNDInterpolator((df_select.x, df_select.y), df_select.z)
print(NI([0.1, 0.9], [0.1, 0.9]))
```
I expect [0, 2] to be output.
But output is [Nan, 0] as pandas.Series.
This is due to the index being maintained when making selections in pandas.
Specifically, `df_select.z` has index[3, 4, 5, 6].
But, self.tree.query (xi) line 81, in scipy/interpolate/ndgriddata.py returns a index that assumes that the index starts from zero.
So, self.tree.query (xi) return [0, 3]
Therefore, self.values[i] line 82, in scipy/interpolate/ndgriddata.py using Invalid index.
### Note
if case of
```
df_select = df[3:].reset_index()
```
or
```
NI = interpolate.NearestNDInterpolator((df_select.x, df_select.y), np.array(df_select.z))
```
it works as expected.
Also, this bug does not occur in interpolate.LinearNDInterpolator.
### Scipy/Numpy/Python version information:
```
1.3.0 1.16.4 sys.version_info(major=3, minor=6, micro=8, releaselevel='final', serial=0)
```
| [
{
"content": "\"\"\"\nConvenience interface to N-D interpolation\n\n.. versionadded:: 0.9\n\n\"\"\"\nfrom __future__ import division, print_function, absolute_import\n\nimport numpy as np\nfrom .interpnd import LinearNDInterpolator, NDInterpolatorBase, \\\n CloughTocher2DInterpolator, _ndim_coords_from_arra... | [
{
"content": "\"\"\"\nConvenience interface to N-D interpolation\n\n.. versionadded:: 0.9\n\n\"\"\"\nfrom __future__ import division, print_function, absolute_import\n\nimport numpy as np\nfrom .interpnd import LinearNDInterpolator, NDInterpolatorBase, \\\n CloughTocher2DInterpolator, _ndim_coords_from_arra... | diff --git a/scipy/interpolate/ndgriddata.py b/scipy/interpolate/ndgriddata.py
index 023c439f8451..e7f9fddd7e44 100644
--- a/scipy/interpolate/ndgriddata.py
+++ b/scipy/interpolate/ndgriddata.py
@@ -62,7 +62,7 @@ def __init__(self, x, y, rescale=False, tree_options=None):
if tree_options is None:
tree_options = dict()
self.tree = cKDTree(self.points, **tree_options)
- self.values = y
+ self.values = np.asarray(y)
def __call__(self, *args):
"""
diff --git a/scipy/interpolate/tests/test_ndgriddata.py b/scipy/interpolate/tests/test_ndgriddata.py
index df4d552beace..eb3c0fa6b168 100644
--- a/scipy/interpolate/tests/test_ndgriddata.py
+++ b/scipy/interpolate/tests/test_ndgriddata.py
@@ -175,3 +175,17 @@ def test_nearest_options():
nndi_o = NearestNDInterpolator(x, y, tree_options=opts)
assert_allclose(nndi(x), nndi_o(x), atol=1e-14)
+
+def test_nearest_list_argument():
+ nd = np.array([[0, 0, 0, 0, 1, 0, 1],
+ [0, 0, 0, 0, 0, 1, 1],
+ [0, 0, 0, 0, 1, 1, 2]])
+ d = nd[:, 3:]
+
+ # z is np.array
+ NI = NearestNDInterpolator((d[0], d[1]), d[2])
+ assert_array_equal(NI([0.1, 0.9], [0.1, 0.9]), [0, 2])
+
+ # z is list
+ NI = NearestNDInterpolator((d[0], d[1]), list(d[2]))
+ assert_array_equal(NI([0.1, 0.9], [0.1, 0.9]), [0, 2])
|
ibis-project__ibis-8397 | feat: SQL Server Hierarchical Column Support
### Is your feature request related to a problem?
I am trying SQL Server IBIS on Adventure Works SQL Server sample OLTP DB, as it has complex datatypes
https://learn.microsoft.com/en-us/sql/samples/adventureworks-install-configure?view=sql-server-ver16&tabs=ssms
I discovered an issue when I try to read the schema of [HumanResources].[Employee], and discovered it has columns, which is a [hierarchyid](https://learn.microsoft.com/en-us/sql/relational-databases/hierarchical-data-sql-server?view=sql-server-ver16) datatype.
Sample to Simulate the issue
DDL of table is
```
CREATE TABLE [dbo].[SimpleDemo]
(
[Node] hierarchyid NOT NULL,
[Level] AS ([Node].[GetLevel]()),
[Location] nvarchar(30) NOT NULL,
[LocationType] nvarchar(9) NULL
);
INSERT INTO [dbo].[SimpleDemo] ( [Node], [Location], [LocationType] )
VALUES
('/', 'Earth', 'Planet'),
('/1/', 'Europe', 'Continent'),
('/2/', 'South America', 'Continent'),
('/1/1/', 'France', 'Country'),
('/1/1/1/', 'Paris', 'City'),
('/1/2/1/', 'Madrid', 'City'),
('/1/2/', 'Spain', 'Country'),
('/3/', 'Antarctica', 'Continent'),
('/2/1/', 'Brazil', 'Country'),
('/2/1/1/', 'Brasilia', 'City'),
('/2/1/2/', 'Bahia', 'State'),
('/2/1/2/1/', 'Salvador', 'City'),
('/3/1/', 'McMurdo Station', 'City');
```
Notice the `Node` & `Level` Columns, which is a [hierarchyid](https://learn.microsoft.com/en-us/sql/relational-databases/hierarchical-data-sql-server?view=sql-server-ver16) datatype related.
When I try to get the table info, I get error
```src_con.table(name='SimpleDemo', schema='dbo', database='AW_OLTP')```
```
ProgrammingError: (pyodbc.ProgrammingError) ('42000', "[42000] [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]The request for procedure 'SimpleDemo' failed because 'SimpleDemo' is a table object. (2809) (SQLExecDirectW)")
[SQL: EXEC sp_describe_first_result_set @tsql = ?]
[parameters: ('dbo.[SimpleDemo]',)]
(Background on this error at: https://sqlalche.me/e/20/f405)
```
As per the error, when I check
```
###/usr/local/lib/python3.10/dist-packages/ibis/backends/base/sql/alchemy/__init__.py
nulltype_cols = frozenset(
col.name for col in table.c if isinstance(col.type, sa.types.NullType)
)
if not nulltype_cols:
return table
return self._handle_failed_column_type_inference(table, nulltype_cols)
```
### Describe the solution you'd like
I see that we are tying to handle it, If you can do a simple fix that would be great, as
```
select
CAST(Node AS nvarchar(100)) AS Node,
Level,
Location,
LocationType
from [dbo].[SimpleDemo]
```
- Node is a VARCHAR that needs CAST
- Level is a INTEGER that also can be CAST
### What version of ibis are you running?
8.0.0
### What backend(s) are you using, if any?
SQL Server
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
| [
{
"content": "from __future__ import annotations\n\nfrom functools import partial\nfrom typing import NoReturn\n\nimport sqlglot as sg\nimport sqlglot.expressions as sge\n\nimport ibis.common.exceptions as com\nimport ibis.expr.datatypes as dt\nfrom ibis.common.collections import FrozenDict\nfrom ibis.formats i... | [
{
"content": "from __future__ import annotations\n\nfrom functools import partial\nfrom typing import NoReturn\n\nimport sqlglot as sg\nimport sqlglot.expressions as sge\n\nimport ibis.common.exceptions as com\nimport ibis.expr.datatypes as dt\nfrom ibis.common.collections import FrozenDict\nfrom ibis.formats i... | diff --git a/ibis/backends/base/sqlglot/datatypes.py b/ibis/backends/base/sqlglot/datatypes.py
index 9cd03adbd622..fb104c11746f 100644
--- a/ibis/backends/base/sqlglot/datatypes.py
+++ b/ibis/backends/base/sqlglot/datatypes.py
@@ -894,6 +894,8 @@ def _from_sqlglot_STRUCT(cls, *cols: sge.ColumnDef) -> NoReturn:
class MSSQLType(SqlglotType):
dialect = "mssql"
+ unknown_type_strings = FrozenDict({"hierarchyid": dt.string})
+
@classmethod
def _from_sqlglot_BIT(cls):
return dt.Boolean(nullable=cls.default_nullable)
diff --git a/ibis/backends/mssql/tests/test_client.py b/ibis/backends/mssql/tests/test_client.py
index 102b5c2da721..c085eb126616 100644
--- a/ibis/backends/mssql/tests/test_client.py
+++ b/ibis/backends/mssql/tests/test_client.py
@@ -52,6 +52,7 @@
("DATETIMEOFFSET(5)", dt.timestamp(scale=5, timezone="UTC")),
("GEOMETRY", dt.geometry),
("GEOGRAPHY", dt.geography),
+ ("HIERARCHYID", dt.string),
]
|
googleapis__google-api-python-client-497 | Documentation not correct for "import" function for variants
Line 142 of google-api-python-client/googleapiclient/discovery.py
Reads:
_The name with a '\_' prefixed if the name is a reserved word._
Should read:
_The name with a '\_' appended if the name is a reserved word._
Also, the [suggested code in the docs](https://cloud.google.com/genomics/reference/rest/v1/variants/import) for python is not correct about how to call this method.
The example line reading:
`request = service.variants().import(body=import_variants_request_body)
response = request.execute()`
Should be:
`request = service.variants().import_(body=import_variants_request_body)
response = request.execute()`
| [
{
"content": "# Copyright 2014 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unles... | [
{
"content": "# Copyright 2014 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unles... | diff --git a/googleapiclient/discovery.py b/googleapiclient/discovery.py
index 5c8624902da..e8b35273f90 100644
--- a/googleapiclient/discovery.py
+++ b/googleapiclient/discovery.py
@@ -138,7 +138,7 @@ def fix_method_name(name):
name: string, method name.
Returns:
- The name with a '_' prefixed if the name is a reserved word.
+ The name with an '_' appended if the name is a reserved word.
"""
if keyword.iskeyword(name) or name in RESERVED_WORDS:
return name + '_'
|
facebookresearch__hydra-1593 | [Bug] Config composition error with latest version of OmegaConf
# 🐛 Bug
## Description
When using OmegaConf at commit 2dd15f9 (first commit where this problem occurs), there are multiple Hydra tests failures, for instance:
```
pytest "tests/test_basic_launcher.py::TestBasicLauncher::test_sweep_1_job[basic-overrides0]"
(...)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = __INVALID__, value = None
def validate_and_convert(self, value: Any) -> Any:
"""
Validates input and converts to canonical form
:param value: input value
:return: converted value ("100" may be converted to 100 for example)
"""
if value is None:
if self._is_optional():
return None
> raise ValidationError("Non optional field cannot be assigned None")
E hydra.errors.ConfigCompositionException
../omegaconf/omegaconf/nodes.py:55: ConfigCompositionException
```
## Checklist
- [X] I checked on the latest version of Hydra
- [X] I created a minimal repro (See [this](https://stackoverflow.com/help/minimal-reproducible-example) for tips).
## To reproduce
Use master branch of Hydra with OmegaConf's commit 2dd15f9
## Additional context
This might actually be an OmegaConf bug (I'm not sure).
| [
{
"content": "# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved\nfrom dataclasses import dataclass, field\nfrom typing import Any, Dict, List, Optional\n\nfrom omegaconf import MISSING\n\nfrom hydra.core.config_store import ConfigStore\n\n\n@dataclass\nclass HelpConf:\n app_name: str = M... | [
{
"content": "# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved\nfrom dataclasses import dataclass, field\nfrom typing import Any, Dict, List, Optional\n\nfrom omegaconf import MISSING\n\nfrom hydra.core.config_store import ConfigStore\n\n\n@dataclass\nclass HelpConf:\n app_name: str = M... | diff --git a/hydra/conf/__init__.py b/hydra/conf/__init__.py
index bcb5648d2f5..c3eaaac462b 100644
--- a/hydra/conf/__init__.py
+++ b/hydra/conf/__init__.py
@@ -95,7 +95,8 @@ class RuntimeConf:
config_sources: List[ConfigSourceInfo] = MISSING
# Composition choices dictionary
- choices: Dict[str, str] = field(default_factory=lambda: {})
+ # Ideally, the value type would be Union[str, List[str], None]
+ choices: Dict[str, Any] = field(default_factory=lambda: {})
@dataclass
|
ckan__ckan-3631 | Problem adding datasets to a group on package_create, the user has 'Editor' capacity
### CKAN Version if known (or site URL)
Found in 2.2.2 and later
### Please describe the expected behaviour
I manage a customized CKAN for a client. The create dataset page is changed in a way it is possible to add all metadata to a dataset on 'package_create'. Also it should be possible to add the dataset direktly to groups. The user has the capacity 'Editor' on the group.
### Please describe the actual behaviour
The auth function 'package_create' always does the `check2 = _check_group_auth(context,data_dict)`, which is a different approach than in 'package_update' auth function.
That leads to using the call to `authz.has_user_permission_for_group_or_org(group.id, user, 'update')`.
Later this leads to a comparison of permission '**update**' with the permissions of 'Editor' role ('editor', ['read', 'delete_dataset', 'create_dataset', 'update_dataset', 'manage_group']).
`if 'admin' in perms or permission in perms:
return True`
In my opinion this can never be true and thus is bug.
Could you please check this?
Regards,
Daniel
| [
{
"content": "# encoding: utf-8\n\nimport ckan.logic as logic\nimport ckan.authz as authz\nimport ckan.logic.auth as logic_auth\n\nfrom ckan.common import _\n\n@logic.auth_allow_anonymous_access\ndef package_create(context, data_dict=None):\n user = context['user']\n\n if authz.auth_is_anon_user(context):... | [
{
"content": "# encoding: utf-8\n\nimport ckan.logic as logic\nimport ckan.authz as authz\nimport ckan.logic.auth as logic_auth\n\nfrom ckan.common import _\n\n@logic.auth_allow_anonymous_access\ndef package_create(context, data_dict=None):\n user = context['user']\n\n if authz.auth_is_anon_user(context):... | diff --git a/ckan/logic/auth/create.py b/ckan/logic/auth/create.py
index 9d588c92696..8977d735327 100644
--- a/ckan/logic/auth/create.py
+++ b/ckan/logic/auth/create.py
@@ -195,7 +195,7 @@ def _check_group_auth(context, data_dict):
groups = groups - set(pkg_groups)
for group in groups:
- if not authz.has_user_permission_for_group_or_org(group.id, user, 'update'):
+ if not authz.has_user_permission_for_group_or_org(group.id, user, 'manage_group'):
return False
return True
|
conan-io__conan-center-index-2128 | [package] wt/4.3.1: duplicate symbols during linking, "multiple definition of `Wt::WServer::~WServer()"
### Package and Environment Details (include every applicable attribute)
* Package Name/Version: **wt/4.3.1**
* Operating System+version: **Linux Ubuntu 20.04**
* Compiler+version: **GCC 9**
* Docker image: **N/A**
* Conan version: **conan 1.26.1**
* Python version: **Python 3.8.2**
### Conan profile (output of `conan profile show default` or `conan profile show <profile>` if custom profile is in use)
```
Configuration for profile default:
[settings]
os=Linux
os_build=Linux
arch=x86_64
arch_build=x86_64
compiler=gcc
compiler.version=7
compiler.libcxx=libstdc++11
build_type=Release
[options]
[build_requires]
[env]
```
### Steps to reproduce (Include if Applicable)
Just trying to upgrade from a local install of 4.3.0 to the conan version 4.3.1. I don't think that wttest lib should be
there. It would also be nice to have a component version of the library.
```
target_link_libraries(ppb.wt PRIVATE project_options
- Wt::HTTP
- Wt::DboSqlite3
- Wt::Dbo
- Wt::Wt
+ CONAN_PKG::wt
+ # Wt::HTTP
+ # Wt::DboSqlite3
+ # Wt::Dbo
+ # Wt::Wt
CONAN_PKG::nlohmann_json
stdc+
```
### Logs (Include/Attach if Applicable)
<details><summary>Click to expand log</summary>
```
[1/1] Linking CXX executable bin/ppb.wt
FAILED: bin/ppb.wt
: && /usr/bin/c++ -O2 -g -DNDEBUG ppb/CMakeFiles/ppb.wt.dir/model/cart.cpp.o ppb/CMakeFiles/ppb.wt.dir/ppb_application.cpp.o ppb/CMakeFiles/ppb.wt.dir/db/db_types.cpp.o ppb/CMakeFiles/ppb.wt.dir/db/static_product_database.cpp.o ppb/CMakeFiles/ppb.wt.dir/model/product_session.cpp.o ppb/CMakeFiles/ppb.wt.dir/model/product_database.cpp.o ppb/CMakeFiles/ppb.wt.dir/widget/anchor.cpp.o ppb/CMakeFiles/ppb.wt.dir/widget/text_button_box.cpp.o ppb/CMakeFiles/ppb.wt.dir/view/ppb_view.cpp.o ppb/CMakeFiles/ppb.wt.dir/view/ppb_cart_view.cpp.o ppb/CMakeFiles/ppb.wt.dir/main.cpp.o -o bin/ppb.wt -lstdc++fs /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwtdbopostgres.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwtdbosqlite3.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwtdbomysql.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwtdbo.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwt.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_wave.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_container.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_contract.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_exception.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_graph.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_iostreams.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_locale.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_log.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_program_options.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_random.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_regex.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_serialization.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_wserialization.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_coroutine.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_fiber.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_context.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_timer.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_thread.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_chrono.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_date_time.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_atomic.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_filesystem.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_system.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_type_erasure.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_log_setup.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_c99.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_c99f.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_c99l.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_tr1.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_tr1f.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_math_tr1l.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_nowide.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_stacktrace_addr2line.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_stacktrace_backtrace.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_stacktrace_basic.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_stacktrace_noop.a /home/ppetraki/.conan/data/boost/1.73.0/_/_/package/7e3a27591b41ce17376bfed79a95acf351cb2212/lib/libboost_unit_test_framework.a -lrt /home/ppetraki/.conan/data/bzip2/1.0.8/_/_/package/ff2ff6bb41ed84283a6634bada252c37f13eb93c/lib/libbz2.a /home/ppetraki/.conan/data/sqlite3/3.31.1/_/_/package/3227f52e0374b0fd6694f607708d905c74b60866/lib/libsqlite3.a /home/ppetraki/.conan/data/libmysqlclient/8.0.17/_/_/package/28945b70ae74bb6ebb259ca1f8be9f4b4b86384a/lib/libmysqlclient.a /home/ppetraki/.conan/data/openssl/1.1.1g/_/_/package/6b7ff26bfd4c2cf2ccba522bfba2d2e7820e40da/lib/libssl.a /home/ppetraki/.conan/data/openssl/1.1.1g/_/_/package/6b7ff26bfd4c2cf2ccba522bfba2d2e7820e40da/lib/libcrypto.a -ldl -lstdc++ -lm /home/ppetraki/.conan/data/libpq/11.5/_/_/package/37e2cf0ad9b4cbcb2b2a3538a853ba3e45956a8e/lib/libpq.a /home/ppetraki/.conan/data/libpq/11.5/_/_/package/37e2cf0ad9b4cbcb2b2a3538a853ba3e45956a8e/lib/libpgcommon.a /home/ppetraki/.conan/data/zlib/1.2.11/_/_/package/6b7ff26bfd4c2cf2ccba522bfba2d2e7820e40da/lib/libz.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind-coredump.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind-generic.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind-ptrace.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind-setjmp.a /home/ppetraki/.conan/data/libunwind/1.3.1/_/_/package/f72b33a5a0666d86cece5faa303b85f79aacec62/lib/libunwind-x86_64.a /home/ppetraki/.conan/data/xz_utils/5.2.4/_/_/package/6b7ff26bfd4c2cf2ccba522bfba2d2e7820e40da/lib/liblzma.a -lpthread && :
/usr/bin/ld: /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a(WServer.C.o): in function `Wt::WServer::~WServer()':
/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/http/WServer.C:104: multiple definition of `Wt::WServer::~WServer()'; /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a(WTestEnvironment.C.o):/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/Wt/Test/WTestEnvironment.C:33: first defined here
/usr/bin/ld: /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a(WServer.C.o): in function `Wt::WServer::~WServer()':
/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/http/WServer.C:104: multiple definition of `Wt::WServer::~WServer()'; /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a(WTestEnvironment.C.o):/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/Wt/Test/WTestEnvironment.C:33: first defined here
/usr/bin/ld: /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a(WServer.C.o): in function `Wt::WServer::~WServer()':
/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/http/WServer.C:104: multiple definition of `Wt::WServer::~WServer()'; /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a(WTestEnvironment.C.o):/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/Wt/Test/WTestEnvironment.C:33: first defined here
/usr/bin/ld: /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a(WServer.C.o): in function `Wt::WServer::WServer(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/http/WServer.C:79: multiple definition of `Wt::WServer::WServer(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'; /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a(WTestEnvironment.C.o):/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/Wt/Test/WTestEnvironment.C:21: first defined here
/usr/bin/ld: /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwthttp.a(WServer.C.o): in function `Wt::WServer::WServer(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/http/WServer.C:79: multiple definition of `Wt::WServer::WServer(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'; /home/ppetraki/.conan/data/wt/4.3.1/_/_/package/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/lib/libwttest.a(WTestEnvironment.C.o):/home/ppetraki/.conan/data/wt/4.3.1/_/_/build/2982a0e1e85adfb154853ddea2afc96acdfb5a3d/source_subfolder/src/Wt/Test/WTestEnvironment.C:21: first defined here
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
```
</details>
| [
{
"content": "from conans import ConanFile, CMake, tools\nimport os\nimport shutil\n\n\nclass WtConan(ConanFile):\n name = \"wt\"\n description = \"Wt is a C++ library for developing web applications\"\n url = \"https://github.com/conan-io/conan-center-index\"\n homepage = \"https://github.com/emweb... | [
{
"content": "from conans import ConanFile, CMake, tools\nimport os\nimport shutil\n\n\nclass WtConan(ConanFile):\n name = \"wt\"\n description = \"Wt is a C++ library for developing web applications\"\n url = \"https://github.com/conan-io/conan-center-index\"\n homepage = \"https://github.com/emweb... | diff --git a/recipes/wt/all/conanfile.py b/recipes/wt/all/conanfile.py
index 1c99d380cddf1..5a538da9728ae 100644
--- a/recipes/wt/all/conanfile.py
+++ b/recipes/wt/all/conanfile.py
@@ -41,7 +41,7 @@ class WtConan(ConanFile):
'with_postgres': True,
'with_mysql': True,
'with_mssql': False,
- 'with_test': True,
+ 'with_test': False,
'with_dbo': True,
'with_opengl': False,
'with_unwind': True,
diff --git a/recipes/wt/all/test_package/conanfile.py b/recipes/wt/all/test_package/conanfile.py
index a8ae21419669e..330359d0e7d9c 100644
--- a/recipes/wt/all/test_package/conanfile.py
+++ b/recipes/wt/all/test_package/conanfile.py
@@ -15,5 +15,6 @@ def build(self):
def test(self):
if not tools.cross_building(self.settings):
bin_path = os.path.join("bin", "test_package")
- self.run(bin_path, run_environment=True)
+ args = " --docroot . --http-listen http://127.0.0.1:8080"
+ self.run(bin_path + args, run_environment=True)
diff --git a/recipes/wt/all/test_package/test_package.cpp b/recipes/wt/all/test_package/test_package.cpp
index 28fc4adfe1932..b29b66f7ec10f 100644
--- a/recipes/wt/all/test_package/test_package.cpp
+++ b/recipes/wt/all/test_package/test_package.cpp
@@ -1,6 +1,7 @@
#include <cstdlib>
#include <iostream>
#include <Wt/WLength.h>
+#include <Wt/WServer.h>
#ifdef WITH_DBO
@@ -9,12 +10,14 @@
#endif
-int main()
+int main(int argc, char** argv)
{
Wt::WLength l("10px");
#ifdef WITH_DBO
Wt::Dbo::Session session;
#endif
+ Wt::WServer server(argc, argv, WTHTTP_CONFIGURATION);
+
return EXIT_SUCCESS;
}
|
getpelican__pelican-880 | Exception on WP import looking for <pre> tag
Another quick one. In `decode_wp_content()`:
``` python
start = pre_part.index("<pre")
```
should be:
``` python
start = pre_part.find("<pre")
```
because the next line checks for `start == -1`, but `index()` throws `ValueError` when the value can't be found, whereas `find()` returns -1.
I can send a PR for this tomorrow, but wanted to make sure I reported it tonight.
| [
{
"content": "#!/usr/bin/env python\n\n# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals, print_function\nimport argparse\ntry:\n # py3k import\n from html.parser import HTMLParser\nexcept ImportError:\n # py2 import\n from HTMLParser import HTMLParser # NOQA\nimport os\nimport re\ni... | [
{
"content": "#!/usr/bin/env python\n\n# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals, print_function\nimport argparse\ntry:\n # py3k import\n from html.parser import HTMLParser\nexcept ImportError:\n # py2 import\n from HTMLParser import HTMLParser # NOQA\nimport os\nimport re\ni... | diff --git a/pelican/tools/pelican_import.py b/pelican/tools/pelican_import.py
index 9e477c2cf..8ebb7659b 100755
--- a/pelican/tools/pelican_import.py
+++ b/pelican/tools/pelican_import.py
@@ -37,7 +37,7 @@ def decode_wp_content(content, br=True):
pre_index = 0
for pre_part in pre_parts:
- start = pre_part.index("<pre")
+ start = pre_part.find("<pre")
if start == -1:
content = content + pre_part
continue
|
mitmproxy__mitmproxy-5476 | ValueError: mutable default <class 'mitmproxy.contentviews.grpc.ProtoParser.ParserOptions'> for field parser_options is not allowed: use default_factory on python 3.11
#### Problem Description
mitmproxy fails to start throwing a `ValueError` exception:
```
ValueError: mutable default <class 'mitmproxy.contentviews.grpc.ProtoParser.ParserOptions'> for field parser_options is not allowed: use default_factory
```
#### Steps to reproduce the behavior:
1. Install mitmproxy 8.1.1 on Fedora rawhide (37)
2. run the binary
#### System Information
```
$ /usr/bin/mitmproxy --version
Traceback (most recent call last):
File "/usr/bin/mitmproxy", line 8, in <module>
sys.exit(mitmproxy())
^^^^^^^^^^^
File "/usr/lib/python3.11/site-packages/mitmproxy/tools/main.py", line 118, in mitmproxy
from mitmproxy.tools import console
File "/usr/lib/python3.11/site-packages/mitmproxy/tools/console/__init__.py", line 1, in <module>
from mitmproxy.tools.console import master
File "/usr/lib/python3.11/site-packages/mitmproxy/tools/console/master.py", line 26, in <module>
from mitmproxy.tools.console import consoleaddons
File "/usr/lib/python3.11/site-packages/mitmproxy/tools/console/consoleaddons.py", line 6, in <module>
from mitmproxy import contentviews
File "/usr/lib/python3.11/site-packages/mitmproxy/contentviews/__init__.py", line 23, in <module>
from . import (
File "/usr/lib/python3.11/site-packages/mitmproxy/contentviews/grpc.py", line 952, in <module>
@dataclass
^^^^^^^^^
File "/usr/lib64/python3.11/dataclasses.py", line 1221, in dataclass
return wrap(cls)
^^^^^^^^^
File "/usr/lib64/python3.11/dataclasses.py", line 1211, in wrap
return _process_class(cls, init, repr, eq, order, unsafe_hash,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.11/dataclasses.py", line 959, in _process_class
cls_fields.append(_get_field(cls, name, type, kw_only))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.11/dataclasses.py", line 816, in _get_field
raise ValueError(f'mutable default {type(f.default)} for field '
ValueError: mutable default <class 'mitmproxy.contentviews.grpc.ProtoParser.ParserOptions'> for field parser_options is not allowed: use default_factory
```
| [
{
"content": "from __future__ import annotations\n\nimport struct\nfrom dataclasses import dataclass, field\nfrom enum import Enum\nfrom typing import Generator, Iterable, Iterator\n\nfrom mitmproxy import contentviews, ctx, flow, flowfilter, http\nfrom mitmproxy.contentviews import base\nfrom mitmproxy.net.enc... | [
{
"content": "from __future__ import annotations\n\nimport struct\nfrom dataclasses import dataclass, field\nfrom enum import Enum\nfrom typing import Generator, Iterable, Iterator\n\nfrom mitmproxy import contentviews, ctx, flow, flowfilter, http\nfrom mitmproxy.contentviews import base\nfrom mitmproxy.net.enc... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e575e51d4..f9f75be9fa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,8 @@
* Remove overambitious assertions in the HTTP state machine,
fix some error handling.
([#5383](https://github.com/mitmproxy/mitmproxy/issues/5383), @mhils)
+* Use default_factory for parser_options.
+ ([#5474](https://github.com/mitmproxy/mitmproxy/issues/5474), @rathann)
## 15 May 2022: mitmproxy 8.1.0
diff --git a/mitmproxy/contentviews/grpc.py b/mitmproxy/contentviews/grpc.py
index a5ef99708f..5c73220c83 100644
--- a/mitmproxy/contentviews/grpc.py
+++ b/mitmproxy/contentviews/grpc.py
@@ -951,7 +951,7 @@ def format_grpc(
@dataclass
class ViewConfig:
- parser_options: ProtoParser.ParserOptions = ProtoParser.ParserOptions()
+ parser_options: ProtoParser.ParserOptions = field(default_factory=ProtoParser.ParserOptions)
parser_rules: list[ProtoParser.ParserRule] = field(default_factory=list)
|
huggingface__huggingface_hub-234 | Error when creating a repository
This error happens on huggingface_hub version 0.0.14 (current version) when creating a new dataset repository
```bash
(py38) bash-3.2$ huggingface-cli repo create --type dataset codeparrot-train
git version 2.29.2
git-lfs/2.13.3 (GitHub; darwin amd64; go 1.16.2; git a5e65851)
Traceback (most recent call last):
File "/Users/thomwolf/miniconda2/envs/py38/bin/huggingface-cli", line 8, in <module>
sys.exit(main())
File "/Users/thomwolf/miniconda2/envs/py38/lib/python3.8/site-packages/huggingface_hub/commands/huggingface_cli.py", line 41, in main
service.run()
File "/Users/thomwolf/miniconda2/envs/py38/lib/python3.8/site-packages/huggingface_hub/commands/user.py", line 228, in run
user, _ = self._api.whoami(token)
ValueError: too many values to unpack (expected 2)
```
| [
{
"content": "# Copyright 2020 The HuggingFace Team. All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#... | [
{
"content": "# Copyright 2020 The HuggingFace Team. All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#... | diff --git a/src/huggingface_hub/commands/user.py b/src/huggingface_hub/commands/user.py
index 7c02d87fc4..1da7debe3a 100644
--- a/src/huggingface_hub/commands/user.py
+++ b/src/huggingface_hub/commands/user.py
@@ -224,7 +224,7 @@ def run(self):
)
print("")
- user, _ = self._api.whoami(token)
+ user = self._api.whoami(token)["name"]
namespace = (
self.args.organization if self.args.organization is not None else user
)
|
svthalia__concrexit-1802 | AttributeError: 'Event' object has no attribute 'title_en'
Sentry Issue: [CONCREXIT-70](https://sentry.io/organizations/thalia/issues/2487433496/?referrer=github_integration)
```
AttributeError: 'Event' object has no attribute 'title_en'
(9 additional frame(s) were not displayed)
...
File "django/contrib/admin/options.py", line 1540, in changeform_view
return self._changeform_view(request, object_id, form_url, extra_context)
File "django/contrib/admin/options.py", line 1586, in _changeform_view
self.save_model(request, new_object, form, not add)
File "photos/admin.py", line 45, in save_model
super().save_model(request, obj, form, change)
File "django/contrib/admin/options.py", line 1099, in save_model
obj.save()
File "photos/models.py", line 158, in save
self.title = self.event.title_en
```
| [
{
"content": "import hashlib\nimport logging\nimport os\nimport random\n\nfrom django.conf import settings\nfrom django.core.exceptions import ValidationError\nfrom django.db import models\nfrom django.urls import reverse\nfrom django.utils import timezone\nfrom django.utils.functional import cached_property\nf... | [
{
"content": "import hashlib\nimport logging\nimport os\nimport random\n\nfrom django.conf import settings\nfrom django.core.exceptions import ValidationError\nfrom django.db import models\nfrom django.urls import reverse\nfrom django.utils import timezone\nfrom django.utils.functional import cached_property\nf... | diff --git a/website/photos/models.py b/website/photos/models.py
index f479425a8..2d6498526 100644
--- a/website/photos/models.py
+++ b/website/photos/models.py
@@ -155,7 +155,7 @@ def save(self, **kwargs):
self.dirname = self.slug
if not self.title and self.event:
- self.title = self.event.title_en
+ self.title = self.event.title
if not self.date:
self.date = self.event.start.date()
|
mkdocs__mkdocs-1122 | AttributeError: 'module' object has no attribute 'TornadoAsyncNotifier'
Using Python 2.6.6 on CentOS, I'm unable to run the server with livereload:
```
[mkdocs@dev test-docs]$ python /home/mkdocs/.local/lib/python2.6/site-packages/mkdocs/__main__.py serve --dev-addr=0.0.0.0:8080
WARNING: Support for Python 2.6 will be dropped in the 1.0.0 release of MkDocs
INFO - Building documentation...
INFO - Cleaning site directory
[I 161205 22:16:26 server:283] Serving on http://0.0.0.0:8080
[I 161205 22:16:26 handlers:60] Start watching changes
Traceback (most recent call last):
File "/home/mkdocs/.local/lib/python2.6/site-packages/mkdocs/__main__.py", line 227, in <module>
cli()
File "/home/mkdocs/.local/lib/python2.6/site-packages/click/core.py", line 716, in __call__
return self.main(*args, **kwargs)
File "/home/mkdocs/.local/lib/python2.6/site-packages/click/core.py", line 696, in main
rv = self.invoke(ctx)
File "/home/mkdocs/.local/lib/python2.6/site-packages/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/mkdocs/.local/lib/python2.6/site-packages/click/core.py", line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/mkdocs/.local/lib/python2.6/site-packages/click/core.py", line 534, in invoke
return callback(*args, **kwargs)
File "/home/mkdocs/.local/lib/python2.6/site-packages/mkdocs/__main__.py", line 127, in serve_command
livereload=livereload
File "/home/mkdocs/.local/lib/python2.6/site-packages/mkdocs/commands/serve.py", line 88, in serve
_livereload(host, port, config, builder, tempdir)
File "/home/mkdocs/.local/lib/python2.6/site-packages/mkdocs/commands/serve.py", line 27, in _livereload
server.serve(root=site_dir, host=host, port=int(port), restart_delay=0)
File "/home/mkdocs/.local/lib/python2.6/site-packages/livereload/server.py", line 300, in serve
LiveReloadHandler.start_tasks()
File "/home/mkdocs/.local/lib/python2.6/site-packages/livereload/handlers.py", line 61, in start_tasks
if not cls.watcher.start(cls.poll_tasks):
File "/home/mkdocs/.local/lib/python2.6/site-packages/livereload/watcher.py", line 160, in start
self.notifier = pyinotify.TornadoAsyncNotifier(
AttributeError: 'module' object has no attribute 'TornadoAsyncNotifier'
```
I can workaround by using `--no-livereload`, but is there a way to get livereload working?
| [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nfrom __future__ import print_function\nfrom setuptools import setup\nimport re\nimport os\nimport sys\n\nPY26 = sys.version_info[:2] == (2, 6)\n\n\nlong_description = (\n \"MkDocs is a fast, simple and downright gorgeous static site generator \"... | [
{
"content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nfrom __future__ import print_function\nfrom setuptools import setup\nimport re\nimport os\nimport sys\n\nPY26 = sys.version_info[:2] == (2, 6)\n\n\nlong_description = (\n \"MkDocs is a fast, simple and downright gorgeous static site generator \"... | diff --git a/requirements/project-min.txt b/requirements/project-min.txt
index 7dc6e95ecf..6b0262e0d1 100644
--- a/requirements/project-min.txt
+++ b/requirements/project-min.txt
@@ -1,6 +1,6 @@
click==3.3
Jinja2==2.7.1
-livereload==2.3.2
+livereload==2.5.1
Markdown==2.5
PyYAML==3.10
tornado==4.1
diff --git a/requirements/project.txt b/requirements/project.txt
index 6e3c9da2ed..bc2ab3c5c6 100644
--- a/requirements/project.txt
+++ b/requirements/project.txt
@@ -1,6 +1,6 @@
click>=3.3
Jinja2>=2.7.1
-livereload>=2.3.2
+livereload>=2.5.1
Markdown>=2.5
PyYAML>=3.10
tornado>=4.1
diff --git a/setup.py b/setup.py
index 81eb83feb3..cdafa1ddea 100755
--- a/setup.py
+++ b/setup.py
@@ -60,7 +60,7 @@ def get_packages(package):
install_requires=[
'click>=3.3',
'Jinja2>=2.7.1',
- 'livereload>=2.3.2',
+ 'livereload>=2.5.1',
'Markdown>=2.3.1,<2.5' if PY26 else 'Markdown>=2.3.1',
'PyYAML>=3.10',
'tornado>=4.1',
|
roboflow__supervision-845 | [LineZone] - flip in/out line crossing directions
## Description
Between `supervision-0.17.0` and `supervision-0.18.0`, releases in/out of the direction of the crossing were accidentally changed. Given that `LineZone` is one of the oldest features we have we do not want to make life difficult for users and want to restore the previous behavior. The change made in this [PR](https://github.com/roboflow/supervision/pull/735), most likely in this [line](https://github.com/roboflow/supervision/blob/0ccb0b85adee4202f5fe96834a374a057bbbd9da/supervision/detection/line_counter.py#L140), is responsible for the change in behavior.
https://github.com/roboflow/supervision/blob/0ccb0b85adee4202f5fe96834a374a057bbbd9da/supervision/detection/line_counter.py#L140
### Minimal Reproducible Example
You can easily confirm the crossing direction change between `supervision-0.17.0` and `supervision-0.18.0` releases using this [notebook](https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/how-to-track-and-count-vehicles-with-yolov8-and-supervison.ipynb). Here are example results.
__supervision-0.17.0__
https://github.com/roboflow/supervision/assets/26109316/32e0f95c-9204-4703-ab25-c2255a597720
__supervision-0.18.0__
https://github.com/roboflow/supervision/assets/26109316/af6db77e-24f8-4338-9925-3c80afe178f8
### Additional
- Note: Please share a Google Colab with minimal code to test the new feature. We know it's additional work, but it will speed up the review process. The reviewer must test each change. Setting up a local environment to do this is time-consuming. Please ensure that Google Colab can be accessed without any issues (make it public). Thank you! 🙏🏻
| [
{
"content": "from typing import Dict, Iterable, Optional, Tuple\n\nimport cv2\nimport numpy as np\n\nfrom supervision.detection.core import Detections\nfrom supervision.draw.color import Color\nfrom supervision.draw.utils import draw_text\nfrom supervision.geometry.core import Point, Position, Vector\n\n\nclas... | [
{
"content": "from typing import Dict, Iterable, Optional, Tuple\n\nimport cv2\nimport numpy as np\n\nfrom supervision.detection.core import Detections\nfrom supervision.draw.color import Color\nfrom supervision.draw.utils import draw_text\nfrom supervision.geometry.core import Point, Position, Vector\n\n\nclas... | diff --git a/supervision/detection/line_counter.py b/supervision/detection/line_counter.py
index 09efd49da..8f09f2197 100644
--- a/supervision/detection/line_counter.py
+++ b/supervision/detection/line_counter.py
@@ -137,7 +137,7 @@ def trigger(self, detections: Detections) -> Tuple[np.ndarray, np.ndarray]:
continue
triggers = [
- self.vector.cross_product(point=anchor) > 0 for anchor in box_anchors
+ self.vector.cross_product(point=anchor) < 0 for anchor in box_anchors
]
if len(set(triggers)) == 2:
|
python-gitlab__python-gitlab-1058 | Scope "bug"
## Description of the problem, including code/CLI snippet
I am using the list method of project.issues to list issues with certain label. I am searching issue having "vulcheck" as label. In my project I have one issue with "vulcheck" label
```python
def issue_by_project_label(self):
print(self._project.issues.list(labels="vulcheck"))
```
## Expected Behavior
It should return me the issues with label "vulcheck". I have one issue with label "vulcheck".
## Actual Behavior
It is returning empty list
## Specifications
- python-gitlab version: 2.1.2
- API version you are using (v3/v4): v4
- Gitlab server version (or gitlab.com): 12.6.6-ee
| [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2018 Gauvain Pocentek <gauvain@pocentek.net>\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU Lesser General Public License as published by\n# the Free Software Foundation, either version 3 of th... | [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Copyright (C) 2018 Gauvain Pocentek <gauvain@pocentek.net>\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU Lesser General Public License as published by\n# the Free Software Foundation, either version 3 of th... | diff --git a/gitlab/tests/test_types.py b/gitlab/tests/test_types.py
index 5b9f2caf8..3613383de 100644
--- a/gitlab/tests/test_types.py
+++ b/gitlab/tests/test_types.py
@@ -51,11 +51,19 @@ def test_empty_input(self):
o.set_from_cli(" ")
self.assertEqual([], o.get())
- def test_get_for_api(self):
+ def test_get_for_api_from_cli(self):
o = types.ListAttribute()
o.set_from_cli("foo,bar,baz")
self.assertEqual("foo,bar,baz", o.get_for_api())
+ def test_get_for_api_from_list(self):
+ o = types.ListAttribute(["foo", "bar", "baz"])
+ self.assertEqual("foo,bar,baz", o.get_for_api())
+
+ def test_get_for_api_does_not_split_string(self):
+ o = types.ListAttribute("foo")
+ self.assertEqual("foo", o.get_for_api())
+
class TestLowercaseStringAttribute(unittest.TestCase):
def test_get_for_api(self):
diff --git a/gitlab/types.py b/gitlab/types.py
index 525dc3043..e07d078e1 100644
--- a/gitlab/types.py
+++ b/gitlab/types.py
@@ -38,6 +38,10 @@ def set_from_cli(self, cli_value):
self._value = [item.strip() for item in cli_value.split(",")]
def get_for_api(self):
+ # Do not comma-split single value passed as string
+ if isinstance(self._value, str):
+ return self._value
+
return ",".join(self._value)
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py
index 69b0d3181..e0cb3a609 100644
--- a/tools/python_test_v4.py
+++ b/tools/python_test_v4.py
@@ -677,10 +677,17 @@
assert type(issue1.closed_by()) == list
assert type(issue1.related_merge_requests()) == list
-# issues labels and events
+# issue labels
label2 = admin_project.labels.create({"name": "label2", "color": "#aabbcc"})
issue1.labels = ["label2"]
issue1.save()
+
+assert issue1 in admin_project.issues.list(labels=["label2"])
+assert issue1 in admin_project.issues.list(labels="label2")
+assert issue1 in admin_project.issues.list(labels="Any")
+assert issue1 not in admin_project.issues.list(labels="None")
+
+# issue events
events = issue1.resourcelabelevents.list()
assert events
event = issue1.resourcelabelevents.get(events[0].id)
|
TileDB-Inc__TileDB-Py-214 | Junk results using numpy structured arrays
Hey,
I am attempting to use a sparse multi attribute arrays but for some reason I seem to be getting junk results
TileDB-Py version (0.33.4)
Python version (3.6.9)
Here is a reproducing example (apologies that it is not very minimal)
```
import numpy as np
from numpy import array
import tiledb
import shutil
from contextlib import suppress
# define a domain and schema
NOTES_DTYPE = [('swing', 'float32', 1), ('pitch', 'uint8', 1), ('duration', 'float32', 1), ('velocity', 'uint8', 1)]
song_dim = tiledb.Dim(name="song_idx", domain=(0, np.iinfo(np.int32).max-1), tile=1, dtype=np.int32)
track_dim = tiledb.Dim(name="track_idx", domain=(0, np.iinfo(np.int32).max-1), tile=1, dtype=np.int32)
bar_dim = tiledb.Dim(name="bar_idx", domain=(0, np.iinfo(np.int32).max-1), tile=1, dtype=np.int32)
beat_dim = tiledb.Dim(name="beat_no", domain=(0, 3), tile=1, dtype=np.int32)
note_dim = tiledb.Dim(name="note_idx", domain=(0, np.iinfo(np.int32).max-1), tile=1, dtype=np.int32)
notes_dom = tiledb.Domain(
song_dim,
track_dim,
bar_dim,
beat_dim,
note_dim,
)
notes_schema = tiledb.ArraySchema(domain=notes_dom, sparse=True,
attrs=[
tiledb.Attr(name=prop_name, dtype=getattr(np, dtype))
for prop_name, dtype, _ in NOTES_DTYPE]
)
# define some test data
test_data = {'notes_coords': array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],[0, 0, 0, 1, 1, 1, 2, 2, 2, 2],[0, 1, 2, 0, 1, 2, 0, 1, 2, 3]]),
'notes_data': array([( 0. , 78, 0.25, 127), ( 0.25, 66, 0.25, 127),( 0.5 , 82, 0.25, 127), (-0.25, 66, 0.25, 127),( 0. , 80, 0.25, 127), ( 0.25, 66, 0.25, 127),(-0.5 , 72, 0.25, 127), (-0.25, 66, 0.25, 127),( 0. , 73, 0.25, 127), ( 0.25, 66, 0.25, 127)], dtype=[('swing', '<f4'), ('pitch', 'u1'), ('duration', '<f4'), ('velocity', 'u1')])
}
# create array
with suppress(FileNotFoundError):
shutil.rmtree(f'test_tile')
tiledb.SparseArray.create(f'test_tile', notes_schema)
# write test data to array
tile_array = lambda mode: tiledb.SparseArray('test_tile', mode=mode)
stuctured_array_to_dict = lambda arr: {name: arr[name] for name in arr.dtype.names}
with tile_array('w') as A:
A[(*test_data['notes_coords'],)] = \
stuctured_array_to_dict(test_data['notes_data'])
# read data back from array
with tile_array('r') as A:
from_tile = A[0]
# none are matching
assert any([(from_tile['velocity']==test_data['notes_data']['velocity']).all(),
(from_tile['swing']==test_data['notes_data']['swing']).all(),
(from_tile['pitch']==test_data['notes_data']['pitch']).all(),
(from_tile['duration']==test_data['notes_data']['duration']).all()])
```
upon inspecting these array it can be seen that the data in them looks to be uninitialized (floats are >1e40)
Am I perhaps missing something important here?
| [
{
"content": "from __future__ import absolute_import, print_function\n\nimport multiprocessing\nimport os\nimport shutil\nimport subprocess\nimport zipfile\nimport platform\nfrom distutils.sysconfig import get_config_var\nfrom distutils.version import LooseVersion\n\n\ntry:\n # For Python 3\n from urllib.... | [
{
"content": "from __future__ import absolute_import, print_function\n\nimport multiprocessing\nimport os\nimport shutil\nimport subprocess\nimport zipfile\nimport platform\nfrom distutils.sysconfig import get_config_var\nfrom distutils.version import LooseVersion\n\n\ntry:\n # For Python 3\n from urllib.... | diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 05b890b247..2b70d6602d 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -32,7 +32,7 @@ steps:
displayName: 'Print env'
- script: |
- python -m pip install --upgrade pip setuptools wheel numpy tox setuptools-scm cython psutil dask
+ python -m pip install --upgrade setuptools wheel numpy tox setuptools-scm cython psutil dask
displayName: 'Install dependencies'
- script: |
diff --git a/requirements.txt b/requirements.txt
index 52835b1948..3379637831 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,5 +3,5 @@ cython>=0.27.3
numpy==1.16.*
setuptools>=18.0.1
setuptools-scm>=1.5.4
-wheel>=0.30.0
+wheel>=0.30
psutil
diff --git a/requirements_dev.txt b/requirements_dev.txt
index ba32c50b95..a5b2db4fa6 100644
--- a/requirements_dev.txt
+++ b/requirements_dev.txt
@@ -5,6 +5,6 @@ cython==0.27.3
numpy==1.16.*
setuptools==40.8.0
setuptools-scm==1.5.4
-wheel==0.30.0
+wheel>=0.30.0
tox==3.0.0
psutil
diff --git a/setup.py b/setup.py
index 778cb8386d..ef4bd7ca7a 100644
--- a/setup.py
+++ b/setup.py
@@ -564,6 +564,7 @@ def ext_attr_update(attr, value):
tests_require=TESTS_REQUIRE,
packages=find_packages(),
cmdclass=LazyCommandClass(),
+ zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
diff --git a/tiledb/libtiledb.pyx b/tiledb/libtiledb.pyx
index db7226edc4..29edd0c891 100644
--- a/tiledb/libtiledb.pyx
+++ b/tiledb/libtiledb.pyx
@@ -4757,7 +4757,7 @@ cdef class SparseArray(Array):
if self.schema.nattr == 1 and not isinstance(val, dict):
attr = self.attr(0)
name = attr.name
- value = np.asarray(val, dtype=attr.dtype)
+ value = np.ascontiguousarray(val, dtype=attr.dtype)
if len(value) != ncells:
raise ValueError("value length does not match coordinate length")
sparse_attributes.append(name)
@@ -4766,7 +4766,7 @@ cdef class SparseArray(Array):
for (k, v) in dict(val).items():
attr = self.attr(k)
name = attr.name
- value = v if attr.dtype is 'O' else np.asarray(v, dtype=attr.dtype)
+ value = v if attr.dtype is 'O' else np.ascontiguousarray(v, dtype=attr.dtype)
if len(value) != ncells:
raise ValueError("value length does not match coordinate length")
sparse_attributes.append(name)
diff --git a/tiledb/np2buf.pyx b/tiledb/np2buf.pyx
index 88de926599..c076b19ab3 100644
--- a/tiledb/np2buf.pyx
+++ b/tiledb/np2buf.pyx
@@ -64,7 +64,7 @@ def array_to_buffer(object val):
assert((arr.dtype == np.dtype('O') or
np.issubdtype(arr.dtype, np.bytes_) or
np.issubdtype(arr.dtype, np.unicode_)),
- "_pack_varlen_bytes: input array must be np.object or np.bytes!")
+ "array_to_buffer: input array must be np.object or np.bytes!")
firstdtype = _varlen_cell_dtype(arr.flat[0])
# item size
|
pennersr__django-allauth-967 | TypeError: <function save at 0x7f9b4eab48c0> is not JSON serializable
I'm trying to write Slack provider plugin but just can't get to log in. I'm constantly seeing the error below. Oddly, I was able to login twice out of 20-30 attempts I made and I didn't really make any changes to the code.
This is also happening if I try to login using bundled LinkedIn oAuth2 provider. I've no clue what is going on. The same code and requirements work on my staging server just fine. I also reset my database to make sure it's is not corrupt data but that didn't fix it either.
No user, social account or social token is created. I can share the preliminary code I wrote for slack provider but I doubt that has got anything to do with it since it happens with the linkedin provider also.
I tried version 0.15, 0.20 and master. Same thing.
Any pointers?
``` python
Environment:
Request Method: GET
Request URL: http://localhost:8000/accounts/slack/login/callback/?code=xxxxxxxxxx&state=xxxxxxx
Django Version: 1.7.7
Python Version: 2.7.3
Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
111. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/providers/oauth2/views.py" in view
55. return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/providers/oauth2/views.py" in dispatch
125. return complete_social_login(request, login)
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/helpers.py" in complete_social_login
145. return _complete_social_login(request, sociallogin)
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/helpers.py" in _complete_social_login
161. ret = _process_signup(request, sociallogin)
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/helpers.py" in _process_signup
27. request.session['socialaccount_sociallogin'] = sociallogin.serialize()
File "/usr/local/lib/python2.7/dist-packages/allauth/socialaccount/models.py" in serialize
187. user=serialize_instance(self.user),
File "/usr/local/lib/python2.7/dist-packages/allauth/utils.py" in serialize_instance
162. return json.loads(json.dumps(ret, cls=DjangoJSONEncoder))
File "/usr/lib/python2.7/json/__init__.py" in dumps
238. **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py" in encode
201. chunks = self.iterencode(o, _one_shot=True)
File "/usr/lib/python2.7/json/encoder.py" in iterencode
264. return _iterencode(o, 0)
File "/usr/local/lib/python2.7/dist-packages/django/core/serializers/json.py" in default
109. return super(DjangoJSONEncoder, self).default(o)
File "/usr/lib/python2.7/json/encoder.py" in default
178. raise TypeError(repr(o) + " is not JSON serializable")
Exception Type: TypeError at /accounts/slack/login/callback/
Exception Value: <function save at 0x7f0ac718c8c0> is not JSON serializable
```
| [
{
"content": "import re\nimport unicodedata\nimport json\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.validators import validate_email, ValidationError\nfrom django.core import urlresolvers\nfrom django.contrib.sites.models import Site\nfrom django.db.models import FieldDoesNotEx... | [
{
"content": "import re\nimport unicodedata\nimport json\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.validators import validate_email, ValidationError\nfrom django.core import urlresolvers\nfrom django.contrib.sites.models import Site\nfrom django.db.models import FieldDoesNotEx... | diff --git a/allauth/tests.py b/allauth/tests.py
index abee482765..9cabcb6071 100644
--- a/allauth/tests.py
+++ b/allauth/tests.py
@@ -85,12 +85,20 @@ class SomeModel(models.Model):
dt = models.DateTimeField()
t = models.TimeField()
d = models.DateField()
+
+ def method(self):
+ pass
+
instance = SomeModel(dt=datetime.now(),
d=date.today(),
t=datetime.now().time())
+ # make sure serializer doesn't fail if a method is attached to the instance
+ instance.method = method
instance.nonfield = 'hello'
data = utils.serialize_instance(instance)
instance2 = utils.deserialize_instance(SomeModel, data)
+ self.assertEqual(getattr(instance, 'method', None), method)
+ self.assertEqual(getattr(instance2, 'method', None), None)
self.assertEqual(instance.nonfield, instance2.nonfield)
self.assertEqual(instance.d, instance2.d)
self.assertEqual(instance.dt.date(), instance2.dt.date())
diff --git a/allauth/utils.py b/allauth/utils.py
index 2c76efd636..82cdfc2551 100644
--- a/allauth/utils.py
+++ b/allauth/utils.py
@@ -180,7 +180,7 @@ def serialize_instance(instance):
"""
ret = dict([(k, v)
for k, v in instance.__dict__.items()
- if not k.startswith('_')])
+ if not (k.startswith('_') or callable(v))])
return json.loads(json.dumps(ret, cls=DjangoJSONEncoder))
|
iterative__dvc-5085 | UTF-8 codec error while using dvc pull (surrogates not allowed)
# Bug Report
## Description
While using dvc pull, the task errors out with:
`ERROR: unexpected error - 'utf-8' codec can't encode characters in position 103-110: surrogates not allowed
`
### Reproduce
1. Try to push files with special characters in it. Ex: sydney-australia-–-january-–.txt
2. Set dvc cache type to reflink.
3. Try running dvc pull on the files that were pushed.
### Environment information
**Output of `dvc version`:**
```console
$ dvc version
DVC version: 1.10.2 (brew)
---------------------------------
Platform: Python 3.9.0 on macOS-10.15.7-x86_64-i386-64bit
Supports: azure, gdrive, gs, http, https, s3, ssh, oss, webdav, webdavs
Cache types: reflink, hardlink, symlink
Caches: local
Remotes: s3
Repo: dvc, git
```
### Fix
By default on MacOS, the cache type used by DVC is reflink. By changing it to either symlink, hardlink or copy we can avoid the codec error. You can change the cache type this by using `dvc config cache.type <type>`
More on the cache types: https://dvc.org/doc/user-guide/large-dataset-optimization
```
2020-12-11 16:32:04,319 DEBUG: 'aug_set/annotations/sydney-australia-–-january-–-red-bull-energy-drink-mini-cooper-publicity-car-can-red-bull-drink-behind-used-123644712-0.json' doesn't exist.
2020-12-11 16:32:04,321 DEBUG: fetched: [(92173,)]
4:33
2020-12-11 16:32:04,325 ERROR: unexpected error - 'utf-8' codec can't encode characters in position 103-110: surrogates not allowed
------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/main.py", line 90, in main
ret = cmd.run()
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/command/data_sync.py", line 26, in run
stats = self.repo.pull(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/repo/__init__.py", line 60, in wrapper
return f(repo, *args, **kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/repo/pull.py", line 36, in pull
stats = self.checkout(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/repo/__init__.py", line 60, in wrapper
return f(repo, *args, **kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/repo/checkout.py", line 96, in checkout
result = stage.checkout(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/funcy/decorators.py", line 39, in wrapper
return deco(call, *dargs, **dkwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/stage/decorators.py", line 36, in rwlocked
return call()
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/funcy/decorators.py", line 60, in __call__
return self._func(*self._args, **self._kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/stage/__init__.py", line 502, in checkout
key, outs = self._checkout(out, **kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/stage/__init__.py", line 510, in _checkout
result = out.checkout(**kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/output/base.py", line 356, in checkout
return self.cache.checkout(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/funcy/decorators.py", line 39, in wrapper
return deco(call, *dargs, **dkwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 40, in use_state
return call()
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/funcy/decorators.py", line 60, in __call__
return self._func(*self._args, **self._kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 555, in checkout
return self._checkout(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 578, in _checkout
return self._checkout_dir(
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 472, in _checkout_dir
self.link(entry_cache_info, entry_info)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 141, in link
self._link(from_info, to_info, self.cache_types)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 148, in _link
self._try_links(from_info, to_info, link_types)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/remote/slow_link_detection.py", line 38, in wrapper
result = f(remote, *args, **kwargs)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 166, in _try_links
self._do_link(from_info, to_info, link_method)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/cache/base.py", line 182, in _do_link
link_method(from_info, to_info)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/tree/local.py", line 240, in reflink
System.reflink(from_info, tmp_info)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/system.py", line 108, in reflink
ret = System._reflink_darwin(source, link_name)
File "/usr/local/Cellar/dvc/1.10.2/libexec/lib/python3.9/site-packages/dvc/system.py", line 75, in _reflink_darwin
ctypes.c_char_p(dst.encode("utf-8")),
UnicodeEncodeError: 'utf-8' codec can't encode characters in position 103-110: surrogates not allowed
------------------------------------------------------------
2020-12-11 16:32:04,710 DEBUG: Version info for developers:
DVC version: 1.10.2 (brew)
---------------------------------
Platform: Python 3.9.0 on macOS-10.15.7-x86_64-i386-64bit
Supports: azure, gdrive, gs, http, https, s3, ssh, oss, webdav, webdavs
Cache types: reflink, hardlink, symlink
Caches: local
Remotes: s3
Repo: dvc, git
Having any troubles? Hit us up at https://dvc.org/support, we are always happy to help!
2020-12-11 16:32:04,712 DEBUG: Analytics is disabled.
```
| [
{
"content": "import errno\nimport logging\nimport os\nimport platform\nimport shutil\nimport sys\n\nfrom dvc.exceptions import DvcException\n\nlogger = logging.getLogger(__name__)\n\nif (\n platform.system() == \"Windows\"\n and sys.version_info < (3, 8)\n and sys.getwindowsversion() >= (6, 2)\n):\n ... | [
{
"content": "import errno\nimport logging\nimport os\nimport platform\nimport shutil\nimport sys\n\nfrom dvc.exceptions import DvcException\n\nlogger = logging.getLogger(__name__)\n\nif (\n platform.system() == \"Windows\"\n and sys.version_info < (3, 8)\n and sys.getwindowsversion() >= (6, 2)\n):\n ... | diff --git a/dvc/system.py b/dvc/system.py
index 1d7f0a9b5b..4b00bd8347 100644
--- a/dvc/system.py
+++ b/dvc/system.py
@@ -71,8 +71,8 @@ def _reflink_darwin(src, dst):
clonefile.restype = ctypes.c_int
return clonefile(
- ctypes.c_char_p(src.encode("utf-8")),
- ctypes.c_char_p(dst.encode("utf-8")),
+ ctypes.c_char_p(os.fsencode(src)),
+ ctypes.c_char_p(os.fsencode(dst)),
ctypes.c_int(0),
)
|
liqd__a4-opin-1799 | Changing the Organisation Details is not possible
**URL:**
https://opin.me/en/dashboard/organisations/liquid-democracy/settings/
**user:**
Initiators, who try to fill in the Organisations details & as an admin too.
**expected behaviour:**
If I fill in Organisation details, save them and it is there
**behaviour:**
I fill in the Organisation details, press save and it reloads, but do not save.
**important screensize:**
**device & browser:**
Firefox 73.0.1 (64-Bit)
**Comment/Question:**
Screenshot?
| [
{
"content": "\nimport parler\nfrom django import forms\nfrom django.conf import settings\nfrom django.core.exceptions import ValidationError\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom euth.organisations.models import Organisation\n\n\nclass OrganisationForm(forms.ModelForm):\n translat... | [
{
"content": "\nimport parler\nfrom django import forms\nfrom django.conf import settings\nfrom django.core.exceptions import ValidationError\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom euth.organisations.models import Organisation\n\n\nclass OrganisationForm(forms.ModelForm):\n translat... | diff --git a/euth/dashboard/forms.py b/euth/dashboard/forms.py
index 9b54fb2d9..3ebcdb17f 100644
--- a/euth/dashboard/forms.py
+++ b/euth/dashboard/forms.py
@@ -81,7 +81,7 @@ def untranslated(self):
"""
return [field for field in self if '__' not in field.html_name]
- def prefiled_languages(self):
+ def prefilled_languages(self):
"""
Return languages tabs that need to be displayed.
"""
diff --git a/euth/dashboard/static/language_switch/react_language_switch.jsx b/euth/dashboard/static/language_switch/react_language_switch.jsx
index d777f4833..aea148c3b 100644
--- a/euth/dashboard/static/language_switch/react_language_switch.jsx
+++ b/euth/dashboard/static/language_switch/react_language_switch.jsx
@@ -1,7 +1,6 @@
var PropTypes = require('prop-types')
var React = require('react')
var ReactDOM = require('react-dom')
-var $ = require('jquery')
class LanguageSwitch extends React.Component {
constructor (props) {
@@ -11,33 +10,32 @@ class LanguageSwitch extends React.Component {
}
}
- switchLanguage (e) {
+ addLanguage (e) {
var languageCode = e.target.textContent
var index = this.state.activeLanguages.indexOf(languageCode)
var newActiveLanguages = this.state.activeLanguages.concat([])
if (index === -1) {
// adding language
newActiveLanguages.push(languageCode)
- } else {
- newActiveLanguages.splice(index, 1)
}
this.setState({
activeLanguages: newActiveLanguages
- }, function () {
- var $checkbox = $('#' + languageCode + '_language-switch')
- // language was active
- if (!$checkbox.is(':checked')) {
- $(this.refs.checkboxList).find(':checked').first().next('a').tab('show')
- } else {
- $checkbox.next('a').tab('show')
- }
})
}
- componentDidMount () {
- $(this.refs.toggleButton).dropdown()
- $(this.refs.checkboxList).find('.a').tab()
+ removeLanguage (e) {
+ var languageCode = e.target.textContent
+ var index = this.state.activeLanguages.indexOf(languageCode)
+ var newActiveLanguages = this.state.activeLanguages.concat([])
+ if (index !== -1) {
+ // removing language
+ newActiveLanguages.splice(index, 1)
+ }
+
+ this.setState({
+ activeLanguages: newActiveLanguages
+ })
}
render () {
@@ -68,10 +66,29 @@ class LanguageSwitch extends React.Component {
</button>
<ul className="dropdown-menu">
{
- this.props.languages.map(languageCode => {
+ this.props.languages.map((languageCode, i) => {
+ return (
+ <span key={languageCode}>
+ {this.state.activeLanguages.indexOf(languageCode) === -1 &&
+ <li key={languageCode}>
+ <button type="button" onClick={this.addLanguage.bind(this)}>{languageCode}</button>
+ </li>}
+ </span>
+ )
+ })
+ }
+ </ul>
+ </div>
+ <div className="dropdown">
+ <button className="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" ref="toggleButton">
+ <i className="fa fa-minus" />
+ </button>
+ <ul className="dropdown-menu">
+ {
+ this.state.activeLanguages.map(languageCode => {
return (
<li key={languageCode}>
- <button type="button" onClick={this.switchLanguage.bind(this)}>{languageCode}</button>
+ <button type="button" onClick={this.removeLanguage.bind(this)}>{languageCode}</button>
</li>
)
})
diff --git a/euth/organisations/templates/euth_organisations/organisation_form.html b/euth/organisations/templates/euth_organisations/organisation_form.html
index 30d6f8afd..afdc04283 100644
--- a/euth/organisations/templates/euth_organisations/organisation_form.html
+++ b/euth/organisations/templates/euth_organisations/organisation_form.html
@@ -29,7 +29,7 @@ <h1 class="dashboard-content-heading">{% trans "Edit your organisation details"
id="language-switch-list"
data-euth-widget="language-switch"
data-languages="{{ form.languages|join:' ' }}"
- data-active-languages="{{ form.prefiled_languages|join:' ' }}"
+ data-active-languages="{{ form.prefilled_languages|join:' ' }}"
></div>
{% for lang_code, fields in form.translated %}
diff --git a/tests/dashboard/test_dashboard_views.py b/tests/dashboard/test_dashboard_views.py
index b1d54e46e..987f7b1a1 100644
--- a/tests/dashboard/test_dashboard_views.py
+++ b/tests/dashboard/test_dashboard_views.py
@@ -244,7 +244,7 @@ def test_dashboard_update_organisation(client, organisation):
response = client.get(url)
form = response.context_data['form']
- assert form.prefiled_languages() == ['en']
+ assert form.prefilled_languages() == ['en']
assert len(form.untranslated()) == 9
assert len(form.translated()) == 10
assert form.translated()[0][0] == 'en'
|
learningequality__kolibri-7761 | Kolibri fails to start if the timezone is detected incorrectly
### Observed behavior
In some environments, the time zone offset detected by tzlocal may not match the time zone offset of Python's `time.localtime()`. In that case, tzlocal's `get_localzone()` raises a `ValueError` exception: https://github.com/regebro/tzlocal/blob/c5282c6feded0d576937c0dcdf1f4fd00a95fbee/tzlocal/utils.py#L34-L46.
### Expected behavior
It looks like Kolibri handles an `UnknownTimeZoneError` exception from pytz already. To solve this issue, we could handle the `ValueError` from tzlocal in the same way: https://github.com/learningequality/kolibri/blob/release-v0.14.x/kolibri/deployment/default/settings/base.py#L252-L257. (It is unfortunate that tzlocal throws such a generic exception here, but we probably need to put up with it).
### User-facing consequences
At the moment, Kolibri is failing to start on Linux when using the `America/Sao_Paulo` timezone:
```
$ flatpak run org.learningequality.Kolibri
WARNING:ifcfg:Neither `ifconfig` (`ifconfig -a`) nor `ip` (`ip address show`) commands are available, listing network interfaces is likely to fail
Process KolibriServiceMainProcess-1:
Traceback (most recent call last):
File "/usr/lib/python3.7/multiprocessing/process.py", line 297, in _bootstrap
self.run()
File "/app/lib/python3.7/site-packages/kolibri_gnome/kolibri_service/kolibri_service_main.py", line 24, in run
self.__run_kolibri_start()
File "/app/lib/python3.7/site-packages/kolibri_gnome/kolibri_service/kolibri_service_main.py", line 49, in __run_kolibri_start
initialize()
File "/app/lib/python3.7/site-packages/kolibri/utils/cli.py", line 356, in initialize
_setup_django()
File "/app/lib/python3.7/site-packages/kolibri/utils/cli.py", line 293, in _setup_django
django.setup()
File "/app/lib/python3.7/site-packages/kolibri/dist/django/__init__.py", line 22, in setup
configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
File "/app/lib/python3.7/site-packages/kolibri/dist/django/conf/__init__.py", line 56, in __getattr__
self._setup(name)
File "/app/lib/python3.7/site-packages/kolibri/dist/django/conf/__init__.py", line 41, in _setup
self._wrapped = Settings(settings_module)
File "/app/lib/python3.7/site-packages/kolibri/dist/django/conf/__init__.py", line 110, in __init__
mod = importlib.import_module(self.SETTINGS_MODULE)
File "/usr/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/app/lib/python3.7/site-packages/kolibri_gnome/kolibri_settings.py", line 1, in <module>
from kolibri.deployment.default.settings.base import *
File "/app/lib/python3.7/site-packages/kolibri/deployment/default/settings/base.py", line 253, in <module>
TIME_ZONE = get_localzone().zone
File "/app/lib/python3.7/site-packages/kolibri/dist/tzlocal/unix.py", line 165, in get_localzone
_cache_tz = _get_localzone()
File "/app/lib/python3.7/site-packages/kolibri/dist/tzlocal/unix.py", line 90, in _get_localzone
utils.assert_tz_offset(tz)
File "/app/lib/python3.7/site-packages/kolibri/dist/tzlocal/utils.py", line 46, in assert_tz_offset
raise ValueError(msg)
ValueError: Timezone offset does not match system offset: -7200 != -10800. Please, check your config files.
WARNING:kolibri_gnome.kolibri_service.kolibri_service_monitor:Kolibri service has died
```
(It appears Kolibri is including an old version of pytz which has incorrect information about DST for this timezone, but let's consider that tangential to this issue).
### Steps to reproduce
Change your system timezone to "America/Sao_Paulo" and start Kolibri.
| [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"\nDjango settings for kolibri project.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/1.11/topics/settings/\n\nFor the full list of settings and their values, see\nhttps://docs.djangoproject.com/en/1.11/ref/settings/\n\"\"\"\nfrom __futu... | [
{
"content": "# -*- coding: utf-8 -*-\n\"\"\"\nDjango settings for kolibri project.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/1.11/topics/settings/\n\nFor the full list of settings and their values, see\nhttps://docs.djangoproject.com/en/1.11/ref/settings/\n\"\"\"\nfrom __futu... | diff --git a/kolibri/deployment/default/settings/base.py b/kolibri/deployment/default/settings/base.py
index 167a1dad4bb..627e66e8e0c 100644
--- a/kolibri/deployment/default/settings/base.py
+++ b/kolibri/deployment/default/settings/base.py
@@ -251,7 +251,7 @@
try:
TIME_ZONE = get_localzone().zone
-except pytz.UnknownTimeZoneError:
+except (pytz.UnknownTimeZoneError, ValueError):
# Do not fail at this point because a timezone was not
# detected.
TIME_ZONE = pytz.utc.zone
|
fedora-infra__bodhi-1042 | GET on /masher/ errors with a 404 response
GET on `/masher` works, but GET on `/masher/` returns an HTTP 404 error code. We should add a route to allow the trailing slash on this URL.
| [
{
"content": "# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope t... | [
{
"content": "# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope t... | diff --git a/bodhi/server/__init__.py b/bodhi/server/__init__.py
index 8cd02bcf9c..35befc34ef 100644
--- a/bodhi/server/__init__.py
+++ b/bodhi/server/__init__.py
@@ -191,7 +191,7 @@ def main(global_config, testing=None, session=None, **settings):
# Metrics
config.add_route('metrics', '/metrics')
- config.add_route('masher_status', '/masher')
+ config.add_route('masher_status', '/masher/')
# Auto-completion search
config.add_route('search_packages', '/search/packages')
|
networkx__networkx-2647 | Readthedocs pain
Readthedocs (RTD) is a pain to work with and keeps having timeout errors. I started to look into whether we can build the docs on our own and push them to RTD instead of having it built on the site. It would also make more sense to have the doc build process as part of our CI process, rather than only checked after the fact.
Has there been any discussion about moving away from RTD before (at least the build process)? If so, was there a reason not to move? I assume it is too late to move back to hosting the docs on github, but I thought I'd check since it might be easier to do.
| [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Sphinx documentation build configuration file, created by\n# sphinx-quickstart.py on Sat Mar 8 21:47:50 2008.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# The contents of this file are pickled, so don't put values in the ... | [
{
"content": "# -*- coding: utf-8 -*-\n#\n# Sphinx documentation build configuration file, created by\n# sphinx-quickstart.py on Sat Mar 8 21:47:50 2008.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# The contents of this file are pickled, so don't put values in the ... | diff --git a/.gitignore b/.gitignore
index 66bacd3f735..c97869cbe22 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@ doc/networkx-documentation.zip
doc/networkx_reference.pdf
doc/networkx_tutorial.pdf
doc/build
+doc/doc_build
.coverage
*.class
diff --git a/.travis.yml b/.travis.yml
index 34d88b799b7..398ebf72b28 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,42 +5,75 @@ sudo: false
language: python
-python:
- - "2.7"
- - "3.4"
- - "3.5"
- - "3.6"
-
cache:
directories:
- $HOME/.cache/pip
-addons:
- apt:
- packages:
- - libgdal-dev
- - graphviz
-
-env:
- matrix:
- - OPTIONAL_DEPS=pip
- - OPTIONAL_DEPS=no
-
matrix:
include:
+ - os: linux
+ python: 2.7
+ env:
+ - OPTIONAL_DEPS=1
+ - MINIMUM_REQUIREMENTS=1
+ - REPORT_COVERAGE=1
+ addons:
+ apt:
+ packages:
+ - libgdal-dev
+ - graphviz
+ - os: linux
+ python: 2.7
+ env:
+ - OPTIONAL_DEPS=1
+ - BUILD_DOCS=1
+ - DEPLOY_DOCS=1
+ addons:
+ apt:
+ packages:
+ - libgdal-dev
+ - graphviz
+ - texlive
+ - texlive-latex-extra
+ - latexmk
+ - os: linux
+ python: 3.6
+ env: OPTIONAL_DEPS=1
+ addons:
+ apt:
+ packages:
+ - libgdal-dev
+ - graphviz
+ - os: linux
+ python: 3.6
+ env:
+ - OPTIONAL_DEPS=1
+ - MINIMUM_REQUIREMENTS=1
+ addons:
+ apt:
+ packages:
+ - libgdal-dev
+ - graphviz
- os: osx
language: generic
- env: TRAVIS_PYTHON_VERSION=3.6
+ env:
+ - TRAVIS_PYTHON_VERSION=3.6.0
+ - OPTIONAL_DEPS=1
+ - OSX_PKG_ENV=miniconda
- os: osx
language: generic
- env: TRAVIS_PYTHON_VERSION=3.6.0 OPTIONAL_DEPS=pip OSX_PKG_ENV=miniconda
+ env: TRAVIS_PYTHON_VERSION=3.6
+ - python: 2.7
+ - python: 3.4
+ - python: 3.5
+ - python: 3.6
before_install:
# prepare the system to install prerequisites or dependencies
- source tools/travis/before_install.sh
- uname -a
- printenv
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+ - if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
source tools/travis/osx_install.sh;
else
source tools/travis/linux_install.sh;
@@ -50,7 +83,7 @@ install:
# install required packages
- pip install --upgrade pip
- pip install --retries 3 -r requirements.txt
- - if [[ "${OPTIONAL_DEPS}" == pip ]]; then
+ - if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
pip install --retries 3 -r requirements/extras.txt;
fi
# install networkx
@@ -61,13 +94,18 @@ install:
- pip list
script:
+ - if [[ "${BUILD_DOCS}" == 1 ]]; then
+ source tools/travis/build_docs.sh;
+ fi
- source tools/travis/script.sh
after_success:
- # Report coverage for 2.7 miniconda runs only.
- - if [[ "${TRAVIS_PYTHON_VERSION}${OPTIONAL_DEPS}" == 2\.7pip ]]; then
+ - if [[ "${REPORT_COVERAGE}" == 1 ]]; then
codecov;
fi
+ - if [[ "${BUILD_DOCS}" == 1 && "${DEPLOY_DOCS}" == 1 ]]; then
+ source tools/travis/deploy_docs.sh;
+ fi
notifications:
email: false
diff --git a/doc/Makefile b/doc/Makefile
index 7edc5a13236..48273cf1abd 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -105,6 +105,11 @@ doctest:
@echo "Testing of doctests in the sources finished, look at the " \
"results in build/doctest/output.txt."
+latexpdf: latex
+ @echo "Running LaTeX files through latexmk..."
+ $(MAKE) -C build/latex all-pdf
+ @echo "latexmk finished; the PDF files are in build/latex."
+
gitwash-update:
python ../tools/gitwash_dumper.py developer networkx \
--project-url=http://networkx.github.io \
diff --git a/doc/conf.py b/doc/conf.py
index d599efbb6ae..504259ca930 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -199,7 +199,7 @@
latex_appendices = ['tutorial']
# Intersphinx mapping
-intersphinx_mapping = {'https://docs.python.org/': None,
+intersphinx_mapping = {'https://docs.python.org/2/': None,
'https://docs.scipy.org/doc/numpy/': None,
}
diff --git a/requirements/doc.txt b/requirements/doc.txt
new file mode 100644
index 00000000000..47518e7eac2
--- /dev/null
+++ b/requirements/doc.txt
@@ -0,0 +1,6 @@
+sphinx>=1.6.3
+sphinx_rtd_theme>=0.2.4
+sphinx-gallery>=0.1.12
+pillow>=4.2.1
+nb2plots>=0.5.2
+texext>=0.5
diff --git a/requirements/extras.txt b/requirements/extras.txt
index a0b1fceafd3..35e83bb69d3 100644
--- a/requirements/extras.txt
+++ b/requirements/extras.txt
@@ -1,6 +1,6 @@
numpy>=1.12.0
scipy>=0.19.0
-pandas>=0.20.0
+pandas>=0.20.1
matplotlib>=2.0.2
pygraphviz>=1.3.1
pydot>=1.2.3
diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh
index af1b147ac91..a03aba8e499 100755
--- a/tools/travis/before_install.sh
+++ b/tools/travis/before_install.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-set -ex
+set -e
section () {
echo -en "travis_fold:start:$1\r"
@@ -12,4 +12,11 @@ section_end () {
export -f section
export -f section_end
-set +ex
+if [[ "${MINIMUM_REQUIREMENTS}" == 1 ]]; then
+ sed -i 's/>=/==/g' requirements/default.txt
+ sed -i 's/>=/==/g' requirements/extras.txt
+ sed -i 's/>=/==/g' requirements/test.txt
+ sed -i 's/>=/==/g' requirements/doc.txt
+fi
+
+set +e
diff --git a/tools/travis/build_docs.sh b/tools/travis/build_docs.sh
new file mode 100755
index 00000000000..294a348d5ea
--- /dev/null
+++ b/tools/travis/build_docs.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+set -e
+
+pip install --retries 3 -q -r requirements/doc.txt
+export SPHINXCACHE=$HOME/.cache/sphinx
+cd doc
+make html
+make doctest
+make latexpdf
+cd ..
+
+set +e
diff --git a/tools/travis/deploy-key.enc b/tools/travis/deploy-key.enc
new file mode 100644
index 00000000000..6b6d64d6641
--- /dev/null
+++ b/tools/travis/deploy-key.enc
@@ -0,0 +1,4 @@
+_'NXN�g� ƅՄ�}�L�b��˶���=���>����ɵ��f\�<X�O6��Z�>Z�c����{�
�
ǪN�ұ�$R����Kcä��5�#�c#0�`K�.���QqD'��U�ڈ���"_r�Q�����IRnhM��׀��������}���0�Q���s�\���:i�)���&�)�$���f(o)�.�#���C����
+���4���I����>ݗ����ڭ$��V�2u���o��D��0`$��*��
+�� �F�s���!�}_D,�X�0���VH��,���
+�EH8�����0���.�Y���<�~m�&�ba
�>]�gDŽ�l���U��X�����Z�I؈\��nH�^�s&�H���,
��: f@��h�R���������2h6���3�
\ No newline at end of file
diff --git a/tools/travis/deploy_docs.sh b/tools/travis/deploy_docs.sh
new file mode 100755
index 00000000000..6adae88747a
--- /dev/null
+++ b/tools/travis/deploy_docs.sh
@@ -0,0 +1,59 @@
+#!/usr/bin/env bash
+
+set -e
+
+section "Deploy docs"
+if [[ $TRAVIS_PULL_REQUEST == false && $TRAVIS_BRANCH == "master" && $BUILD_DOCS == 1 && $DEPLOY_DOCS == 1 ]]
+then
+ # "A deploy key is an SSH key that is stored on your server and grants access to a single GitHub repository.
+ # This key is attached directly to the repository instead of to a personal user account."
+ # -- https://developer.github.com/v3/guides/managing-deploy-keys/#deploy-keys
+ #
+ # $ ssh-keygen -t ed25519 -C "Networkx Travis Bot" -f deploy-key
+ # Your identification has been saved in deploy-key.
+ # Your public key has been saved in deploy-key.pub.
+ #
+ # Add the deploy-key.pub contents to your repo's settings under Settings -> Deploy Keys.
+ # Encrypt the private deploy-key for Travis-CI and commit it to the repo
+ #
+ # $ gem install travis
+ # $ travis login
+ # $ travis encrypt-file deploy-key
+ # storing result as deploy-key.enc
+ #
+ # The ``travis encrypt-file deploy-key`` command provides the ``openssl`` command below.
+
+ # Decrypt the deploy-key with the Travis-CI key
+ openssl aes-256-cbc -K $encrypted_64abb7a9cf51_key -iv $encrypted_64abb7a9cf51_iv -in tools/travis/deploy-key.enc -out deploy-key -d
+ chmod 600 deploy-key
+ eval `ssh-agent -s`
+ ssh-add deploy-key
+
+ # Push the docs to the gh-pages branch of the networkx/dev-docs repo
+ GH_REF=git@github.com:networkx/dev-docs.git
+ echo "-- pushing docs --"
+ (
+ git config --global user.email "travis@travis-ci.com"
+ git config --global user.name "NetworkX Travis Bot"
+
+ cd doc
+ git clone --quiet --branch=gh-pages ${GH_REF} doc_build
+ cd doc_build
+
+ # Overwrite previous commit
+ git rm -rf .
+ cp -a ../build/html/* .
+ cp -a ../build/latex/networkx_reference.pdf _downloads/.
+ touch .nojekyll
+ git add -A
+ git commit --amend --no-edit
+
+ git push --force --quiet "${GH_REF}" gh-pages > /dev/null 2>&1
+ cd ../..
+ )
+else
+ echo "-- will only push docs from master --"
+fi
+section_end "Deploy docs"
+
+set +e
diff --git a/tools/travis/linux_install.sh b/tools/travis/linux_install.sh
index ca08f0171af..f3e41fe9d53 100755
--- a/tools/travis/linux_install.sh
+++ b/tools/travis/linux_install.sh
@@ -1,11 +1,11 @@
#!/usr/bin/env bash
-set -ex
+set -e
# create new empty venv
virtualenv -p python ~/venv
source ~/venv/bin/activate
-if [[ "${OPTIONAL_DEPS}" == pip ]]; then
+if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
# needed to build Python binding for GDAL
export CPLUS_INCLUDE_PATH=/usr/include/gdal
@@ -29,4 +29,4 @@ EOF
fi
-set +ex
+set +e
diff --git a/tools/travis/osx_install.sh b/tools/travis/osx_install.sh
index 5e597d5cfa6..0fd0879030e 100755
--- a/tools/travis/osx_install.sh
+++ b/tools/travis/osx_install.sh
@@ -21,7 +21,7 @@ else
get_macpython_environment $TRAVIS_PYTHON_VERSION venv
fi
-if [[ "${OPTIONAL_DEPS}" == pip ]]; then
+if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
if [[ "${OSX_PKG_ENV}" == miniconda ]]; then
conda install graphviz
export PKG_CONFIG_PATH=/Users/travis/miniconda/envs/testenv/lib/pkgconfig
diff --git a/tools/travis/script.sh b/tools/travis/script.sh
index 3f65b94a131..108ffe892c3 100755
--- a/tools/travis/script.sh
+++ b/tools/travis/script.sh
@@ -1,15 +1,17 @@
#!/usr/bin/env bash
+set -e
+
section "Script section"
-set -ex
-export NX_INSTALL=`pip show networkx | grep Location | awk '{print $2"/networkx"}'`;
+export NX_SOURCE=$PWD
+export NX_INSTALL=$(pip show networkx | grep Location | awk '{print $2"/networkx"}')
# nose 1.3.0 does not tell coverage to only cover the requested
# package (except during the report). So to restrict coverage, we must
# inform coverage through the .coveragerc file.
-cp .coveragerc $NX_INSTALL;
-cp setup.cfg $NX_INSTALL;
+cp .coveragerc $NX_INSTALL
+cp setup.cfg $NX_INSTALL
# Move to new directory so that networkx is not imported from repository.
# Why? Because we want the tests to make sure that NetworkX was installed
@@ -17,11 +19,19 @@ cp setup.cfg $NX_INSTALL;
# Testing from the git repository cannot catch a mistake like that.
#
# Export current directory for logs.
-cd $NX_INSTALL;
-printenv PWD;
+cd $NX_INSTALL
+printenv PWD
# Run nosetests.
-nosetests --verbosity=2 --with-ignore-docstrings --with-coverage --cover-package=networkx;
+if [[ "${REPORT_COVERAGE}" == 1 ]]; then
+ nosetests --verbosity=2 --with-ignore-docstrings --with-coverage --cover-package=networkx
+ cp -a .coverage $NX_SOURCE
+else
+ nosetests --verbosity=2 --with-ignore-docstrings
+fi
+
+cd $NX_SOURCE
-set +ex
section_end "Script section"
+
+set +e
|
PrefectHQ__prefect-2467 | Feature/#2439 prefect server telemetry
**Thanks for contributing to Prefect!**
Please describe your work and make sure your PR:
- [x] adds new tests (if appropriate)
- [x] updates `CHANGELOG.md` (if appropriate)
- [x] updates docstrings for any new functions or function arguments, including `docs/outline.toml` for API reference docs (if appropriate)
Note that your PR will not be reviewed unless all three boxes are checked.
## What does this PR change?
This PR closes #2467 and adds some minimal telemetry to Prefect Server.
## Why is this PR important?
This is the first step into collecting usage information that can help the Prefect team understand how Prefect Server is being used and how we can make it better.
| [
{
"content": "import os\nimport shutil\nimport subprocess\nimport tempfile\nimport time\nfrom pathlib import Path\n\nimport click\nimport yaml\n\nimport prefect\nfrom prefect import config\nfrom prefect.utilities.configuration import set_temporary_config\nfrom prefect.utilities.docker_util import platform_is_li... | [
{
"content": "import os\nimport shutil\nimport subprocess\nimport tempfile\nimport time\nfrom pathlib import Path\n\nimport click\nimport yaml\n\nimport prefect\nfrom prefect import config\nfrom prefect.utilities.configuration import set_temporary_config\nfrom prefect.utilities.docker_util import platform_is_li... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6fec2af82e13..5fa3c51ba80c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,7 @@ These changes are available in the [release/0.11.0 branch](https://github.com/Pr
### Server
- Add "cancellation-lite" semantic by preventing task runs from running if the flow run isn't running - [#2535](https://github.com/PrefectHQ/prefect/pull/2535)
+- Add minimal telemetry to Prefect Server [#2467](https://github.com/PrefectHQ/prefect/pull/2467)
### Task Library
@@ -22,7 +23,7 @@ These changes are available in the [release/0.11.0 branch](https://github.com/Pr
### Fixes
-- Fix bug in Kubernetes agent ``deployment.yaml`` with a misconfigured liveness probe - [#2519](https://github.com/PrefectHQ/prefect/pull/2519)
+- Fix bug in Kubernetes agent `deployment.yaml` with a misconfigured liveness probe - [#2519](https://github.com/PrefectHQ/prefect/pull/2519)
### Deprecations
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index 1ef46f6db3de..54b7c571007b 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -3,10 +3,10 @@ const sidebar98 = require('../api/0.9.8/sidebar')
const glob = require('glob')
// function for loading all MD files in a directory
-const getChildren = function (parent_path, dir) {
+const getChildren = function(parent_path, dir) {
return glob
.sync(parent_path + '/' + dir + '/**/*.md')
- .map((path) => {
+ .map(path => {
// remove "parent_path" and ".md"
path = path.slice(parent_path.length + 1, -3)
// remove README
@@ -224,6 +224,11 @@ module.exports = {
'recipes/k8s_docker_sidecar'
]
},
+ {
+ title: 'Server',
+ collapsable: true,
+ children: ['server/telemetry']
+ },
{
title: 'FAQ',
collapsable: true,
diff --git a/docs/orchestration/server/telemetry.md b/docs/orchestration/server/telemetry.md
new file mode 100644
index 000000000000..77827074a5bc
--- /dev/null
+++ b/docs/orchestration/server/telemetry.md
@@ -0,0 +1,18 @@
+# Telemetry
+
+Prefect Server sends usage telemetry and statistics to Prefect Technologies, Inc. All information collected is anonymous. We use this information to better understand how Prefect Server is used and to ensure that we're supporting active versions.
+
+To opt-out of telemetry, add the following to your user configuration file (see [user configuration](../../core/concepts/configuration.md#user-configuration)).
+
+```toml
+[server.telemetry]
+enabled = false
+```
+
+As an environment variable this would be:
+
+```bash
+export PREFECT_SERVER__TELEMETRY__ENABLED=false
+```
+
+See [configuration](../../core/concepts/configuration.md) for more details.
diff --git a/server/docker/docker-compose.yml b/server/docker/docker-compose.yml
index d751c9674384..5dcbde17e2c4 100644
--- a/server/docker/docker-compose.yml
+++ b/server/docker/docker-compose.yml
@@ -73,6 +73,7 @@ services:
HASURA_API_URL: ${HASURA_API_URL:-http://hasura:3000/v1alpha1/graphql}
PREFECT_API_URL: ${PREFECT_API_URL:-http://graphql:4201/graphql/}
PREFECT_API_HEALTH_URL: ${PREFECT_API_HEALTH_URL:-http://graphql:4201/health}
+ PREFECT_SERVER__TELEMETRY__ENABLED: ${PREFECT_SERVER__TELEMETRY__ENABLED:-true}
networks:
- prefect-server
restart: "always"
diff --git a/server/services/apollo/package-lock.json b/server/services/apollo/package-lock.json
index 840f8352bee7..e9d8910ac2b8 100644
--- a/server/services/apollo/package-lock.json
+++ b/server/services/apollo/package-lock.json
@@ -1565,6 +1565,13 @@
"deprecated-decorator": "^0.1.6",
"iterall": "^1.1.3",
"uuid": "^3.1.0"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
}
}
}
@@ -1615,6 +1622,13 @@
"deprecated-decorator": "^0.1.6",
"iterall": "^1.1.3",
"uuid": "^3.1.0"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
}
}
}
@@ -1676,6 +1690,13 @@
"deprecated-decorator": "^0.1.6",
"iterall": "^1.1.3",
"uuid": "^3.1.0"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
}
}
}
@@ -4852,6 +4873,13 @@
"deprecated-decorator": "^0.1.6",
"iterall": "^1.1.3",
"uuid": "^3.1.0"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
}
},
"graphql-upload": {
@@ -8306,6 +8334,12 @@
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
"integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
"dev": true
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
}
}
},
@@ -9602,9 +9636,9 @@
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
},
"uuid": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
- "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz",
+ "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw=="
},
"v8flags": {
"version": "3.1.3",
diff --git a/server/services/apollo/package.json b/server/services/apollo/package.json
index 286d82d04a58..f78debda4cc7 100644
--- a/server/services/apollo/package.json
+++ b/server/services/apollo/package.json
@@ -25,7 +25,8 @@
"graphql-depth-limit": "^1.1.0",
"graphql-tools": "^3.0.4",
"jsonwebtoken": "^8.5.1",
- "node-fetch": "^2.3.0"
+ "node-fetch": "^2.3.0",
+ "uuid": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
diff --git a/server/services/apollo/src/index.js b/server/services/apollo/src/index.js
index 1a08a1b69c55..ba3b39451fb1 100644
--- a/server/services/apollo/src/index.js
+++ b/server/services/apollo/src/index.js
@@ -10,6 +10,7 @@ import {
FilterRootFields
} from 'apollo-server'
import { HttpLink } from 'apollo-link-http'
+import { v4 as uuidv4 } from 'uuid'
const APOLLO_API_PORT = process.env.APOLLO_API_PORT || '4200'
const APOLLO_API_BIND_ADDRESS = process.env.APOLLO_API_BIND_ADDRESS || '0.0.0.0'
@@ -23,6 +24,12 @@ const PREFECT_API_URL =
const PREFECT_API_HEALTH_URL =
process.env.PREFECT_API_HEALTH_URL || 'http://localhost:4201/health'
+const PREFECT_SERVER__TELEMETRY__ENABLED =
+ process.env.PREFECT_SERVER__TELEMETRY__ENABLED || 'false'
+// Convert from a TOML boolean to a JavaScript boolean
+const TELEMETRY_ENABLED =
+ PREFECT_SERVER__TELEMETRY__ENABLED == 'true' ? true : false
+const TELEMETRY_ID = uuidv4()
// --------------------------------------------------------------------
// Server
const depthLimit = require('graphql-depth-limit')
@@ -162,6 +169,12 @@ function sleep(ms) {
async function runServerForever() {
try {
await runServer()
+ send_telemetry_event('startup')
+ if (TELEMETRY_ENABLED) {
+ setInterval(() => {
+ send_telemetry_event('heartbeat')
+ }, 600000) // send heartbeat every 10 minutes
+ }
} catch (e) {
log(e, e.message, e.stack)
log('\nTrying again in 3 seconds...\n')
@@ -170,4 +183,29 @@ async function runServerForever() {
}
}
+async function send_telemetry_event(event) {
+ if (TELEMETRY_ENABLED) {
+ try {
+ // TODO add timeout
+ const body = JSON.stringify({
+ source: 'prefect_server',
+ type: event,
+ payload: { id: TELEMETRY_ID }
+ })
+ log(`Sending telemetry to Prefect Technnologies, Inc: ${body}`)
+
+ fetch('https://sens-o-matic.prefect.io/', {
+ method: 'post',
+ body,
+ headers: {
+ 'Content-Type': 'application/json',
+ 'X-Prefect-Event': 'prefect_server-0.0.1'
+ }
+ })
+ } catch (error) {
+ log(`Error sending telemetry event: ${error.message}`)
+ }
+ }
+}
+
runServerForever()
diff --git a/src/prefect/cli/docker-compose.yml b/src/prefect/cli/docker-compose.yml
index c07c4f4db715..d7f8c9f80951 100644
--- a/src/prefect/cli/docker-compose.yml
+++ b/src/prefect/cli/docker-compose.yml
@@ -67,6 +67,7 @@ services:
HASURA_API_URL: ${HASURA_API_URL:-http://hasura:3000/v1alpha1/graphql}
PREFECT_API_URL: ${PREFECT_API_URL:-http://graphql:4201/graphql/}
PREFECT_API_HEALTH_URL: ${PREFECT_API_HEALTH_URL:-http://graphql:4201/health}
+ PREFECT_SERVER__TELEMETRY__ENABLED: ${PREFECT_SERVER__TELEMETRY__ENABLED:-true}
networks:
- prefect-server
restart: "always"
diff --git a/src/prefect/cli/server.py b/src/prefect/cli/server.py
index 361bb6723aaf..a848651129c8 100644
--- a/src/prefect/cli/server.py
+++ b/src/prefect/cli/server.py
@@ -38,6 +38,9 @@ def make_env(fname=None):
port=config.server.graphql.port
),
APOLLO_HOST_PORT=config.server.host_port,
+ PREFECT_SERVER__TELEMETRY__ENABLED=(
+ "true" if config.server.telemetry.enabled is True else "false"
+ ),
)
POSTGRES_ENV = dict(
diff --git a/src/prefect/config.toml b/src/prefect/config.toml
index 68382483d966..0d115257280b 100644
--- a/src/prefect/config.toml
+++ b/src/prefect/config.toml
@@ -46,6 +46,9 @@ endpoint = "${server.host}:${server.port}"
endpoint = "${server.ui.host}:${server.ui.port}"
graphql_url = "http://localhost:4200/graphql"
+ [server.telemetry]
+ enabled = true
+
[cloud]
api = "${${backend}.endpoint}"
endpoint = "https://api.prefect.io"
|
imAsparky__django-cookiecutter-202 | [BUG]: Selecting django-allauth=n does not remove django-allauth HTML templates.
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- imAsparky cookiecutter-pypackage version:
- Python version:
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
| [
{
"content": "#!/usr/bin/env python\n\"\"\"django-cookiecutter post project generation jobs.\"\"\"\nimport os\nimport subprocess # nosec\nfrom shutil import rmtree\n\nPROJECT_DIRECTORY = os.path.realpath(os.path.curdir)\n\nREMOTE_REPO = \"git@github.com:{{cookiecutter.github_username}}/\\\n{{cookiecutter.git_p... | [
{
"content": "#!/usr/bin/env python\n\"\"\"django-cookiecutter post project generation jobs.\"\"\"\nimport os\nimport subprocess # nosec\nfrom shutil import rmtree\n\nPROJECT_DIRECTORY = os.path.realpath(os.path.curdir)\n\nREMOTE_REPO = \"git@github.com:{{cookiecutter.github_username}}/\\\n{{cookiecutter.git_p... | diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py
index fb39b27c..304bd5a3 100644
--- a/hooks/post_gen_project.py
+++ b/hooks/post_gen_project.py
@@ -53,6 +53,8 @@
compose {% endif %}',
'{% if cookiecutter.deploy_with_docker == "n" %} \
docker-entrypoint.sh {% endif %}',
+ '{% if cookiecutter.use_django_allauth == "n" %} \
+ templates/account {% endif %}',
]
# Helper functions
diff --git a/tests/test_bake_django.py b/tests/test_bake_django.py
index 5d6b1614..8f4bd269 100644
--- a/tests/test_bake_django.py
+++ b/tests/test_bake_django.py
@@ -76,6 +76,24 @@ def test_baked_django_without_allauth_settings_ok(cookies):
)
+def test_baked_django_with_allauth_templates_ok(cookies):
+ """Test Django allauth HTML templates have been generated."""
+ default_django = cookies.bake()
+
+ templates_path = default_django.project_path / "templates/account"
+
+ assert os.path.isdir(templates_path)
+
+
+def test_baked_django_without_allauth_templates_ok(cookies):
+ """Test Django allauth HTML templates have not been generated."""
+ non_default_django = cookies.bake(extra_context={"use_django_allauth": "n"})
+
+ templates_path = non_default_django.project_path / "templates/account"
+
+ assert not os.path.isdir(templates_path)
+
+
def test_baked_django_with_allauth_url_ok(cookies):
"""Test Django allauth url.py file entry has been generated."""
default_django = cookies.bake()
|
yt-project__yt-2259 | Index Error updating from YT-3.4.0 to YT-3.5.1
<!--To help us understand and resolve your issue, please fill out the form to
the best of your ability.-->
<!--You can feel free to delete the sections that do not apply.-->
### Bug report
**Bug summary**
Index error after yt upgrade
**Code for reproduction**
<!--A minimum code snippet required to reproduce the bug, also minimizing the
number of dependencies required.-->
<!-- If you need to use a data file to trigger the issue you're having, consider
using one of the datasets from the yt data hub (http://yt-project.org/data). If
your issue cannot be triggered using a public dataset, you can use the yt
curldrop (https://docs.hub.yt/services.html#curldrop) to share data
files. Please include a link to the dataset in the issue if you use the
curldrop.-->
```
import yt
from yt.units import kpc
import matplotlib.pyplot as plt
import numpy as np
np.set_printoptions(threshold=1500)
filename="/lunarc/nobackup/users/samvad/FINAL-50-0.5/output/output_00018/info_00018.txt"
ds=yt.load(filename)
for i in sorted(ds.derived_field_list):
print(i)
```
**Actual outcome**
<!--The output produced by the above code, which may be a screenshot, console
output, etc.-->
```
File "fields.py", line 10, in <module>
for i in sorted(ds.derived_field_list):
File "yt/data_objects/static_output.py", line 216, in ireq
self.index
File "yt/data_objects/static_output.py", line 509, in index
self, dataset_type=self.dataset_type)
File "yt/frontends/ramses/data_structures.py", line 236, in __init__
super(RAMSESIndex, self).__init__(ds, dataset_type)
File "yt/geometry/geometry_handler.py", line 50, in __init__
self._setup_geometry()
File "yt/geometry/oct_geometry_handler.py", line 25, in _setup_geometry
self._initialize_oct_handler()
File "yt/frontends/ramses/data_structures.py", line 245, in _initialize_oct_handler
for i in cpu_list]
File "yt/frontends/ramses/data_structures.py", line 245, in <listcomp>
for i in cpu_list]
File "yt/frontends/ramses/data_structures.py", line 82, in __init__
self._read_amr_header()
File "yt/frontends/ramses/data_structures.py", line 141, in _read_amr_header
hvals.update(f.read_attrs(header))
File "yt/utilities/cython_fortran_utils.pyx", line 223, in yt.utilities.cython_fortran_utils.FortranFile.read_attrs
IndexError: index 0 is out of bounds for axis 0 with size 0
```
**Expected outcome**
has to print the fields in the data. Was working with yt 3.4.0
**Version Information**
<!--Please specify your platform and versions of the relevant libraries you are
using:-->
* Operating System: Mac
* Python Version: 3.6
* yt version: 3.5.1
* Other Libraries (if applicable):
installed Anaconda separately and then did conda installation of YT using 'forge'
<!--Please tell us how you installed yt and python e.g., from source,
pip, conda. If you installed from conda, please specify which channel you used
if not the default-->
| [
{
"content": "\"\"\"\nDefinitions for RAMSES files\n\n\n\n\n\"\"\"\n\n#-----------------------------------------------------------------------------\n# Copyright (c) 2013, yt Development Team.\n#\n# Distributed under the terms of the Modified BSD License.\n#\n# The full license is in the file COPYING.txt, distr... | [
{
"content": "\"\"\"\nDefinitions for RAMSES files\n\n\n\n\n\"\"\"\n\n#-----------------------------------------------------------------------------\n# Copyright (c) 2013, yt Development Team.\n#\n# Distributed under the terms of the Modified BSD License.\n#\n# The full license is in the file COPYING.txt, distr... | diff --git a/yt/frontends/ramses/definitions.py b/yt/frontends/ramses/definitions.py
index 9cc8278edaf..78b20ed4e70 100644
--- a/yt/frontends/ramses/definitions.py
+++ b/yt/frontends/ramses/definitions.py
@@ -42,7 +42,8 @@ def ramses_header(hvals):
('stat', 3, 'd'),
('cosm', 7, 'd'),
('timing', 5, 'd'),
- ('mass_sph', 1, 'd') )
+ ('mass_sph', 1, 'd', True)
+ )
yield next_set
field_aliases = {
diff --git a/yt/frontends/ramses/tests/test_outputs.py b/yt/frontends/ramses/tests/test_outputs.py
index 768192301e1..a18ac02179d 100644
--- a/yt/frontends/ramses/tests/test_outputs.py
+++ b/yt/frontends/ramses/tests/test_outputs.py
@@ -373,10 +373,10 @@ def test_formation_time():
@requires_file(ramses_new_format)
def test_cooling_fields():
-
+
#Test the field is being loaded correctly
ds=yt.load(ramses_new_format)
-
+
#Derived cooling fields
assert ('gas','cooling_net') in ds.derived_field_list
assert ('gas','cooling_total') in ds.derived_field_list
@@ -395,7 +395,7 @@ def test_cooling_fields():
assert ('gas','heating_primordial_prime') in ds.derived_field_list
assert ('gas','heating_compton_prime') in ds.derived_field_list
assert ('gas','mu') in ds.derived_field_list
-
+
#Abundances
assert ('gas','Electron_number_density') in ds.derived_field_list
assert ('gas','HI_number_density') in ds.derived_field_list
@@ -426,3 +426,15 @@ def _mixed_field(field, data):
# Access the field
ds.r[('gas', 'mixed_files')]
+
+ramses_empty_record = "ramses_empty_record/output_00003/info_00003.txt"
+@requires_file(ramses_empty_record)
+def test_ramses_empty_record():
+ # Test that yt can load datasets with empty records
+ ds = yt.load(ramses_empty_record)
+
+ # This should not fail
+ ds.index
+
+ # Access some field
+ ds.r[('gas', 'density')]
\ No newline at end of file
diff --git a/yt/utilities/cython_fortran_utils.pyx b/yt/utilities/cython_fortran_utils.pyx
index f52c9a8773e..25acce3fb7c 100644
--- a/yt/utilities/cython_fortran_utils.pyx
+++ b/yt/utilities/cython_fortran_utils.pyx
@@ -190,8 +190,12 @@ cdef class FortranFile:
attrs : iterable of iterables
This object should be an iterable of one of the formats:
[ (attr_name, count, struct type), ... ].
- [ ((name1,name2,name3),count, vector type]
- [ ((name1,name2,name3),count, 'type type type']
+ [ ((name1,name2,name3), count, vector type]
+ [ ((name1,name2,name3), count, 'type type type']
+ [ (attr_name, count, struct type, optional)]
+
+ `optional` : boolean.
+ If True, the attribute can be stored as an empty Fortran record.
Returns
-------
@@ -218,12 +222,28 @@ cdef class FortranFile:
data = {}
- for key, n, dtype in attrs:
+ for a in attrs:
+ if len(a) == 3:
+ key, n, dtype = a
+ optional = False
+ else:
+ key, n, dtype, optional = a
if n == 1:
- data[key] = self.read_vector(dtype)[0]
+ tmp = self.read_vector(dtype)
+ if len(tmp) == 0 and optional:
+ continue
+ elif len(tmp) == 1:
+ data[key] = tmp[0]
+ else:
+ raise ValueError("Expected a record of length %s, got %s" % (n, len(tmp)))
else:
tmp = self.read_vector(dtype)
- if type(key) == tuple:
+ if len(tmp) == 0 and optional:
+ continue
+ elif len(tmp) != n:
+ raise ValueError("Expected a record of length %s, got %s" % (n, len(tmp)))
+
+ if isinstance(key, tuple):
# There are multiple keys
for ikey in range(n):
data[key[ikey]] = tmp[ikey]
|
rucio__rucio-1028 | Move conveyor transfers to third_party_copy_operation
Motivation
----------
At the moment read is used for source and write is used for destination, for both third_party_copy should be used.
| [
{
"content": "\n'''\nThis file is automatically generated; Do not edit it. :)\n'''\nVERSION_INFO = {\n 'final': True,\n 'version': '1.15.3',\n 'branch_nick': 'patch-0-Rucio_1_15_3_preparation',\n 'revision_id': 'cd14416223d0b81a940312cb180a07778f85f1f8',\n 'revno': 6357\n}\n",
"path": "lib/ru... | [
{
"content": "\n'''\nThis file is automatically generated; Do not edit it. :)\n'''\nVERSION_INFO = {\n 'final': True,\n 'version': '1.15.4',\n 'branch_nick': 'patch-0-Rucio_1_15_4_preparation',\n 'revision_id': 'c2972be03297dc73a65d35bc9ffab1516efffebb',\n 'revno': 6402\n}\n",
"path": "lib/ru... | diff --git a/doc/source/releasenotes/1.15.4.rst b/doc/source/releasenotes/1.15.4.rst
new file mode 100644
index 0000000000..5bcb57f505
--- /dev/null
+++ b/doc/source/releasenotes/1.15.4.rst
@@ -0,0 +1,35 @@
+======
+1.15.4
+======
+
+-------
+General
+-------
+
+************
+Enhancements
+************
+
+- Core & Internals: rucio-judge-cleaner traceback against postgres `#722 <https://github.com/rucio/rucio/issues/722>`_
+- Core & Internals: Keyword parameters should always be used for instansiating datetime.timedelta `#807 <https://github.com/rucio/rucio/issues/807>`_
+- Documentation: Add external link for ActiveMQ for people joining the project `#1001 <https://github.com/rucio/rucio/issues/1001>`_
+- Documentation: Typographical Review of Documentation Files `#985 <https://github.com/rucio/rucio/issues/985>`_
+- Release management: Add python3 in the rucio dev docker image `#973 <https://github.com/rucio/rucio/issues/973>`_
+
+-------
+Clients
+-------
+
+************
+Enhancements
+************
+
+- Clients: section policy/support/rucio_support missing in rucio.cfg template and tests `#976 <https://github.com/rucio/rucio/issues/976>`_
+
+****
+Bugs
+****
+
+- Clients: Error with python3: the JSON object must be str, not 'bytes' `#964 <https://github.com/rucio/rucio/issues/964>`_
+- Clients: Client AttributeError when the server returns nothing `#965 <https://github.com/rucio/rucio/issues/965>`_
+- Release management: setup_clients.py classifiers needs to be a list, not tuples `#949 <https://github.com/rucio/rucio/issues/949>`_
diff --git a/lib/rucio/vcsversion.py b/lib/rucio/vcsversion.py
index c3ca549c50..132ef98aad 100644
--- a/lib/rucio/vcsversion.py
+++ b/lib/rucio/vcsversion.py
@@ -4,8 +4,8 @@
'''
VERSION_INFO = {
'final': True,
- 'version': '1.15.3',
- 'branch_nick': 'patch-0-Rucio_1_15_3_preparation',
- 'revision_id': 'cd14416223d0b81a940312cb180a07778f85f1f8',
- 'revno': 6357
+ 'version': '1.15.4',
+ 'branch_nick': 'patch-0-Rucio_1_15_4_preparation',
+ 'revision_id': 'c2972be03297dc73a65d35bc9ffab1516efffebb',
+ 'revno': 6402
}
diff --git a/lib/rucio/web/ui/static/webui_version b/lib/rucio/web/ui/static/webui_version
index 94a53c73c0..66dd6a22f2 100644
--- a/lib/rucio/web/ui/static/webui_version
+++ b/lib/rucio/web/ui/static/webui_version
@@ -1 +1 @@
-1.15.3
\ No newline at end of file
+1.15.4
\ No newline at end of file
|
meltano__meltano-6676 | bug: Test connector - asyncio
### Meltano Version
2.4.0
### Python Version
3.9
### Bug scope
CLI (options, error messages, logging, etc.)
### Operating System
Rocky Linux release 8.6
### Description
```
meltano config tap-postgres test
```
above command works fine till version 2.1.0 and python 3.9.7.
But it fails when i switched to 2.2.0,2.3.0 and 2.4.0
```
Exception ignored in: <function BaseSubprocessTransport.__del__ at 0x7fcad8ae8670>
Traceback (most recent call last):
File "/usr/lib64/python3.9/asyncio/base_subprocess.py", line 126, in __del__
self.close()
File "/usr/lib64/python3.9/asyncio/base_subprocess.py", line 104, in close
proto.pipe.close()
File "/usr/lib64/python3.9/asyncio/unix_events.py", line 536, in close
self._close(None)
File "/usr/lib64/python3.9/asyncio/unix_events.py", line 560, in _close
self._loop.call_soon(self._call_connection_lost, exc)
File "/usr/lib64/python3.9/asyncio/base_events.py", line 746, in call_soon
self._check_closed()
File "/usr/lib64/python3.9/asyncio/base_events.py", line 510, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
```
To fix it , I changed file in `cli/config.y`:
```diff
-- is_valid, detail = asyncio.run(_validate()) (removed)
++is_valid, detail = asyncio.new_event_loop().run_until_complete(_validate()) (added)
```
Kindly get it check at your end and fix it in coming releases.
### Code
To fix it, I changed file in `cli/config.py`:
```diff
- is_valid, detail = asyncio.run(_validate())
+ is_valid, detail = asyncio.new_event_loop().run_until_complete(_validate())
```
| [
{
"content": "\"\"\"Plugin invoker class.\"\"\"\n\nfrom __future__ import annotations\n\nimport asyncio\nimport enum\nimport logging\nimport os\nimport uuid\nfrom contextlib import asynccontextmanager\nfrom pathlib import Path\nfrom typing import Any, Generator\n\nfrom structlog.stdlib import get_logger\n\nfrom... | [
{
"content": "\"\"\"Plugin invoker class.\"\"\"\n\nfrom __future__ import annotations\n\nimport asyncio\nimport enum\nimport logging\nimport os\nimport uuid\nfrom contextlib import asynccontextmanager\nfrom pathlib import Path\nfrom typing import Any, Generator\n\nfrom structlog.stdlib import get_logger\n\nfrom... | diff --git a/src/meltano/core/plugin_invoker.py b/src/meltano/core/plugin_invoker.py
index 7d6d238391..6f54d2c952 100644
--- a/src/meltano/core/plugin_invoker.py
+++ b/src/meltano/core/plugin_invoker.py
@@ -433,7 +433,7 @@ async def _invoke(
self.plugin, self.plugin.executable
) from err
- async def invoke_async(self, *args, **kwargs):
+ async def invoke_async(self, *args, **kwargs) -> asyncio.subprocess.Process:
"""Invoke a command.
Args:
diff --git a/src/meltano/core/plugin_test_service.py b/src/meltano/core/plugin_test_service.py
index 8f56a7f22c..47a6031d9e 100644
--- a/src/meltano/core/plugin_test_service.py
+++ b/src/meltano/core/plugin_test_service.py
@@ -18,12 +18,24 @@ class PluginTestServiceFactory:
"""Factory class to resolve a plugin test service."""
def __init__(self, plugin_invoker: PluginInvoker):
- """Construct a PluginTestServiceFactory instance."""
+ """Construct a PluginTestServiceFactory instance.
+
+ Args:
+ plugin_invoker: The invocation instance of the plugin to test.
+ """
self.plugin_invoker = plugin_invoker
def get_test_service(self):
- """Resolve a test service instance for a plugin type."""
+ """Resolve a test service instance for a plugin type.
+
+ Returns:
+ The test service instance.
+
+ Raises:
+ PluginNotSupportedError: If the plugin type is not supported for testing.
+ """
test_services = {PluginType.EXTRACTORS: ExtractorTestService}
+
try:
return test_services[self.plugin_invoker.plugin.type](self.plugin_invoker)
except KeyError as err:
@@ -34,19 +46,27 @@ class PluginTestService(ABC):
"""Abstract base class for plugin test operations."""
def __init__(self, plugin_invoker: PluginInvoker):
- """Construct a PluginTestService instance."""
+ """Construct a PluginTestService instance.
+
+ Args:
+ plugin_invoker: The invocation instance of the plugin to test
+ """
self.plugin_invoker = plugin_invoker
@abstractmethod
- def validate(self) -> bool | str:
+ async def validate(self) -> tuple[bool, str]:
"""Abstract method to validate plugin configuration."""
class ExtractorTestService(PluginTestService):
"""Handle extractor test operations."""
- async def validate(self) -> bool | str:
- """Validate extractor configuration."""
+ async def validate(self) -> tuple[bool, str]:
+ """Validate extractor configuration.
+
+ Returns:
+ The validation result and supporting context message (if applicable).
+ """
process = None
try:
@@ -71,8 +91,13 @@ async def validate(self) -> bool | str:
if message_type == "RECORD":
process.terminate()
- return True, None
+ break
- await process.wait()
+ returncode = await process.wait()
- return False, last_line if process.returncode else "No RECORD message received"
+ # considered valid if subprocess is terminated (exit status < 0) on RECORD message received
+ # see https://docs.python.org/3/library/subprocess.html#subprocess.CompletedProcess.returncode
+ return (
+ returncode < 0,
+ last_line if returncode else "No RECORD message received",
+ )
diff --git a/tests/meltano/api/controllers/test_orchestration.py b/tests/meltano/api/controllers/test_orchestration.py
index dd58bed53b..07202349e9 100644
--- a/tests/meltano/api/controllers/test_orchestration.py
+++ b/tests/meltano/api/controllers/test_orchestration.py
@@ -133,8 +133,8 @@ def test_test_plugin_configuration_success(
mock_invoke = mock.Mock()
mock_invoke.sterr.at_eof.side_effect = True
mock_invoke.stdout.at_eof.side_effect = (False, True)
- mock_invoke.wait = AsyncMock(return_value=0)
- mock_invoke.returncode = 0
+ mock_invoke.wait = AsyncMock(return_value=-1)
+ mock_invoke.returncode = -1
payload = json.dumps({"type": "RECORD"}).encode()
mock_invoke.stdout.readline = AsyncMock(return_value=b"%b" % payload)
diff --git a/tests/meltano/cli/test_config.py b/tests/meltano/cli/test_config.py
index 01cc47b318..45702978f8 100644
--- a/tests/meltano/cli/test_config.py
+++ b/tests/meltano/cli/test_config.py
@@ -78,8 +78,8 @@ def test_config_test(
mock_invoke = mock.Mock()
mock_invoke.sterr.at_eof.side_effect = True
mock_invoke.stdout.at_eof.side_effect = (False, True)
- mock_invoke.wait = AsyncMock(return_value=0)
- mock_invoke.returncode = 0
+ mock_invoke.wait = AsyncMock(return_value=-1)
+ mock_invoke.returncode = -1
payload = json.dumps({"type": "RECORD"}).encode()
mock_invoke.stdout.readline = AsyncMock(return_value=b"%b" % payload)
diff --git a/tests/meltano/core/test_plugins_test_service.py b/tests/meltano/core/test_plugin_test_service.py
similarity index 95%
rename from tests/meltano/core/test_plugins_test_service.py
rename to tests/meltano/core/test_plugin_test_service.py
index 68f50f15ee..03f0a8c6c1 100644
--- a/tests/meltano/core/test_plugins_test_service.py
+++ b/tests/meltano/core/test_plugin_test_service.py
@@ -45,8 +45,8 @@ class TestExtractorTestService:
def setup(self, mock_invoker):
self.mock_invoke = Mock()
self.mock_invoke.name = "utility-mock"
- self.mock_invoke.wait = AsyncMock(return_value=0)
- self.mock_invoke.returncode = 0
+ self.mock_invoke.wait = AsyncMock(return_value=-1)
+ self.mock_invoke.returncode = -1
self.mock_invoker = mock_invoker
self.mock_invoker.invoke_async = AsyncMock(return_value=self.mock_invoke)
@@ -61,7 +61,7 @@ async def test_validate_success(self):
is_valid, detail = await ExtractorTestService(self.mock_invoker).validate()
assert is_valid
- assert detail is None
+ assert detail == MOCK_RECORD_MESSAGE
@pytest.mark.asyncio
async def test_validate_success_ignore_non_json(self):
@@ -74,7 +74,7 @@ async def test_validate_success_ignore_non_json(self):
is_valid, detail = await ExtractorTestService(self.mock_invoker).validate()
assert is_valid
- assert detail is None
+ assert detail == MOCK_RECORD_MESSAGE
@pytest.mark.asyncio
async def test_validate_success_ignore_non_record_msg(self):
@@ -90,7 +90,7 @@ async def test_validate_success_ignore_non_record_msg(self):
is_valid, detail = await ExtractorTestService(self.mock_invoker).validate()
assert is_valid
- assert detail is None
+ assert detail == MOCK_RECORD_MESSAGE
@pytest.mark.asyncio
async def test_validate_success_stop_after_record_msg(self):
@@ -107,7 +107,7 @@ async def test_validate_success_stop_after_record_msg(self):
is_valid, detail = await ExtractorTestService(self.mock_invoker).validate()
assert is_valid
- assert detail is None
+ assert detail == MOCK_RECORD_MESSAGE
assert self.mock_invoke.stdout.readline.call_count == 2
@@ -119,6 +119,9 @@ async def test_validate_failure_no_record_msg(self):
return_value=(b"%b" % MOCK_STATE_MESSAGE.encode())
)
+ self.mock_invoke.wait = AsyncMock(return_value=0)
+ self.mock_invoke.returncode = 0
+
is_valid, detail = await ExtractorTestService(self.mock_invoker).validate()
assert not is_valid
|
GPflow__GPflow-2052 | Missing Reference to Manipulating Kernels Page
# Documentation/tutorial notebooks
In the [Kernel Design page](https://gpflow.github.io/GPflow/2.7.0/notebooks/tailor/kernel_design.html), there is a missing reference to the "Manipulating Kernels" notebook at the end. This notebook seems accessible from the old documentations, up to [2.6.4](https://gpflow.github.io/GPflow/2.6.4/notebooks/advanced/kernels.html).
It seems for some reason, this page was removed. Maybe it was considered unnecessary, as some information is given in the getting started page but I disagree. I believe it gives a more comprehensive review of the available kernel implementations, so it would be nice to have it back.
As a side note, for some reason 2.6.4 documentation insist on having dark theme for me, but I like the light theme better. Is there an option to change this? I am forced to clean the cookies to get a light background.
| [
{
"content": "# ---\n# jupyter:\n# jupytext:\n# formats: ipynb,.pct.py:percent\n# text_representation:\n# extension: .py\n# format_name: percent\n# format_version: '1.3'\n# jupytext_version: 1.3.3\n# kernelspec:\n# display_name: Python 3\n# language: python\n# nam... | [
{
"content": "# ---\n# jupyter:\n# jupytext:\n# formats: ipynb,.pct.py:percent\n# text_representation:\n# extension: .py\n# format_name: percent\n# format_version: '1.3'\n# jupytext_version: 1.3.3\n# kernelspec:\n# display_name: Python 3\n# language: python\n# nam... | diff --git a/doc/sphinx/notebooks/tailor/kernel_design.pct.py b/doc/sphinx/notebooks/tailor/kernel_design.pct.py
index b72f93be9..67fd32c66 100644
--- a/doc/sphinx/notebooks/tailor/kernel_design.pct.py
+++ b/doc/sphinx/notebooks/tailor/kernel_design.pct.py
@@ -136,4 +136,4 @@ def plotkernelfunction(k, ax, xmin=0, xmax=3, other=0):
# %% [markdown]
# ## See also
#
-# For more details on how to manipulate existing kernels (or the one you just created!), we refer to the [Manipulating kernels](../advanced/kernels.ipynb) notebook.
+# For more details on how to manipulate existing kernels (or the one you just created!), please refer to the [kernels](../getting_started/kernels.ipynb) notebook.
|
conda__conda-build-1493 | Getting a "Error: no such patch:" when the field is empty
@msarahan I noticed that latest `conda-build` is failing when a field is empty for certain platforms. This used to work:
```yaml
patches:
- skip_failing_test.patch # [osx]
- makefile.vc.patch # [win]
```
but now I need to add a `# [not linux]` to the ` patches` filed otherwise I get:
```
Source cache directory is: /opt/conda/conda-bld/src_cache
Downloading source to cache: libspatialite-4.3.0a.tar.gz
Downloading http://www.gaia-gis.it/gaia-sins/libspatialite-4.3.0a.tar.gz
Success
Error: no such patch: /conda-recipes/recipes/libspatialite/
./scripts/run_docker_build.sh returned exit code 1
```
I see similar failures for tests too.
recipe: https://github.com/ioos/conda-recipes/blob/master/recipes/libspatialite/meta.yaml#L11
CI log: https://circleci.com/gh/ioos/conda-recipes/1363
| [
{
"content": "from __future__ import absolute_import, division, print_function\n\nfrom collections import defaultdict\nimport contextlib\nfrom difflib import get_close_matches\nimport fnmatch\nfrom glob import glob\nfrom locale import getpreferredencoding\nimport logging\nimport operator\nimport os\nfrom os.pat... | [
{
"content": "from __future__ import absolute_import, division, print_function\n\nfrom collections import defaultdict\nimport contextlib\nfrom difflib import get_close_matches\nimport fnmatch\nfrom glob import glob\nfrom locale import getpreferredencoding\nimport logging\nimport operator\nimport os\nfrom os.pat... | diff --git a/conda_build/utils.py b/conda_build/utils.py
index 882930380b..1cf9d045c1 100644
--- a/conda_build/utils.py
+++ b/conda_build/utils.py
@@ -598,6 +598,9 @@ def package_has_file(package_path, file_path):
def ensure_list(arg):
from .conda_interface import string_types
- if isinstance(arg, string_types) or not hasattr(arg, '__iter__'):
- arg = [arg]
+ if (isinstance(arg, string_types) or not hasattr(arg, '__iter__')):
+ if arg:
+ arg = [arg]
+ else:
+ arg = []
return arg
diff --git a/tests/test-recipes/metadata/empty_patch_section/meta.yaml b/tests/test-recipes/metadata/empty_patch_section/meta.yaml
new file mode 100644
index 0000000000..5387aa8066
--- /dev/null
+++ b/tests/test-recipes/metadata/empty_patch_section/meta.yaml
@@ -0,0 +1,9 @@
+package:
+ name: patch_section_empty
+ version: 1.0
+
+source:
+ path: .
+ # the test here is that selectors can make this field empty. Make it empty here no matter what.
+ # https://github.com/conda/conda-build/issues/1490
+ patches:
|
modin-project__modin-4769 | test_join_sort.py in CI failed by timeout with new Dask release - 2022.2.0
Error: https://github.com/modin-project/modin/runs/5195622251?check_suite_focus=true
Dask release - https://github.com/dask/dask/releases/tag/2022.02.0
Fastest option here - pin `dask<2022.2.0`, but it also requires an investigation into the cause.
| [
{
"content": "from setuptools import setup, find_packages\nimport versioneer\nimport sys\n\nPANDAS_VERSION = \"1.4.3\" if sys.version_info >= (3, 8) else \"1.1.5\"\n\nwith open(\"README.md\", \"r\", encoding=\"utf-8\") as fh:\n long_description = fh.read()\n\ndask_deps = [\"dask>=2.22.0,<2022.2.0\", \"distri... | [
{
"content": "from setuptools import setup, find_packages\nimport versioneer\nimport sys\n\nPANDAS_VERSION = \"1.4.3\" if sys.version_info >= (3, 8) else \"1.1.5\"\n\nwith open(\"README.md\", \"r\", encoding=\"utf-8\") as fh:\n long_description = fh.read()\n\ndask_deps = [\"dask>=2.22.0\", \"distributed>=2.2... | diff --git a/docs/release_notes/release_notes-0.16.0.rst b/docs/release_notes/release_notes-0.16.0.rst
index f56ac93898e..e8ee3884053 100644
--- a/docs/release_notes/release_notes-0.16.0.rst
+++ b/docs/release_notes/release_notes-0.16.0.rst
@@ -72,6 +72,7 @@ Key Features and Updates
* Dependencies
* FEAT-#4598: Add support for pandas 1.4.3 (#4599)
* FEAT-#4619: Integrate mypy static type checking (#4620)
+ * FEAT-#4202: Allow dask past 2022.2.0 (#4769)
* New Features
* FEAT-4463: Add experimental fuzzydata integration for testing against a randomized dataframe workflow (#4556)
* FEAT-#4419: Extend virtual partitioning API to pandas on Dask (#4420)
diff --git a/environment-dev.yml b/environment-dev.yml
index 1cdfad7059b..1a23426a22e 100644
--- a/environment-dev.yml
+++ b/environment-dev.yml
@@ -5,8 +5,8 @@ dependencies:
- pandas==1.4.3
- numpy>=1.18.5
- pyarrow>=4.0.1
- - dask[complete]>=2.22.0,<2022.2.0
- - distributed>=2.22.0,<2022.2.0
+ - dask[complete]>=2.22.0
+ - distributed>=2.22.0
- fsspec
- xarray
- Jinja2
diff --git a/requirements-dev.txt b/requirements-dev.txt
index b50c016bb7f..cf89d697ed1 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -1,8 +1,8 @@
pandas==1.4.3
numpy>=1.18.5
pyarrow>=4.0.1
-dask[complete]>=2.22.0,<2022.2.0
-distributed>=2.22.0,<2022.2.0
+dask[complete]>=2.22.0
+distributed>=2.22.0
ray[default]>=1.4.0
redis>=3.5.0,<4.0.0
psutil
diff --git a/requirements/requirements-py36.txt b/requirements/requirements-py36.txt
index f42cbd34bc0..a6f1f5e8322 100644
--- a/requirements/requirements-py36.txt
+++ b/requirements/requirements-py36.txt
@@ -1,8 +1,8 @@
pandas==1.1.5
numpy>=1.18.5
pyarrow>=4.0.1
-dask[complete]>=2.22.0,<2022.2.0
-distributed>=2.22.0,<2022.2.0
+dask[complete]>=2.22.0
+distributed>=2.22.0
ray[default]>=1.4.0
redis>=3.5.0,<4.0.0
psutil
diff --git a/setup.py b/setup.py
index 3fd25c89003..701f5e3046e 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
-dask_deps = ["dask>=2.22.0,<2022.2.0", "distributed>=2.22.0,<2022.2.0"]
+dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
if sys.version_info < (3, 8):
dask_deps.append("pickle5")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.