Commit 0985320a authored by Xavier Thompson's avatar Xavier Thompson

Update Release Candidate

parents 3bd4efe2 acc99f4c
...@@ -22,7 +22,7 @@ md5sum = 5784bea3bd608913769ff9a8afcccb68 ...@@ -22,7 +22,7 @@ md5sum = 5784bea3bd608913769ff9a8afcccb68
[profile-caddy-frontend] [profile-caddy-frontend]
filename = instance-apache-frontend.cfg.in filename = instance-apache-frontend.cfg.in
md5sum = 51087ac7615bd7cc01e60eb23701f625 md5sum = 385674eb3e79bdd773ef6cec1d1281e8
[profile-caddy-replicate] [profile-caddy-replicate]
filename = instance-apache-replicate.cfg.in filename = instance-apache-replicate.cfg.in
...@@ -46,7 +46,7 @@ md5sum = 88af61e7abbf30dc99a1a2526161128d ...@@ -46,7 +46,7 @@ md5sum = 88af61e7abbf30dc99a1a2526161128d
[template-default-slave-virtualhost] [template-default-slave-virtualhost]
_update_hash_filename_ = templates/default-virtualhost.conf.in _update_hash_filename_ = templates/default-virtualhost.conf.in
md5sum = 13cd08d630cc51666a9f7e469fb6ea52 md5sum = 37475d79f28c5f126bc1947fdb938fdb
[template-backend-haproxy-configuration] [template-backend-haproxy-configuration]
_update_hash_filename_ = templates/backend-haproxy.cfg.in _update_hash_filename_ = templates/backend-haproxy.cfg.in
......
...@@ -58,6 +58,7 @@ parts = ...@@ -58,6 +58,7 @@ parts =
promise-slave-introspection-https promise-slave-introspection-https
promise-slave-introspection-configuration promise-slave-introspection-configuration
logrotate-entry-slave-introspection logrotate-entry-slave-introspection
backend-haproxy-statistic-frontend-promise
[caddyprofiledeps] [caddyprofiledeps]
recipe = caddyprofiledeps recipe = caddyprofiledeps
...@@ -921,6 +922,14 @@ config-url = https://[${slap-configuration:ipv6-random}]:{{ instance_parameter_d ...@@ -921,6 +922,14 @@ config-url = https://[${slap-configuration:ipv6-random}]:{{ instance_parameter_d
config-https-only = true config-https-only = true
return = domain secure_access return = domain secure_access
[backend-haproxy-statistic-frontend-promise]
<= monitor-promise-base
module = check_url_available
name = backend-haproxy-statistic-frontend.py
config-http-code = 401
config-url =
${backend-haproxy-statistic-frontend:connection-secure_access}
[slave-introspection-configuration-state] [slave-introspection-configuration-state]
<= jinja2-template-base <= jinja2-template-base
template = {{ software_parameter_dict['template_configuration_state_script'] }} template = {{ software_parameter_dict['template_configuration_state_script'] }}
......
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
{%- if slave_parameter['prefer-gzip-encoding-to-backend'] %} {%- if slave_parameter['prefer-gzip-encoding-to-backend'] %}
{%- do proxy_append_list.append(('prefer-gzip', 'Proxy which always overrides Accept-Encoding to gzip if such is found')) %} {%- do proxy_append_list.append(('prefer-gzip', 'Proxy which always overrides Accept-Encoding to gzip if such is found')) %}
{%- endif %} {#- if slave_parameter['prefer-gzip-encoding-to-backend'] #} {%- endif %} {#- if slave_parameter['prefer-gzip-encoding-to-backend'] #}
{%- if slave_parameter['path'].strip().strip('/') %}
{%- set zope_path = slave_parameter['path'].strip().strip('/') ~ '/' %}
{%- else %}
{%- set zope_path = '' %}
{%- endif %}
{%- set http_host_list = [] %} {%- set http_host_list = [] %}
{%- set https_host_list = [] %} {%- set https_host_list = [] %}
{%- for host in slave_parameter['host_list'] %} {%- for host in slave_parameter['host_list'] %}
...@@ -129,27 +134,27 @@ ...@@ -129,27 +134,27 @@
regexp (.*) regexp (.*)
if {>Accept-Encoding} match "(^gzip,.*|.*, gzip,.*|.*, gzip$|^gzip$)" if {>Accept-Encoding} match "(^gzip,.*|.*, gzip,.*|.*, gzip$|^gzip$)"
{%- if tls %} {%- if tls %}
to /prefer-gzip/VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /prefer-gzip/VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- else %} {%- else %}
to /prefer-gzip/VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /prefer-gzip/VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- endif %} {%- endif %}
} }
rewrite { rewrite {
regexp (.*) regexp (.*)
if {>Accept-Encoding} not_match "(^gzip,.*|.*, gzip,.*|.*, gzip$|^gzip$)" if {>Accept-Encoding} not_match "(^gzip,.*|.*, gzip,.*|.*, gzip$|^gzip$)"
{%- if tls %} {%- if tls %}
to /VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- else %} {%- else %}
to /VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- endif %} {%- endif %}
} }
{%- else %} {%- else %}
rewrite { rewrite {
regexp (.*) regexp (.*)
{%- if tls %} {%- if tls %}
to /VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-https-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- else %} {%- else %}
to /VirtualHostBase/{scheme}%2F%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ slave_parameter['path'] }}%2FVirtualHostRoot/{1} to /VirtualHostBase/{scheme}%2F{hostonly}:{{ slave_parameter['virtualhostroot-http-port'] }}%2F{{ zope_path }}VirtualHostRoot/{1}
{%- endif %} {%- endif %}
} {# rewrite #} } {# rewrite #}
{%- endif %} {#- if slave_parameter['prefer-gzip-encoding-to-backend'] #} {%- endif %} {#- if slave_parameter['prefer-gzip-encoding-to-backend'] #}
......
...@@ -2231,7 +2231,7 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2231,7 +2231,7 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
result, result,
'Path', 'Path',
'/VirtualHostBase/' '/VirtualHostBase/'
'https//typezopepath.example.com:443/path/to/some/resource' 'https/typezopepath.example.com:443/path/to/some/resource'
'/VirtualHostRoot/' '/VirtualHostRoot/'
'test-path/deeper' 'test-path/deeper'
) )
...@@ -2793,7 +2793,7 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2793,7 +2793,7 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//typezope.example.com:443/' '/VirtualHostBase/https/typezope.example.com:443'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
...@@ -2833,8 +2833,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2833,8 +2833,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//' '/VirtualHostBase/https/'
'typezopeprefergzipencodingtobackendhttpsonly.example.com:443/' 'typezopeprefergzipencodingtobackendhttpsonly.example.com:443'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
...@@ -2845,8 +2845,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2845,8 +2845,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/http//' '/VirtualHostBase/http/'
'typezopeprefergzipencodingtobackendhttpsonly.example.com:80/' 'typezopeprefergzipencodingtobackendhttpsonly.example.com:80'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
...@@ -2868,8 +2868,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2868,8 +2868,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//' '/VirtualHostBase/https/'
'typezopeprefergzipencodingtobackendhttpsonly.example.com:443/' 'typezopeprefergzipencodingtobackendhttpsonly.example.com:443'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
self.assertEqual( self.assertEqual(
...@@ -2883,8 +2883,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2883,8 +2883,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/http//' '/VirtualHostBase/http/'
'typezopeprefergzipencodingtobackendhttpsonly.example.com:80/' 'typezopeprefergzipencodingtobackendhttpsonly.example.com:80'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
self.assertEqual( self.assertEqual(
...@@ -2911,8 +2911,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2911,8 +2911,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//' '/VirtualHostBase/https/'
'typezopeprefergzipencodingtobackend.example.com:443/' 'typezopeprefergzipencodingtobackend.example.com:443'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
...@@ -2949,8 +2949,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2949,8 +2949,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//' '/VirtualHostBase/https/'
'typezopeprefergzipencodingtobackend.example.com:443/' 'typezopeprefergzipencodingtobackend.example.com:443'
'/VirtualHostRoot/test-path/deeper' '/VirtualHostRoot/test-path/deeper'
) )
self.assertEqual( self.assertEqual(
...@@ -2982,8 +2982,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -2982,8 +2982,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/http//typezopevirtualhostroothttpport' '/VirtualHostBase/http/typezopevirtualhostroothttpport'
'.example.com:12345//VirtualHostRoot/test-path' '.example.com:12345/VirtualHostRoot/test-path'
) )
def test_type_zope_virtualhostroot_https_port(self): def test_type_zope_virtualhostroot_https_port(self):
...@@ -3000,8 +3000,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin): ...@@ -3000,8 +3000,8 @@ class TestSlave(SlaveHttpFrontendTestCase, TestDataMixin):
self.assertEqualResultJson( self.assertEqualResultJson(
result, result,
'Path', 'Path',
'/VirtualHostBase/https//typezopevirtualhostroothttpsport' '/VirtualHostBase/https/typezopevirtualhostroothttpsport'
'.example.com:12345//VirtualHostRoot/test-path' '.example.com:12345/VirtualHostRoot/test-path'
) )
def test_type_notebook(self): def test_type_notebook(self):
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -24,6 +24,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -24,6 +24,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
...@@ -47,6 +48,7 @@ T-2/etc/plugin/trafficserver-port-listening.py ...@@ -47,6 +48,7 @@ T-2/etc/plugin/trafficserver-port-listening.py
T-3/etc/plugin/__init__.py T-3/etc/plugin/__init__.py
T-3/etc/plugin/backend-client-caucase-updater.py T-3/etc/plugin/backend-client-caucase-updater.py
T-3/etc/plugin/backend-haproxy-configuration.py T-3/etc/plugin/backend-haproxy-configuration.py
T-3/etc/plugin/backend-haproxy-statistic-frontend.py
T-3/etc/plugin/backend_haproxy_http.py T-3/etc/plugin/backend_haproxy_http.py
T-3/etc/plugin/backend_haproxy_https.py T-3/etc/plugin/backend_haproxy_https.py
T-3/etc/plugin/buildout-T-3-status.py T-3/etc/plugin/buildout-T-3-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py ...@@ -23,6 +23,7 @@ T-1/etc/plugin/promise-logrotate-setup.py
T-2/etc/plugin/__init__.py T-2/etc/plugin/__init__.py
T-2/etc/plugin/backend-client-caucase-updater.py T-2/etc/plugin/backend-client-caucase-updater.py
T-2/etc/plugin/backend-haproxy-configuration.py T-2/etc/plugin/backend-haproxy-configuration.py
T-2/etc/plugin/backend-haproxy-statistic-frontend.py
T-2/etc/plugin/backend_haproxy_http.py T-2/etc/plugin/backend_haproxy_http.py
T-2/etc/plugin/backend_haproxy_https.py T-2/etc/plugin/backend_haproxy_https.py
T-2/etc/plugin/buildout-T-2-status.py T-2/etc/plugin/buildout-T-2-status.py
......
...@@ -47,7 +47,7 @@ md5sum = 9e8c17a4b2d802695caf0c2c052f0d11 ...@@ -47,7 +47,7 @@ md5sum = 9e8c17a4b2d802695caf0c2c052f0d11
[yarn.lock] [yarn.lock]
_update_hash_filename_ = yarn.lock _update_hash_filename_ = yarn.lock
md5sum = c65949e402ba7c47c0354e3c7438b094 md5sum = c37c2e9578794967a404d08859c09813
[python-language-server-requirements.txt] [python-language-server-requirements.txt]
_update_hash_filename_ = python-language-server-requirements.txt _update_hash_filename_ = python-language-server-requirements.txt
......
...@@ -1047,16 +1047,16 @@ ...@@ -1047,16 +1047,16 @@
resolved "https://registry.yarnpkg.com/@stroncium/procfs/-/procfs-1.2.1.tgz#6b9be6fd20fb0a4c20e99a8695e083c699bb2b45" resolved "https://registry.yarnpkg.com/@stroncium/procfs/-/procfs-1.2.1.tgz#6b9be6fd20fb0a4c20e99a8695e083c699bb2b45"
integrity sha512-X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA== integrity sha512-X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA==
"@theia/application-manager@1.17.2": "@theia/application-manager@1.17.0":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-1.17.2.tgz#bcf5b23754705848a81d8a97f9e40ee141a6efc7" resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-1.17.0.tgz#96d5dce5352967cbd647d74cca305b7568b96fb1"
integrity sha512-Ev/Rq3Da8pg22YzMPOJ/97rMmovHuvCDT9CLCNba5f9jgkBwX4WgS32q21qfucZ/OX3Y0V0EFSFilVyV7luzKA== integrity sha512-IOu13WymWQhXH/HhyOSlyoMqre+rHduqt5fcBSTB46VTEAAMbELQIFv87wFQEpDIOcEAcLhGClHBzt9kozCGAw==
dependencies: dependencies:
"@babel/core" "^7.10.0" "@babel/core" "^7.10.0"
"@babel/plugin-transform-classes" "^7.10.0" "@babel/plugin-transform-classes" "^7.10.0"
"@babel/plugin-transform-runtime" "^7.10.0" "@babel/plugin-transform-runtime" "^7.10.0"
"@babel/preset-env" "^7.10.0" "@babel/preset-env" "^7.10.0"
"@theia/application-package" "1.17.2" "@theia/application-package" "1.17.0"
"@theia/compression-webpack-plugin" "^3.0.0" "@theia/compression-webpack-plugin" "^3.0.0"
"@types/fs-extra" "^4.0.2" "@types/fs-extra" "^4.0.2"
babel-loader "^8.2.2" babel-loader "^8.2.2"
...@@ -1079,10 +1079,10 @@ ...@@ -1079,10 +1079,10 @@
worker-loader "^3.0.8" worker-loader "^3.0.8"
yargs "^15.3.1" yargs "^15.3.1"
"@theia/application-package@1.17.2": "@theia/application-package@1.17.0":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-1.17.2.tgz#05b1f2c749bbd693013f17cdf8b57d5789cb70fb" resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-1.17.0.tgz#ed5835adc3e7eb1977d1bc3a51acb99f6fa838a4"
integrity sha512-IKeH+ow5h8tuW9dVV27I551EowcvKe5mBx/U14oKJ7krKZ0eLUqJPGJukNIlRLbhz/9ANJvsGXHw02qMhP7CXQ== integrity sha512-yl8tVWkz9Rw9hUhcdjGqUhhopq76lvjg3kfZs62I+NS/u2BP9dEGZ5i6u0DZXcHEuZrAFmhPO/L3I6gqRuYq6Q==
dependencies: dependencies:
"@types/fs-extra" "^4.0.2" "@types/fs-extra" "^4.0.2"
"@types/request" "^2.0.3" "@types/request" "^2.0.3"
...@@ -1096,35 +1096,35 @@ ...@@ -1096,35 +1096,35 @@
semver "^5.4.1" semver "^5.4.1"
write-json-file "^2.2.0" write-json-file "^2.2.0"
"@theia/bulk-edit@1.17.2", "@theia/bulk-edit@latest": "@theia/bulk-edit@1.17.0", "@theia/bulk-edit@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/bulk-edit/-/bulk-edit-1.17.2.tgz#ebd4c7963f3798648624aa36c33ee667a002a89d" resolved "https://registry.yarnpkg.com/@theia/bulk-edit/-/bulk-edit-1.17.0.tgz#d8de202d0ba05e4714f554d40b85155efb4d376b"
integrity sha512-ZXsA681IrjY7uolyg5Rf460FwUVK8iuKyB19eL04Nom0otht0qb1ikjqHcFUpgMQED+4LrKg8/SUjJG3BysxFQ== integrity sha512-WChkCcqicb0tdfWqXEy1+hw9cupILiLaM6e9alSvBLSptGyKWaCzj0HrAECHJpZh/Y6Tie9LsqcuMW8hkM8k4w==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@theia/callhierarchy@1.17.2", "@theia/callhierarchy@latest": "@theia/callhierarchy@1.17.0", "@theia/callhierarchy@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/callhierarchy/-/callhierarchy-1.17.2.tgz#1362c863ef9bbf35c3257c8d723828ddc6b73257" resolved "https://registry.yarnpkg.com/@theia/callhierarchy/-/callhierarchy-1.17.0.tgz#54534dc5f301c5170bcdb6973ae711f2e9d5a843"
integrity sha512-Y3GFRVNIp0d2zr2N+vKLhjwjmfmGm8rz5F5H1bmQnsL/Ax2Jqyj4ctgSA1FEDqPQNL4PILBmblCs3jkACN79bA== integrity sha512-FkSQbkG1hf/HD/M0WPENe7vpUPOk0Dc3kkSUyHjctiZlNnioI1CIkd/DfXQWfKLEp2Lq+GhxLpkqK61CneQM/Q==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
ts-md5 "^1.2.2" ts-md5 "^1.2.2"
"@theia/cli@latest": "@theia/cli@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-1.17.2.tgz#5558de75d59a1db3be60a54b871cb7e6fc2a9c8e" resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-1.17.0.tgz#f9564b146123198b8505997c9a3fede7ac28cc10"
integrity sha512-5Mwm8WO7smDle3R25i+OEEAT7EP/0Vgv0C6eH5GGS66eBcJEArKF7IxwhDf+qVJt3L/Qj7rePMoD9dVahiESbQ== integrity sha512-PheQl1Be++oSGD0cKsWQyUDMEFXv8QFlcwbnn/YOXQsfJSd/hpWfhxC/0B0N8ShQupNnocgZTiDTUPdC5pL17g==
dependencies: dependencies:
"@theia/application-manager" "1.17.2" "@theia/application-manager" "1.17.0"
"@theia/application-package" "1.17.2" "@theia/application-package" "1.17.0"
"@theia/ovsx-client" "1.17.2" "@theia/ovsx-client" "1.17.0"
"@types/chai" "^4.2.7" "@types/chai" "^4.2.7"
"@types/mkdirp" "^0.5.2" "@types/mkdirp" "^0.5.2"
"@types/mocha" "^5.2.7" "@types/mocha" "^5.2.7"
...@@ -1156,19 +1156,19 @@ ...@@ -1156,19 +1156,19 @@
serialize-javascript "^1.4.0" serialize-javascript "^1.4.0"
webpack-sources "^1.0.1" webpack-sources "^1.0.1"
"@theia/console@1.17.2", "@theia/console@latest": "@theia/console@1.17.0", "@theia/console@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/console/-/console-1.17.2.tgz#6542321186023f4e63daed834148cac5cbd067ab" resolved "https://registry.yarnpkg.com/@theia/console/-/console-1.17.0.tgz#5532de6837a0940b715fdf31961d2cfbfce26b08"
integrity sha512-Nuu+Van6O1DMiIXgD7+fR3cFyLlUfVrJm8DUcyy624iKVqaylCRNL+t+ThRxYMKS4Dz+nfGI5kOeIcmtADwT5w== integrity sha512-zzSlTwhX2GoqYUQSVvxiM4FQMOW+ti0NR139zvym5oAS57f63cts0I+h0poQ9eqpaMISKmbkfN6RdTIMDTA2Jg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
anser "^2.0.1" anser "^2.0.1"
"@theia/core@*", "@theia/core@1.17.2", "@theia/core@latest": "@theia/core@*", "@theia/core@1.17.0", "@theia/core@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/core/-/core-1.17.2.tgz#b527c219dba6b2a2eb6031ff843a62e2366b2273" resolved "https://registry.yarnpkg.com/@theia/core/-/core-1.17.0.tgz#8cccee3578dfd0a76f501933b2c7746332d8a9f5"
integrity sha512-AEgZz3tt/1+AjzGY6WQBNT39kA8FFGumeVTvB6QwsJGRufBPKH+G/Y10n4UG9dtnOysq6/KlC9VHwmSQkfudDQ== integrity sha512-fYPWJ1DgKh9LWDattOKeSKf0gcdHQmlBQa+qrJhRVFMv/mUH+D2hcEWZenznjrHP82k/waXajjZBlESlELupog==
dependencies: dependencies:
"@babel/runtime" "^7.10.0" "@babel/runtime" "^7.10.0"
"@phosphor/algorithm" "1" "@phosphor/algorithm" "1"
...@@ -1182,7 +1182,7 @@ ...@@ -1182,7 +1182,7 @@
"@phosphor/virtualdom" "1" "@phosphor/virtualdom" "1"
"@phosphor/widgets" "1" "@phosphor/widgets" "1"
"@primer/octicons-react" "^9.0.0" "@primer/octicons-react" "^9.0.0"
"@theia/application-package" "1.17.2" "@theia/application-package" "1.17.0"
"@types/body-parser" "^1.16.4" "@types/body-parser" "^1.16.4"
"@types/cookie" "^0.3.3" "@types/cookie" "^0.3.3"
"@types/dompurify" "^2.2.2" "@types/dompurify" "^2.2.2"
...@@ -1210,7 +1210,7 @@ ...@@ -1210,7 +1210,7 @@
fs-extra "^4.0.2" fs-extra "^4.0.2"
fuzzy "^0.1.3" fuzzy "^0.1.3"
iconv-lite "^0.6.0" iconv-lite "^0.6.0"
inversify "^5.1.1" inversify "^5.0.1"
jschardet "^2.1.1" jschardet "^2.1.1"
keytar "7.2.0" keytar "7.2.0"
lodash.debounce "^4.0.8" lodash.debounce "^4.0.8"
...@@ -1233,25 +1233,25 @@ ...@@ -1233,25 +1233,25 @@
ws "^7.1.2" ws "^7.1.2"
yargs "^15.3.1" yargs "^15.3.1"
"@theia/debug@1.17.2", "@theia/debug@latest": "@theia/debug@1.17.0", "@theia/debug@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/debug/-/debug-1.17.2.tgz#694f1d2e1a06ead0fcc8f268ee21cba50389f8eb" resolved "https://registry.yarnpkg.com/@theia/debug/-/debug-1.17.0.tgz#8eae48041db3d409aece9056629e31279ba843be"
integrity sha512-RTrZixxqoks0RwtQZ0TQtthsUgZhhvIKfEuRgFiBqMRqddLWrnguV+xcd4WCGWlDuVJaD2jCz8gGbKNc3ubHKg== integrity sha512-CZ0Hb2MHsEHJClqL6NqK3E81dr/JG0kAmphy0bOormx/bTs2H7PXHZYPs6ok8ohKFrUr1cK4lcrs4rccZ5GEZw==
dependencies: dependencies:
"@theia/console" "1.17.2" "@theia/console" "1.17.0"
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/markers" "1.17.2" "@theia/markers" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/output" "1.17.2" "@theia/output" "1.17.0"
"@theia/preferences" "1.17.2" "@theia/preferences" "1.17.0"
"@theia/process" "1.17.2" "@theia/process" "1.17.0"
"@theia/task" "1.17.2" "@theia/task" "1.17.0"
"@theia/terminal" "1.17.2" "@theia/terminal" "1.17.0"
"@theia/userstorage" "1.17.2" "@theia/userstorage" "1.17.0"
"@theia/variable-resolver" "1.17.2" "@theia/variable-resolver" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
mkdirp "^0.5.0" mkdirp "^0.5.0"
p-debounce "^2.1.0" p-debounce "^2.1.0"
...@@ -1261,43 +1261,43 @@ ...@@ -1261,43 +1261,43 @@
vscode-debugprotocol "^1.32.0" vscode-debugprotocol "^1.32.0"
"@theia/editor-preview@latest": "@theia/editor-preview@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/editor-preview/-/editor-preview-1.17.2.tgz#e6f1cc4af79ca2cd9ccb1fd6202c782714f9df8c" resolved "https://registry.yarnpkg.com/@theia/editor-preview/-/editor-preview-1.17.0.tgz#cf7236a93bd41f013e478edc270dc0e7eb5d5854"
integrity sha512-jVdh3YL0N6B7oBvTGEZLbWbPSYGznQ3mTvjqMAOvHp6P+Rm8XEITmRCS+J5zfWUyYUUchvu84k7AXmgANmWRpQ== integrity sha512-dNHD4XhmUs1joi9rZwpZGXOnxYwDnZxCWcuJiwCfNXwPHoUdJTLoVZJ8L+OK3wxeN7HdJYlIiJunuzgUqd0GiA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/editor@1.17.2", "@theia/editor@latest": "@theia/editor@1.17.0", "@theia/editor@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-1.17.2.tgz#6d5774f3b1bd1ed5e5d3c1e407c32b3bf020ad1d" resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-1.17.0.tgz#b296e68ea419a013a1a159c7beb75c97fbe9f5f4"
integrity sha512-RU0n4ticVxThCG9ZeXrqc7v7q2T3bbauw+ptO8o/ovqYEste2F1XTpn9+JN1/SKrJ0ge5FkIEqrPqtxVLWQ+Dg== integrity sha512-pRhCkWQpuliXD5AygZycS6L2KdW3012axy1GsuP/rEfZsZCM2WsEeo8B0QDCJLzR4cZG8YeNBE6M0/DE6/xTlg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/variable-resolver" "1.17.2" "@theia/variable-resolver" "1.17.0"
"@types/base64-arraybuffer" "0.1.0" "@types/base64-arraybuffer" "0.1.0"
base64-arraybuffer "^0.1.5" base64-arraybuffer "^0.1.5"
"@theia/file-search@1.17.2", "@theia/file-search@latest": "@theia/file-search@1.17.0", "@theia/file-search@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-1.17.2.tgz#93236a8ba0fe57357344273d6acb3d7dda1c9bfc" resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-1.17.0.tgz#060719fea828e9a8b9508980474dbd30a85b7cd3"
integrity sha512-hm6vG6c7nVycg+Boiowg7p3Gyjm120W6glSgNvKNVrw7QR9SkfngDqhyRHveVmT/ZpCxlUc2FTESAh2mmCVGuw== integrity sha512-U4eOdrw2baKTxZEGe828SsPjxH3va68ltQhm05s5/8nLpK4LYz7SqBPi0oZhjKP4DWSjk98qwW2l7ASzbm4B+w==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/process" "1.17.2" "@theia/process" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
vscode-ripgrep "^1.2.4" vscode-ripgrep "^1.2.4"
"@theia/filesystem@1.17.2", "@theia/filesystem@latest": "@theia/filesystem@1.17.0", "@theia/filesystem@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-1.17.2.tgz#344f13075b948f5ee87fcd292a4c6898584e53bf" resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-1.17.0.tgz#312cec17750aa1884d70ba97b2414f34fed2f433"
integrity sha512-VISG1owLqcsOfTKtqzy9qirK0Xt9eIugXK8M4bEBc0/kQtOOxUWjfY30DH9dDK2q1fLWpdolIV+Mc6bdT7jz0A== integrity sha512-G79Z7BXFsF2NFAqcPx/N3ceBrvoFBkj8/m/F6M1rx68d+kAxsuhJ8BQeP5B19pIRcVx7H8PRCUrWEpkqdgWogw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@types/body-parser" "^1.17.0" "@types/body-parser" "^1.17.0"
"@types/multer" "^1.4.7" "@types/multer" "^1.4.7"
"@types/rimraf" "^2.0.2" "@types/rimraf" "^2.0.2"
...@@ -1315,63 +1315,63 @@ ...@@ -1315,63 +1315,63 @@
vscode-languageserver-textdocument "^1.0.1" vscode-languageserver-textdocument "^1.0.1"
"@theia/getting-started@latest": "@theia/getting-started@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/getting-started/-/getting-started-1.17.2.tgz#feb1792789fa38b6867c376eca69d27d9a03f250" resolved "https://registry.yarnpkg.com/@theia/getting-started/-/getting-started-1.17.0.tgz#be47f0fd60a09c717da2b3a2672d406fc7bb2313"
integrity sha512-DHw3oJP3nMfh5DFDr6GYs/JAE9CXZY+RbcyyygNW2aYqYZLu76Ln0e43sF2fO5EJXYipQBO7WP9Y1lWkUj6+og== integrity sha512-eaRX4X0BTkfs5nrnh9Yrlu1w+HZIJ7w5+T8odPB2tIoW6ghUa/zUoIwYTiqXHXfBgix+KOBpdV2rRoozBylZrg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/keymaps" "1.17.2" "@theia/keymaps" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@theia/keymaps@1.17.2", "@theia/keymaps@latest": "@theia/keymaps@1.17.0", "@theia/keymaps@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/keymaps/-/keymaps-1.17.2.tgz#12e8a68c736ea91d38b4c5a596abd50f487f2601" resolved "https://registry.yarnpkg.com/@theia/keymaps/-/keymaps-1.17.0.tgz#9de73ce1b8e9cffa026ba58555bab84dc6d5a622"
integrity sha512-dYwNkxnAQYWr9uNhPAzgKneceJrHCmefhrKbYHuDmZhWpSczsIeXYXIxUN7lQuP94lTDaPby/oYvKGow2AtzUg== integrity sha512-etB9Q7b6VXsN2AADCMGMUTZSiqpBVAbo8mrL4IhNvbHQqH/f+xn0b21tW9HR9yhXsWrLRUcccjb1r13QTjJyqg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/userstorage" "1.17.2" "@theia/userstorage" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@types/lodash.debounce" "4.0.3" "@types/lodash.debounce" "4.0.3"
ajv "^6.5.3" ajv "^6.5.3"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
"@theia/markers@1.17.2", "@theia/markers@latest": "@theia/markers@1.17.0", "@theia/markers@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-1.17.2.tgz#d8e1de8937406d1f813016be2fcbac3ccc0eb3e7" resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-1.17.0.tgz#11ca7ef1c4fb1307a45a7defd2aad2e6ef6e2fff"
integrity sha512-pnf8C62fWCsaNdU0q7iLUsYjFngJmxmMF5Gqc6/fCMs+ClnBjlOABJ1w/17linPN5OQKJjDCjCmpmUrIdx9aIg== integrity sha512-fIsfqVbISTazYA1YQ5wwxroYhPODSHdBe8yQluszKFdJ5x3zd0BWeDaVf9/2nI/r2TEF5Et2beQjehebavJPsw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@theia/messages@1.17.2", "@theia/messages@latest": "@theia/messages@1.17.0", "@theia/messages@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-1.17.2.tgz#33acaf7f31e28e022bf3938bff0636d974dd26e8" resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-1.17.0.tgz#7963b432eaa92ffe877ca2facea582f5ae53b4e0"
integrity sha512-hR7lmBMIplhy66gNlEHJI/yi3LR0YbUZMKdWfteAfU7hklQ/c6Qh6iOtx3Phpjhv+Jf+rLWPMS0WmXlF9eu2Nw== integrity sha512-ql7Rw2PdmKmchTdoUXx/hHKNjtYUdmPFoo3RcejF+iejJDpxR/X9OWpHRCQIp4GjzI/d+FxN1sR8DxryOfGPGQ==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
markdown-it "^8.4.0" markdown-it "^8.4.0"
react-perfect-scrollbar "^1.5.3" react-perfect-scrollbar "^1.5.3"
ts-md5 "^1.2.2" ts-md5 "^1.2.2"
"@theia/metrics@latest": "@theia/metrics@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/metrics/-/metrics-1.17.2.tgz#5cd6368fd4f6ef83b10beebea677a4fbcb72374c" resolved "https://registry.yarnpkg.com/@theia/metrics/-/metrics-1.17.0.tgz#3293301124653d6330184b946530cbebe97e3c92"
integrity sha512-myAMr9btpVAXYWkr5Q60XiB6jier0VtEIbV9dLsVGNLvg0yny+Q0KbURNZOb9y/t91wE7mEA0ERfXHRSwnA/Ng== integrity sha512-PTZtLRCoVLGj5QawGpwvVW6doFJ803V1ttQWT+oi/aM4bKzjdD71lnHyqJAWm8MZl45A2hbaMS9akDEWcT1dsQ==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
prom-client "^10.2.0" prom-client "^10.2.0"
"@theia/mini-browser@1.17.2", "@theia/mini-browser@latest": "@theia/mini-browser@1.17.0", "@theia/mini-browser@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/mini-browser/-/mini-browser-1.17.2.tgz#684cc53e253d19fe5cbdd7f2bc54400deae1252d" resolved "https://registry.yarnpkg.com/@theia/mini-browser/-/mini-browser-1.17.0.tgz#1eaeb609be7e101ca7defca7e8861c38e28439be"
integrity sha512-jNwR4Y/HQ7z5dYYVmjw32TPOjrFcjt/4URQEDzFNtSFJyOGRfsQQuddYkwOvpd6UXUiXB6kblhvzkOd4+zwa6Q== integrity sha512-FhoZuU9SR1myVX3UCKM3bY8WirQrJ9hKGsEq2V8L2zUVjld6wkvmlLQF7wvbkg35e+djOkBSIPMtu7Z0cFUyIA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@types/mime-types" "^2.1.0" "@types/mime-types" "^2.1.0"
mime-types "^2.1.18" mime-types "^2.1.18"
pdfobject "^2.0.201604172" pdfobject "^2.0.201604172"
...@@ -1383,32 +1383,32 @@ ...@@ -1383,32 +1383,32 @@
resolved "https://registry.yarnpkg.com/@theia/monaco-editor-core/-/monaco-editor-core-0.23.0.tgz#7a1cbb7a857a509ce8e75c9965abea752bd76e80" resolved "https://registry.yarnpkg.com/@theia/monaco-editor-core/-/monaco-editor-core-0.23.0.tgz#7a1cbb7a857a509ce8e75c9965abea752bd76e80"
integrity sha512-WyrotTd6ZfeXAX4icgFALTzlqE356tAQ5nRuwa2E0Qdp2YIO9GDcw5G2l2NJ8INO2ygujbE5pEdD5kJM5N4TOQ== integrity sha512-WyrotTd6ZfeXAX4icgFALTzlqE356tAQ5nRuwa2E0Qdp2YIO9GDcw5G2l2NJ8INO2ygujbE5pEdD5kJM5N4TOQ==
"@theia/monaco@1.17.2", "@theia/monaco@latest": "@theia/monaco@1.17.0", "@theia/monaco@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-1.17.2.tgz#87796b589cc15d2c5011e24dd25090cba4fc5762" resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-1.17.0.tgz#bd65391d335da1b4227f033f376feb59798ea72a"
integrity sha512-jxdMuPvmTRJTVHuEGuI/uC8vE88M4ByNUw5WLd6dZ+o3Utn1qbnH97coJRjqFIid+nSeahDWZ0q7Gb7ILq63MQ== integrity sha512-lW3a/wZOHZha0UHIWVa+yXsjpQ/hmE3aQJSb+bC8jgKHCmsuDcJ0hvWxE1pFRQxfm2z1PqIO9qN16a4zTanfwA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/markers" "1.17.2" "@theia/markers" "1.17.0"
"@theia/monaco-editor-core" "0.23.0" "@theia/monaco-editor-core" "0.23.0"
"@theia/outline-view" "1.17.2" "@theia/outline-view" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
fast-plist "^0.1.2" fast-plist "^0.1.2"
idb "^4.0.5" idb "^4.0.5"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
onigasm "^2.2.0" onigasm "^2.2.0"
vscode-textmate "^4.4.0" vscode-textmate "^4.4.0"
"@theia/navigator@1.17.2", "@theia/navigator@latest": "@theia/navigator@1.17.0", "@theia/navigator@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-1.17.2.tgz#cad78f6ef4411f011735c79025c38755c76893d2" resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-1.17.0.tgz#d539939ed342911bca3854f10cab792106b42168"
integrity sha512-nEEsW51Sby5kY0yWviFAvFaW/EPaskpZQ1CmvGrUHKvs+/95lXiQrzauJ/tR8WNmR1yCgSbZTqHXEdm3egoQRw== integrity sha512-KR+j/fi45wUaR3oerO52PRtSO7n31i4PZp6IAM2+9hZyrcpYMe7uH2Fb6i7A1iFWTTG0LKeBK8CKV9MF0x/tGQ==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
minimatch "^3.0.4" minimatch "^3.0.4"
"@theia/node-pty@0.9.0-theia.6": "@theia/node-pty@0.9.0-theia.6":
...@@ -1418,95 +1418,95 @@ ...@@ -1418,95 +1418,95 @@
dependencies: dependencies:
nan "^2.14.0" nan "^2.14.0"
"@theia/outline-view@1.17.2", "@theia/outline-view@latest": "@theia/outline-view@1.17.0", "@theia/outline-view@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-1.17.2.tgz#827773b558cd07bce30c43c6c4ce0c8f171256c3" resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-1.17.0.tgz#7ca9888552d2ca31a00f0b1da58f30151a58b59d"
integrity sha512-syUctRnqOjBFAj83jnOiSy3/R5P1ABxHTuuXWL1wn+3ENKt4ttPdO+cQFDM2ZW0h1oIn6UiNzq4Fuz/EbLqBmg== integrity sha512-DxvZPQgV9Yp26qi+trmVRRcgL3RUKx1k48vgTzaAV1x/GZiDwiAo9Ons+U5w54QYlYy5PfufXFDP3/0TRHAO6w==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/output@1.17.2", "@theia/output@latest": "@theia/output@1.17.0", "@theia/output@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/output/-/output-1.17.2.tgz#14b311102e0bb9343ac56ed2b50e4361a9f3446a" resolved "https://registry.yarnpkg.com/@theia/output/-/output-1.17.0.tgz#8b6006ad1ee85daa13cc003d3b457de1071bf8c2"
integrity sha512-vqENaq9v20nSspYqBIxg5H9KCvN7WZ7SAQI5u5tc6ijWI2MKmDxDx+2mu+AUD9wARsJW8twmwueqf+EVi/BoOw== integrity sha512-LgbCBmN3C0v78zywCVSAvfuId6vp0Gl4KPuus0KynmkLOYsKEZECyOcPDdMjFRHbWydOAMBvkZg1Lw4yIb960Q==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@types/p-queue" "^2.3.1" "@types/p-queue" "^2.3.1"
p-queue "^2.4.2" p-queue "^2.4.2"
"@theia/ovsx-client@1.17.2": "@theia/ovsx-client@1.17.0":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/ovsx-client/-/ovsx-client-1.17.2.tgz#fbf0c404d69f7e06ac4b33c26f642e6ccb68fda1" resolved "https://registry.yarnpkg.com/@theia/ovsx-client/-/ovsx-client-1.17.0.tgz#206070d10b3db8c92fd5afc664d28a09208ed9e8"
integrity sha512-Is5tYaFfSoti6KOE6TR1eQH9n0Lpgsi2K7MMa1Oe/ETKDzUTf2aq+8bR/BPtqjId8ldNJETQconvQNKhKPL0ew== integrity sha512-IfJ0PFVFcRVpgrpZ3MuUfs5TF+YCTOfpF2CrT+2tq3nY3hE89NMmkYkhQmdvCbQKkzW+kf9socfJjokZbm2cgg==
dependencies: dependencies:
"@types/bent" "^7.0.1" "@types/bent" "^7.0.1"
bent "^7.1.0" bent "^7.1.0"
semver "^5.4.1" semver "^5.4.1"
"@theia/plugin-dev@latest": "@theia/plugin-dev@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/plugin-dev/-/plugin-dev-1.17.2.tgz#b127d8c58ae8310013b130ef7200c0425f4d3f36" resolved "https://registry.yarnpkg.com/@theia/plugin-dev/-/plugin-dev-1.17.0.tgz#5e2583f1f64b8455546fcd66661222584d79f3f6"
integrity sha512-i7GrVSLKZbnm+o/q1PQj2zzxw65s8jBP3n95u0PXcnlno8JkQR4RiWQ25Yve+3xCeoGctw2+Mn/p0sn3qiiDQg== integrity sha512-TxS8Q4KJPxdoMGcGOtwaWzqfIJzuL8ti2hCMyt2/rQmxk5iSLhmSCRvRhE8lK4oo+GE7EimzV/rtJTXb/mgt2Q==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/debug" "1.17.2" "@theia/debug" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/output" "1.17.2" "@theia/output" "1.17.0"
"@theia/plugin-ext" "1.17.2" "@theia/plugin-ext" "1.17.0"
"@theia/preferences" "1.17.2" "@theia/preferences" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@types/request" "^2.0.3" "@types/request" "^2.0.3"
ps-tree "^1.2.0" ps-tree "^1.2.0"
request "^2.82.0" request "^2.82.0"
"@theia/plugin-ext-vscode@1.17.2", "@theia/plugin-ext-vscode@latest": "@theia/plugin-ext-vscode@1.17.0", "@theia/plugin-ext-vscode@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.17.2.tgz#cd076231976f1a820b4a0c36e1e452c86874313c" resolved "https://registry.yarnpkg.com/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.17.0.tgz#eb42caf14c13c839c6c858d1ae7b751cfca8d053"
integrity sha512-f2R5ltHfys4pOpld+LxadgagJ2kmHPxYPujRD/yjwhcodFm1jduEYujdaNT+ceW8JJ4e+v+y3TQwxRYAnmn0GA== integrity sha512-YMmjDzphQwzJvVWMvvrQKFD5zMTrBMqeeYMS+bJNF2DpEZPSCfKLi0fSXsfkjnW59mLZSaLGkuo4QbwIVaIehA==
dependencies: dependencies:
"@theia/callhierarchy" "1.17.2" "@theia/callhierarchy" "1.17.0"
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/plugin" "1.17.2" "@theia/plugin" "1.17.0"
"@theia/plugin-ext" "1.17.2" "@theia/plugin-ext" "1.17.0"
"@theia/terminal" "1.17.2" "@theia/terminal" "1.17.0"
"@theia/userstorage" "1.17.2" "@theia/userstorage" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@types/request" "^2.0.3" "@types/request" "^2.0.3"
filenamify "^4.1.0" filenamify "^4.1.0"
request "^2.82.0" request "^2.82.0"
"@theia/plugin-ext@1.17.2", "@theia/plugin-ext@latest": "@theia/plugin-ext@1.17.0", "@theia/plugin-ext@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/plugin-ext/-/plugin-ext-1.17.2.tgz#c8ba84db9c0fe693b78f34b342e726b5c868866a" resolved "https://registry.yarnpkg.com/@theia/plugin-ext/-/plugin-ext-1.17.0.tgz#c3e269e6ab6122de6b9c69076a91960623216de3"
integrity sha512-GZRF3q1ccrLpY0qq/1ZT42Xv5qXyUQFjTh2UdTP8AtMD3UwEsaM4oVxE7k1hE4NMxpr0jWsF1/kNF93b6c4tEQ== integrity sha512-IIdNIjRcKE9k9/cMBYdEDJnJ2oFkZJcMs44eZKdyr7a0OBJYwWpuXyUZxnaKTaQFPATy5BFLXBMW0Wb2TJ+Ihg==
dependencies: dependencies:
"@theia/bulk-edit" "1.17.2" "@theia/bulk-edit" "1.17.0"
"@theia/callhierarchy" "1.17.2" "@theia/callhierarchy" "1.17.0"
"@theia/console" "1.17.2" "@theia/console" "1.17.0"
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/debug" "1.17.2" "@theia/debug" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/file-search" "1.17.2" "@theia/file-search" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/markers" "1.17.2" "@theia/markers" "1.17.0"
"@theia/messages" "1.17.2" "@theia/messages" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/output" "1.17.2" "@theia/output" "1.17.0"
"@theia/plugin" "1.17.2" "@theia/plugin" "1.17.0"
"@theia/preferences" "1.17.2" "@theia/preferences" "1.17.0"
"@theia/scm" "1.17.2" "@theia/scm" "1.17.0"
"@theia/search-in-workspace" "1.17.2" "@theia/search-in-workspace" "1.17.0"
"@theia/task" "1.17.2" "@theia/task" "1.17.0"
"@theia/terminal" "1.17.2" "@theia/terminal" "1.17.0"
"@theia/timeline" "1.17.2" "@theia/timeline" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@types/mime" "^2.0.1" "@types/mime" "^2.0.1"
decompress "^4.2.1" decompress "^4.2.1"
escape-html "^1.0.3" escape-html "^1.0.3"
...@@ -1523,33 +1523,33 @@ ...@@ -1523,33 +1523,33 @@
vscode-debugprotocol "^1.32.0" vscode-debugprotocol "^1.32.0"
vscode-textmate "^4.0.1" vscode-textmate "^4.0.1"
"@theia/plugin@1.17.2": "@theia/plugin@1.17.0":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/plugin/-/plugin-1.17.2.tgz#2c3a5acce508a432acd1fcc88b46f2ce4eab863a" resolved "https://registry.yarnpkg.com/@theia/plugin/-/plugin-1.17.0.tgz#693b693412db8207b9d099f2d534da281baec597"
integrity sha512-zJvuRmrITMqecLHvpDf3LUTAMsfEFe2XnaJthNMMM22xlJAz3jO/n+PO/ztKXKRiq1iZ5Lu+QewPLMmSqskPOA== integrity sha512-j19J8FSXyR+DGzAUiaFOQb4yaO2+SYJcrp3JNd+jo/U66VmfXVYjXsSBttZ7pdG8s2AP9AXayX1uJtsaPC5/vg==
"@theia/preferences@1.17.2", "@theia/preferences@latest": "@theia/preferences@1.17.0", "@theia/preferences@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-1.17.2.tgz#5e8f43a0c3aff394e4eca24a26304209b5ac3637" resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-1.17.0.tgz#5d68a5ed11b42f5b8ac1ce1f8123436e14b36ce4"
integrity sha512-jMxij/jcibQMrvg30OEDDCcIFnrIKfc+t4X7sWIxu65lF2adQiCVlII/LLDGDooWu71irDyEynCI0yVsvnxcYw== integrity sha512-MwXWBGEfbVuANfM5OHs8mvKqwdNsN7P41eshPafvhuyIOaHouea/rT/37anKjD0BAt/IDX3ld/Y0BBp5pPnVVg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/userstorage" "1.17.2" "@theia/userstorage" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
"@theia/preview@latest": "@theia/preview@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/preview/-/preview-1.17.2.tgz#1d792b7d2ceda5753d64d73212a03016dcc1e575" resolved "https://registry.yarnpkg.com/@theia/preview/-/preview-1.17.0.tgz#99dc5adda3ddd7dbc9a007638fa5e03d6485b28f"
integrity sha512-dTuuLBYCCRaPHP2vGkyh4xmDbVI153J3ISCIJIxInFmy90IKvLsX6Nk95Tn+kjnwOu94pRXdvrSxCyoEKiPx0Q== integrity sha512-ybnZcRIcamHJEl5t9bRv/UJBzj7VfolpmNXoYbDuwjZ8W2AjgIUrBpc+xZgCvREsDqLBTovQllMTH63qbH8Ghw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/mini-browser" "1.17.2" "@theia/mini-browser" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@types/highlight.js" "^10.1.0" "@types/highlight.js" "^10.1.0"
"@types/markdown-it" "*" "@types/markdown-it" "*"
"@types/markdown-it-anchor" "^4.0.1" "@types/markdown-it-anchor" "^4.0.1"
...@@ -1557,144 +1557,144 @@ ...@@ -1557,144 +1557,144 @@
markdown-it "^8.4.0" markdown-it "^8.4.0"
markdown-it-anchor "~5.0.0" markdown-it-anchor "~5.0.0"
"@theia/process@1.17.2", "@theia/process@latest": "@theia/process@1.17.0", "@theia/process@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/process/-/process-1.17.2.tgz#826face8368e610924d16c313187bbefc331c2a6" resolved "https://registry.yarnpkg.com/@theia/process/-/process-1.17.0.tgz#b820276b0e0708bb0a15a3d2c91055b6ad841c5e"
integrity sha512-8tL7ihiKVo45zvXT1zhJJEoSGaeySd8hvLN3kxQnZ6dvqw3+dDy8tqDDdkqCFyGq1G0FB62CPEqAvdGfBWlZPA== integrity sha512-WTrG9nIx6SABekhOCYY+2HBcLCIF+sVuUjF4ne3fezhm2IqFceBO327tTj2tzokyhpOSihBRB/3680He7nSO1w==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/node-pty" "0.9.0-theia.6" "@theia/node-pty" "0.9.0-theia.6"
string-argv "^0.1.1" string-argv "^0.1.1"
"@theia/property-view@latest": "@theia/property-view@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/property-view/-/property-view-1.17.2.tgz#1e2bfb9706090f22f6a0eaa915c1875e0dae5866" resolved "https://registry.yarnpkg.com/@theia/property-view/-/property-view-1.17.0.tgz#6cd39288f438b2d3799cb5d83dd9c62169b55f8a"
integrity sha512-ix13hLSPr0L50k/JjoUD8Rb1Nvm3s/fZUB/pXpJTL2EYFQxpYmyCdHBsuxjLkGXlaAZd7ECOVN+o9w0N06nxNg== integrity sha512-I3WWudmmzvN8h0hVYQVDOVjN0vZAeyQfv3BAjg9P1OeQbrFMe0QCVXTmz+QbekQ9GqvOWzkOVut6Eo3nu1AjqA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/scm-extra@latest": "@theia/scm-extra@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/scm-extra/-/scm-extra-1.17.2.tgz#7d6c969c776e3f155bdc7842fd3a4f6a713f6551" resolved "https://registry.yarnpkg.com/@theia/scm-extra/-/scm-extra-1.17.0.tgz#af6408473f55591c4a54441be2aaa8256bb2251e"
integrity sha512-vo8l8AR9mZKZ/9rwP3O8TfRtdjpKPWjbd9sAeD1+qiNEC8D3ydgBHAsICprax5CYaPbzeK2IeRtpl53PT7uSPQ== integrity sha512-46PFlCbs/HIRPgb7ZfCFM7C72yeBN3j+pSXtmEm1qzR0DBSeh3txUJvL4KXWqW5BEpSj0MH8fjj7aHzAWFN/sg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/scm" "1.17.2" "@theia/scm" "1.17.0"
"@theia/scm@1.17.2", "@theia/scm@latest": "@theia/scm@1.17.0", "@theia/scm@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-1.17.2.tgz#ba9195ed9909857acf7ae15e2e2b3a86e1cf35b7" resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-1.17.0.tgz#d12218ddd80afda58338a4ae1e1303e2c82ed9d8"
integrity sha512-a6zg5O0umhjcTaHGuiaGW1rZZtvT/QLTtdK973diLLW2ZuSNCq6Uvn4jSGtzEANVb0k4Fg3N8WOgUVjghCc5FA== integrity sha512-Vlm6+dATpaP1FSRONoUJh/VgJrB7SnTRojiQAdqSci+/0poch/V4e0LD+JNt8j8TzOXVJGCl/L4kXTWnHycn3w==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@types/diff" "^3.2.2" "@types/diff" "^3.2.2"
diff "^3.4.0" diff "^3.4.0"
p-debounce "^2.1.0" p-debounce "^2.1.0"
react-autosize-textarea "^7.0.0" react-autosize-textarea "^7.0.0"
ts-md5 "^1.2.2" ts-md5 "^1.2.2"
"@theia/search-in-workspace@1.17.2", "@theia/search-in-workspace@latest": "@theia/search-in-workspace@1.17.0", "@theia/search-in-workspace@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-1.17.2.tgz#23cc3488d2caf7a08707f8a6b7226c8f7319b4a7" resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-1.17.0.tgz#1283259fb07bb505f40e36b66ac1f9252a33429a"
integrity sha512-Y2JPU/EbMYu9ZCSfarK5ckuYhUAYkJd5rngaeQKFUOZGRtAqBNppjIoQwsMKnUfV+SOM0bYFzJ9hbDx5BpEIWA== integrity sha512-sH4B3MThKwcAJCDWuytu6B0d1A/pzMdEBb47iUk3mOO1S0Wu+1B42Pt1huYIkma11hsv2Yb9f7WEeN42Pr/MHA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/process" "1.17.2" "@theia/process" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
minimatch "^3.0.4" minimatch "^3.0.4"
vscode-ripgrep "^1.2.4" vscode-ripgrep "^1.2.4"
"@theia/task@1.17.2", "@theia/task@latest": "@theia/task@1.17.0", "@theia/task@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/task/-/task-1.17.2.tgz#8f6310860416aebaae6156f504343b6295232812" resolved "https://registry.yarnpkg.com/@theia/task/-/task-1.17.0.tgz#40633bff3fe79ad6b16dd1ca8cfc20176b345933"
integrity sha512-C+zoJ4cIr3Jio6PBIX8u5UkmvVjp/Hrnn2+oINnO7+NHBv3pyunKFNPZ2zPO1djJ+K8ksCf2Dg3mGDqXTek+wQ== integrity sha512-0SK9wNR1M22DVuAYACSBufA2jG8QD5wqFLG8+wUrchrkBn/5cOkS0RdOG/9LF3kpqR/g9OZAKa6BY8g086HEZQ==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/markers" "1.17.2" "@theia/markers" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/preferences" "1.17.2" "@theia/preferences" "1.17.0"
"@theia/process" "1.17.2" "@theia/process" "1.17.0"
"@theia/terminal" "1.17.2" "@theia/terminal" "1.17.0"
"@theia/userstorage" "1.17.2" "@theia/userstorage" "1.17.0"
"@theia/variable-resolver" "1.17.2" "@theia/variable-resolver" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
ajv "^6.5.3" ajv "^6.5.3"
async-mutex "^0.3.1" async-mutex "^0.3.1"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
p-debounce "^2.1.0" p-debounce "^2.1.0"
"@theia/terminal@1.17.2", "@theia/terminal@latest": "@theia/terminal@1.17.0", "@theia/terminal@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-1.17.2.tgz#b96d275ff2c7a97035a0e2e546a5e1de90f2d85a" resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-1.17.0.tgz#7d8a0a81bb0c8505db4e77d0479869162d0220fa"
integrity sha512-q8OQB/JUfLMToOBGbzvpxlDSlPLbPG6U/3EWJAmTd0ONakGGrBGG0xBW2VIfW/BvzIQwRnPLsAddsmB58er2tQ== integrity sha512-rSRFDYkieLD3rCtUHhJ87OGGUMnveYGDvlCRR337gcWcpIzK+1zvVkNTiG4OL+tXqFnmXIcChFQPXiXUWlMEOA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/monaco" "1.17.2" "@theia/monaco" "1.17.0"
"@theia/process" "1.17.2" "@theia/process" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
xterm "~4.11.0" xterm "~4.11.0"
xterm-addon-fit "~0.5.0" xterm-addon-fit "~0.5.0"
xterm-addon-search "~0.8.0" xterm-addon-search "~0.8.0"
"@theia/timeline@1.17.2", "@theia/timeline@latest": "@theia/timeline@1.17.0", "@theia/timeline@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/timeline/-/timeline-1.17.2.tgz#18d452fcce182f06abd0f9c2e57c1a9968f71289" resolved "https://registry.yarnpkg.com/@theia/timeline/-/timeline-1.17.0.tgz#14155a73ba98569a1ace1df356a6599be5f4ba5e"
integrity sha512-FOFhliqW1ZtbJDw/1UhTiCLGGG4Pu2jXkmSixMq2IVvD7aP2naQiTNCLZU1rS5MTEX10CAMqdt4k+kyHwOeDlg== integrity sha512-EDnFIxz7R68kyDtJvr6c4zchDQt07Mdykk44gQl8jOYFPq8UzJLP4Jb7kxDmUHZI6MveZhEQkiMc6Scl4AcbrA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/navigator" "1.17.2" "@theia/navigator" "1.17.0"
"@theia/typehierarchy@latest": "@theia/typehierarchy@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/typehierarchy/-/typehierarchy-1.17.2.tgz#072b230e64fbbd54c8e36b091bfabf2b3d6eb977" resolved "https://registry.yarnpkg.com/@theia/typehierarchy/-/typehierarchy-1.17.0.tgz#baeac01c471871182436cf3a324a94fe714af47e"
integrity sha512-te8P0wg+tPFK+v+FzSJH2X86GdjDAe16RzrDWLE+HXMzgTSJsesQ56t2il1v+y3VVV6mTLoLisZj2CmksVyVzA== integrity sha512-nIlXiNoJSDQwdjZYVRMvh/Ov3UPBIm8P+zS7/9ai8hY8EnOXnOVrcyaDoMXqNu4+uNIm76/DFSRZx9qtNgrjjw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/editor" "1.17.2" "@theia/editor" "1.17.0"
"@types/uuid" "^7.0.3" "@types/uuid" "^7.0.3"
uuid "^8.0.0" uuid "^8.0.0"
"@theia/userstorage@1.17.2", "@theia/userstorage@latest": "@theia/userstorage@1.17.0", "@theia/userstorage@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-1.17.2.tgz#cc5c30681671641005490caf35caf7eab1680d3f" resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-1.17.0.tgz#6daa2369b78a87a5a287d8800bb366ac300984c3"
integrity sha512-ZpEgL+RlUaXmJbSGsp3aQBJ1MmFkLsSVQy5myvXJVWrQIqbFsIaWWNTUoGEYECbIc8Ml3KXSo0TpdYaFDo6J1Q== integrity sha512-2mOCvqqJli1JNXX9kWFST9GqJTHMytY3InU8e2qwhlffu+jNud4qALRxOTz8lSP57H2S4tbo2sqq/QolFJ9gSw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/variable-resolver@1.17.2", "@theia/variable-resolver@latest": "@theia/variable-resolver@1.17.0", "@theia/variable-resolver@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-1.17.2.tgz#94eb5da543fe5cbd4419b7132780f968e61a524c" resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-1.17.0.tgz#10fd681609d374f148ba64bf8e12de94e07c5c29"
integrity sha512-WaRGerhT0wZMNgTpXpcgEFprWTTdqPE0XbqhlOdmxGh0Lpf05S8pzuKlGgctpA3xzCXgwE/ud+azDntr2V0V/w== integrity sha512-LJb/hzDRjp/6mvI+LmCpuuRVKqV/9cT+1QXvF96AMfxvpktvPP40HkjcsvwX5qHACw+c+ASKryQXlv63WAJtrA==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/vsx-registry@latest": "@theia/vsx-registry@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/vsx-registry/-/vsx-registry-1.17.2.tgz#4e662400efca360cbeaa369a494d7ff970a33e59" resolved "https://registry.yarnpkg.com/@theia/vsx-registry/-/vsx-registry-1.17.0.tgz#e81e6f2748e64770e27a0e336026198274832b40"
integrity sha512-UWKBtjPRKjzVKQ7Uka3OUxaMRFslqMxdzdVZgyX3TiQzF1oHzDq0HTjYrHcW4sFWnux/ZX1sw1oyGUmufdA2uw== integrity sha512-LW9FLFA2e6wvuOFRuK3y3VS0Xl+amjwoPwnZcXRs0kojOHmFbIG1DoSEhNS/0skR4oz2MnI7plnlIhf0Xn6rnw==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/ovsx-client" "1.17.2" "@theia/ovsx-client" "1.17.0"
"@theia/plugin-ext" "1.17.2" "@theia/plugin-ext" "1.17.0"
"@theia/plugin-ext-vscode" "1.17.2" "@theia/plugin-ext-vscode" "1.17.0"
"@theia/preferences" "1.17.2" "@theia/preferences" "1.17.0"
"@theia/workspace" "1.17.2" "@theia/workspace" "1.17.0"
"@types/bent" "^7.0.1" "@types/bent" "^7.0.1"
"@types/sanitize-html" "^2.3.1" "@types/sanitize-html" "^2.3.1"
"@types/showdown" "^1.7.1" "@types/showdown" "^1.7.1"
...@@ -1706,14 +1706,14 @@ ...@@ -1706,14 +1706,14 @@
showdown "^1.9.1" showdown "^1.9.1"
uuid "^8.0.0" uuid "^8.0.0"
"@theia/workspace@1.17.2", "@theia/workspace@latest": "@theia/workspace@1.17.0", "@theia/workspace@latest":
version "1.17.2" version "1.17.0"
resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-1.17.2.tgz#9daafde082fd721706b3dc9db7cef155e62e24d5" resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-1.17.0.tgz#c15ca2d6022782beddd24fdbd1e61dd7348a6ca1"
integrity sha512-M4SbXMMTj5y25SVZnWcg+8e4c9ewXbYgdvnpgYrd2ZUInR1CfEFnkpncwb117dp0bvXX/R5KuUCP2C9df410vg== integrity sha512-3Hg8o4a9n1s6uSOzcr0SO7ko8fLVIQABJrb1LuwRisnZ5JQ4BOqurhHDoJnkgXPN6wpQOdEN1XXhGiOOT/Wwmg==
dependencies: dependencies:
"@theia/core" "1.17.2" "@theia/core" "1.17.0"
"@theia/filesystem" "1.17.2" "@theia/filesystem" "1.17.0"
"@theia/variable-resolver" "1.17.2" "@theia/variable-resolver" "1.17.0"
ajv "^6.5.3" ajv "^6.5.3"
jsonc-parser "^2.2.0" jsonc-parser "^2.2.0"
moment "2.24.0" moment "2.24.0"
...@@ -1945,9 +1945,9 @@ ...@@ -1945,9 +1945,9 @@
form-data "^3.0.0" form-data "^3.0.0"
"@types/node@*": "@types/node@*":
version "16.7.10" version "16.7.2"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.10.tgz#7aa732cc47341c12a16b7d562f519c2383b6d4fc" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.2.tgz#0465a39b5456b61a04d98bd5545f8b34be340cb7"
integrity sha512-S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA== integrity sha512-TbG4TOx9hng8FKxaVrCisdaxKxqEwJ3zwHoCWXZ0Jw6mnvTInpaB99/2Cy4+XxpXtjNv9/TgfGSvZFyfV/t8Fw==
"@types/p-queue@^2.3.1": "@types/p-queue@^2.3.1":
version "2.3.2" version "2.3.2"
...@@ -2439,12 +2439,12 @@ aproba@^1.0.3, aproba@^1.1.1: ...@@ -2439,12 +2439,12 @@ aproba@^1.0.3, aproba@^1.1.1:
integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
are-we-there-yet@~1.1.2: are-we-there-yet@~1.1.2:
version "1.1.6" version "1.1.5"
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.6.tgz#bc9101d19670c7bdb1546ed036568a6c9879ee79" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
integrity sha512-+1byPnimWdGcKFRS48zG73nxM08kamPFReUYvEmRXI3E8E4YhF4voMRDaGlfGD1UeRHEgs4NhQCE28KI8JVj1A== integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
dependencies: dependencies:
delegates "^1.0.0" delegates "^1.0.0"
readable-stream "^3.6.0" readable-stream "^2.0.6"
argparse@^1.0.7: argparse@^1.0.7:
version "1.0.10" version "1.0.10"
...@@ -2508,11 +2508,11 @@ async-limiter@~1.0.0: ...@@ -2508,11 +2508,11 @@ async-limiter@~1.0.0:
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
async-mutex@^0.3.1: async-mutex@^0.3.1:
version "0.3.2" version "0.3.1"
resolved "https://registry.yarnpkg.com/async-mutex/-/async-mutex-0.3.2.tgz#1485eda5bda1b0ec7c8df1ac2e815757ad1831df" resolved "https://registry.yarnpkg.com/async-mutex/-/async-mutex-0.3.1.tgz#7033af665f1c7cebed8b878267a43ba9e77c5f67"
integrity sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA== integrity sha512-vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw==
dependencies: dependencies:
tslib "^2.3.1" tslib "^2.1.0"
asynckit@^0.4.0: asynckit@^0.4.0:
version "0.4.0" version "0.4.0"
...@@ -3237,23 +3237,18 @@ copy-webpack-plugin@^8.1.1: ...@@ -3237,23 +3237,18 @@ copy-webpack-plugin@^8.1.1:
serialize-javascript "^5.0.1" serialize-javascript "^5.0.1"
core-js-compat@^3.14.0, core-js-compat@^3.16.0: core-js-compat@^3.14.0, core-js-compat@^3.16.0:
version "3.17.1" version "3.16.3"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.17.1.tgz#a0264ed6712affb3334c56f6a6159f20aedad56b" resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.16.3.tgz#ae12a6e20505a1d79fbd16b6689dfc77fc989114"
integrity sha512-Oqp6qybMdCFcWSroh/6Q8j7YNOjRD0ThY02cAd6rugr//FCkMYonizLV8AryLU5wNJOweauIBxQYCZoV3emfcw== integrity sha512-A/OtSfSJQKLAFRVd4V0m6Sep9lPdjD8bpN8v3tCCGwE0Tmh0hOiVDm9tw6mXmWOKOSZIyr3EkywPo84cJjGvIQ==
dependencies: dependencies:
browserslist "^4.16.8" browserslist "^4.16.8"
semver "7.0.0" semver "7.0.0"
core-util-is@1.0.2: core-util-is@1.0.2, core-util-is@~1.0.0:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
core-util-is@~1.0.0:
version "1.0.3"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
cp-file@^6.1.0: cp-file@^6.1.0:
version "6.2.0" version "6.2.0"
resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-6.2.0.tgz#40d5ea4a1def2a9acdd07ba5c0b0246ef73dc10d" resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-6.2.0.tgz#40d5ea4a1def2a9acdd07ba5c0b0246ef73dc10d"
...@@ -3609,9 +3604,9 @@ domelementtype@^2.0.1, domelementtype@^2.2.0: ...@@ -3609,9 +3604,9 @@ domelementtype@^2.0.1, domelementtype@^2.2.0:
integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==
domhandler@^4.0.0, domhandler@^4.2.0: domhandler@^4.0.0, domhandler@^4.2.0:
version "4.2.2" version "4.2.0"
resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059"
integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==
dependencies: dependencies:
domelementtype "^2.2.0" domelementtype "^2.2.0"
...@@ -3621,9 +3616,9 @@ dompurify@^2.2.9: ...@@ -3621,9 +3616,9 @@ dompurify@^2.2.9:
integrity sha512-xGWt+NHAQS+4tpgbOAI08yxW0Pr256Gu/FNE2frZVTbgrBUn8M7tz7/ktS/LZ2MHeGqz6topj0/xY+y8R5FBFw== integrity sha512-xGWt+NHAQS+4tpgbOAI08yxW0Pr256Gu/FNE2frZVTbgrBUn8M7tz7/ktS/LZ2MHeGqz6topj0/xY+y8R5FBFw==
domutils@^2.5.2: domutils@^2.5.2:
version "2.8.0" version "2.7.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442"
integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==
dependencies: dependencies:
dom-serializer "^1.0.1" dom-serializer "^1.0.1"
domelementtype "^2.2.0" domelementtype "^2.2.0"
...@@ -3683,9 +3678,9 @@ electron-rebuild@^1.8.6: ...@@ -3683,9 +3678,9 @@ electron-rebuild@^1.8.6:
yargs "^14.2.0" yargs "^14.2.0"
electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.811: electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.811:
version "1.3.827" version "1.3.820"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.827.tgz#c725e8db8c5be18b472a919e5f57904512df0fc1" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.820.tgz#3b2672b59ed17847ed19f1281547f37bbfda87bb"
integrity sha512-ye+4uQOY/jbjRutMcE/EmOcNwUeo1qo9aKL2tPyb09cU3lmxNeyDF4RWiemmkknW+p29h7dyDqy02higTxc9/A== integrity sha512-5cFwDmo2yzEA9hn55KZ9+cX/b6DSFvpKz8Hb2fiDmriXWB+DBoXKXmncQwNRFBBTlUdsvPHCoy594OoMLAO0Tg==
emoji-regex@^7.0.1: emoji-regex@^7.0.1:
version "7.0.3" version "7.0.3"
...@@ -4107,9 +4102,9 @@ finalhandler@~1.1.2: ...@@ -4107,9 +4102,9 @@ finalhandler@~1.1.2:
unpipe "~1.0.0" unpipe "~1.0.0"
find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: find-cache-dir@^3.0.0, find-cache-dir@^3.3.1:
version "3.3.2" version "3.3.1"
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
dependencies: dependencies:
commondir "^1.0.1" commondir "^1.0.1"
make-dir "^3.0.2" make-dir "^3.0.2"
...@@ -4717,7 +4712,7 @@ interpret@^2.2.0: ...@@ -4717,7 +4712,7 @@ interpret@^2.2.0:
resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
inversify@^5.1.1: inversify@^5.0.1:
version "5.1.1" version "5.1.1"
resolved "https://registry.yarnpkg.com/inversify/-/inversify-5.1.1.tgz#6fbd668c591337404e005a1946bfe0d802c08730" resolved "https://registry.yarnpkg.com/inversify/-/inversify-5.1.1.tgz#6fbd668c591337404e005a1946bfe0d802c08730"
integrity sha512-j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ== integrity sha512-j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==
...@@ -4930,7 +4925,7 @@ isstream@~0.1.2: ...@@ -4930,7 +4925,7 @@ isstream@~0.1.2:
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
jest-worker@^27.0.6: jest-worker@^27.0.2:
version "27.1.0" version "27.1.0"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.1.0.tgz#65f4a88e37148ed984ba8ca8492d6b376938c0aa" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.1.0.tgz#65f4a88e37148ed984ba8ca8492d6b376938c0aa"
integrity sha512-mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg== integrity sha512-mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg==
...@@ -5545,9 +5540,9 @@ napi-build-utils@^1.0.1: ...@@ -5545,9 +5540,9 @@ napi-build-utils@^1.0.1:
integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==
native-request@^1.0.5: native-request@^1.0.5:
version "1.1.0" version "1.0.9"
resolved "https://registry.yarnpkg.com/native-request/-/native-request-1.1.0.tgz#acdb30fe2eefa3e1bc8c54b3a6852e9c5c0d3cb0" resolved "https://registry.yarnpkg.com/native-request/-/native-request-1.0.9.tgz#2269748379c004415d9721c204d8da3455abc175"
integrity sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw== integrity sha512-KTRwqMwWCkoLZfjes3yBhK6XHwZ5Q1jPsdVra9hug8HNRbMsfTJm8a8L6/WOYi1h5eWNwlBaYy8V5SpJwkDgKw==
negotiator@0.6.2: negotiator@0.6.2:
version "0.6.2" version "0.6.2"
...@@ -5565,9 +5560,9 @@ nested-error-stacks@^2.0.0: ...@@ -5565,9 +5560,9 @@ nested-error-stacks@^2.0.0:
integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug== integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
node-abi@^2.11.0, node-abi@^2.21.0, node-abi@^2.7.0: node-abi@^2.11.0, node-abi@^2.21.0, node-abi@^2.7.0:
version "2.30.1" version "2.30.0"
resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.1.tgz#c437d4b1fe0e285aaf290d45b45d4d7afedac4cf" resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.0.tgz#8be53bf3e7945a34eea10e0fc9a5982776cf550b"
integrity sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w== integrity sha512-g6bZh3YCKQRdwuO/tSZZYJAw622SjsRfJ2X0Iy4sSOHZ34/sPPdVBn8fev2tj7njzLwuqPw9uMtGsGkO5kIQvg==
dependencies: dependencies:
semver "^5.4.1" semver "^5.4.1"
...@@ -6625,7 +6620,7 @@ react@^16.8.0: ...@@ -6625,7 +6620,7 @@ react@^16.8.0:
object-assign "^4.1.1" object-assign "^4.1.1"
prop-types "^15.6.2" prop-types "^15.6.2"
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6:
version "2.3.7" version "2.3.7"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
...@@ -6658,7 +6653,7 @@ readable-stream@1.1.x: ...@@ -6658,7 +6653,7 @@ readable-stream@1.1.x:
isarray "0.0.1" isarray "0.0.1"
string_decoder "~0.10.x" string_decoder "~0.10.x"
readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: readable-stream@^3.1.1, readable-stream@^3.4.0:
version "3.6.0" version "3.6.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
...@@ -6959,7 +6954,7 @@ schema-utils@^2.6.5: ...@@ -6959,7 +6954,7 @@ schema-utils@^2.6.5:
ajv "^6.12.4" ajv "^6.12.4"
ajv-keywords "^3.5.2" ajv-keywords "^3.5.2"
schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: schema-utils@^3.0.0, schema-utils@^3.1.0:
version "3.1.1" version "3.1.1"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
...@@ -7541,18 +7536,18 @@ temp@^0.9.1: ...@@ -7541,18 +7536,18 @@ temp@^0.9.1:
rimraf "~2.6.2" rimraf "~2.6.2"
terser-webpack-plugin@^5.1.3: terser-webpack-plugin@^5.1.3:
version "5.2.0" version "5.1.4"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.2.0.tgz#694c54fcdfa5f5cb2ceaf31929e7535b32a8a50c" resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz#c369cf8a47aa9922bd0d8a94fe3d3da11a7678a1"
integrity sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg== integrity sha512-C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==
dependencies: dependencies:
jest-worker "^27.0.6" jest-worker "^27.0.2"
p-limit "^3.1.0" p-limit "^3.1.0"
schema-utils "^3.1.1" schema-utils "^3.0.0"
serialize-javascript "^6.0.0" serialize-javascript "^6.0.0"
source-map "^0.6.1" source-map "^0.6.1"
terser "^5.7.2" terser "^5.7.0"
terser@^5.7.2: terser@^5.7.0:
version "5.7.2" version "5.7.2"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz#d4d95ed4f8bf735cb933e802f2a1829abf545e3f" resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz#d4d95ed4f8bf735cb933e802f2a1829abf545e3f"
integrity sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw== integrity sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw==
...@@ -7648,7 +7643,7 @@ tslib@^1.10.0, tslib@^1.9.0: ...@@ -7648,7 +7643,7 @@ tslib@^1.10.0, tslib@^1.9.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.3.1: tslib@^2.1.0:
version "2.3.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
...@@ -8117,9 +8112,9 @@ ws@^6.1.0: ...@@ -8117,9 +8112,9 @@ ws@^6.1.0:
async-limiter "~1.0.0" async-limiter "~1.0.0"
ws@^7.1.2: ws@^7.1.2:
version "7.5.4" version "7.5.3"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.4.tgz#56bfa20b167427e138a7795de68d134fe92e21f9" resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74"
integrity sha512-zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg== integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==
xdg-basedir@^2.0.0: xdg-basedir@^2.0.0:
version "2.0.0" version "2.0.0"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment