зеркало из https://github.com/mozilla/treeherder.git
Bump graphene from 2.1.6 to 2.1.7 (#5162)
* Bump graphene from 2.1.6 to 2.1.7 Bumps [graphene](https://github.com/graphql-python/graphene) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/graphql-python/graphene/releases) - [Commits](https://github.com/graphql-python/graphene/compare/v2.1.6...v2.1.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * updates
This commit is contained in:
Родитель
59d19d0674
Коммит
dc3ef95a5b
|
@ -232,18 +232,19 @@ idna==2.8 \
|
|||
# required for taskcluster
|
||||
slugid==2.0.0 --hash=sha256:aec8b0e01c4ad32e38e12d609eab3ec912fd129aaf6b2ded0199b56a5f8fd67c --hash=sha256:a950d98b72691178bdd4d6c52743c4a2aa039207cf7a97d71060a111ff9ba297
|
||||
|
||||
graphene-django==2.3.2 \
|
||||
graphene-django==2.4.0 \
|
||||
--hash=sha256:7720a459da5bc99fba251f697c4d41858612bf1a36096326af86739dd31705f3 \
|
||||
--hash=sha256:f155cfbd9d201604c3f681ef6b824cc693263946cfdf9ba140880994285016d4
|
||||
--hash=sha256:f155cfbd9d201604c3f681ef6b824cc693263946cfdf9ba140880994285016d4 \
|
||||
--hash=sha256:5714c5dd1200800ddc12d0782b0d82db70aedf387575e5b57ee2cdee4f25c681
|
||||
|
||||
# Used by graphene-django
|
||||
graphene==2.1.6 \
|
||||
--hash=sha256:2ac16d6bb3bdba4da3daa0f6d15b74ac585ed6a016980f502c77c3e687c763bb \
|
||||
--hash=sha256:fcbcb24ee960b2c768de4285fbd025aa98eed4ecb6a679bbd41985b05b4008c5
|
||||
graphene==2.1.7 \
|
||||
--hash=sha256:acf808d50d053b94f7958414d511489a9e490a7f9563b9be80f6875fc5723d2a \
|
||||
--hash=sha256:77d61618132ccd084c343e64c22d806cee18dce73cc86e0f427378dbdeeac287
|
||||
graphql-core==2.2.1 \
|
||||
--hash=sha256:1488f2a5c2272dc9ba66e3042a6d1c30cea0db4c80bd1e911c6791ad6187d91b \
|
||||
--hash=sha256:da64c472d720da4537a2e8de8ba859210b62841bd47a9be65ca35177f62fe0e4
|
||||
graphql-relay==0.4.5 --hash=sha256:2716b7245d97091af21abf096fabafac576905096d21ba7118fba722596f65db
|
||||
graphql-relay==2.0.0 --hash=sha256:75aa0758971e252964cb94068a4decd472d2a8295229f02189e3cbca1f10dbb5
|
||||
typing==3.7.4 \
|
||||
--hash=sha256:38566c558a0a94d6531012c8e917b1b8518a41e418f7f15f00e129cc80162ad3 \
|
||||
--hash=sha256:84698954b4e6719e912ef9a42a2431407fe3755590831699debda6fba92aac55 \
|
||||
|
@ -259,9 +260,10 @@ iso8601==0.1.12 \
|
|||
--hash=sha256:210e0134677cc0d02f6028087fee1df1e1d76d372ee1db0bf30bf66c5c1c89a3 \
|
||||
--hash=sha256:bbbae5fb4a7abfe71d4688fd64bff70b91bbd74ef6a99d964bab18f7fdf286dd \
|
||||
--hash=sha256:49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82
|
||||
aniso8601==3.0.2 \
|
||||
aniso8601==6.0.0 \
|
||||
--hash=sha256:94f90871fcd314a458a3d4eca1c84448efbd200e86f55fe4c733c7a40149ef50 \
|
||||
--hash=sha256:7849749cf00ae0680ad2bdfe4419c7a662bef19c03691a19e008c8b9a5267802
|
||||
--hash=sha256:7849749cf00ae0680ad2bdfe4419c7a662bef19c03691a19e008c8b9a5267802 \
|
||||
--hash=sha256:bb167645c79f7a438f9dfab6161af9bed75508c645b1f07d1158240841d22673
|
||||
|
||||
python-jose[pycryptodome]==3.0.1 \
|
||||
--hash=sha256:29701d998fe560e52f17246c3213a882a4a39da7e42c7015bcc1f7823ceaff1c \
|
||||
|
|
|
@ -101,6 +101,8 @@ class FailureLineGraph(DjangoObjectType):
|
|||
class Meta:
|
||||
model = FailureLine
|
||||
|
||||
action = ObjectScalar()
|
||||
|
||||
|
||||
class GroupGraph(DjangoObjectType):
|
||||
class Meta:
|
||||
|
|
|
@ -183,7 +183,7 @@ class TestComponent extends React.Component {
|
|||
{failureLine && (
|
||||
<div>
|
||||
<span>
|
||||
{failureLine.action === 'TEST_RESULT' && (
|
||||
{failureLine.action.toUpperCase() === 'TEST_RESULT' && (
|
||||
<div className="failure-line">
|
||||
{failureLine.subtest && (
|
||||
<span>{failureLine.subtest}</span>
|
||||
|
@ -200,12 +200,12 @@ class TestComponent extends React.Component {
|
|||
)}
|
||||
</div>
|
||||
)}
|
||||
{failureLine.action === 'LOG' && (
|
||||
{failureLine.action.toUpperCase() === 'LOG' && (
|
||||
<div className="failure-line">
|
||||
LOG {failureLine.level} | {failureLine.message}
|
||||
</div>
|
||||
)}
|
||||
{failureLine.action === 'CRASH' && (
|
||||
{failureLine.action.toUpperCase() === 'CRASH' && (
|
||||
<div className="failure-line">
|
||||
<strong>CRASH</strong> | application crashed [
|
||||
{failureLine.signature}]
|
||||
|
|
Загрузка…
Ссылка в новой задаче