Unnamed: 0 int64 1 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 7 112 | repo_url stringlengths 36 141 | action stringclasses 3 values | title stringlengths 3 438 | labels stringlengths 4 308 | body stringlengths 7 254k | index stringclasses 7 values | text_combine stringlengths 96 254k | label stringclasses 2 values | text stringlengths 96 246k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2,678 | 9,216,154,407 | IssuesEvent | 2019-03-11 07:01:34 | Inovesa/Inovesa | https://api.github.com/repos/Inovesa/Inovesa | opened | Make coordinates more intuitive | maintainability | The size of the phase space and its orientation are defined globally. This should be used.
* The original design of the Inovesa source maps relied heavily on passing the fixed size as a parameter to the constructors. A large step in changing this was done in https://github.com/Inovesa/Inovesa/commit/7e964fb3b69255680d242f68ad18c81852b56a64 but the work is not completed, yet.
* The orientation should be clear, strict and obvious. Comments like https://github.com/Inovesa/Inovesa/blob/7e964fb3b69255680d242f68ad18c81852b56a64/src/SM/KickMap.cpp#L276 hint to design problems. | True | Make coordinates more intuitive - The size of the phase space and its orientation are defined globally. This should be used.
* The original design of the Inovesa source maps relied heavily on passing the fixed size as a parameter to the constructors. A large step in changing this was done in https://github.com/Inovesa/Inovesa/commit/7e964fb3b69255680d242f68ad18c81852b56a64 but the work is not completed, yet.
* The orientation should be clear, strict and obvious. Comments like https://github.com/Inovesa/Inovesa/blob/7e964fb3b69255680d242f68ad18c81852b56a64/src/SM/KickMap.cpp#L276 hint to design problems. | main | make coordinates more intuitive the size of the phase space and its orientation are defined globally this should be used the original design of the inovesa source maps relied heavily on passing the fixed size as a parameter to the constructors a large step in changing this was done in but the work is not completed yet the orientation should be clear strict and obvious comments like hint to design problems | 1 |
4,951 | 25,455,552,773 | IssuesEvent | 2022-11-24 13:55:27 | pace/bricks | https://api.github.com/repos/pace/bricks | closed | service generation: create migration command | T::Maintainance | When generating a new service, also generate commands for migrating. | True | service generation: create migration command - When generating a new service, also generate commands for migrating. | main | service generation create migration command when generating a new service also generate commands for migrating | 1 |
663 | 4,186,286,245 | IssuesEvent | 2016-06-23 14:05:33 | Particular/NServiceBus.RavenDB | https://api.github.com/repos/Particular/NServiceBus.RavenDB | opened | TimeoutPersisterReceiver: The maximum number of requests (30) allowed for this session has been reached. | Impact: S Tag: Maintainer Prio Type: Bug | The timeout persister does a while loop until all timeouts are fetched. If a lot of timeouts are expired this will result in MaxNumberOfRequestsPerSession to exceed its tresshold and RavenDB to throw an InvalidOperationException
Location : https://github.com/Particular/NServiceBus.RavenDB/blob/support-3.0/src/NServiceBus.RavenDB/Timeouts/TimeoutPersister.cs#L42
## Stacktrace
```
WARN NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver Failed to fetch timeouts from the timeout storage
System.InvalidOperationException: The maximum number of requests (30) allowed for this session has been reached.
Raven limits the number of remote calls that a session is allowed to make as an early warning system. Sessions are expected to be short lived, and
Raven provides facilities like Load(string[] keys) to load multiple documents at once and batch saves (call SaveChanges() only once).
You can increase the limit by setting DocumentConvention.MaxNumberOfRequestsPerSession or MaxNumberOfRequestsPerSession, but it is
advisable that you'll look into reducing the number of remote calls first, since that will speed up your application significantly and result in a
more responsive application.
at Raven.Client.Document.InMemoryDocumentSessionOperations.IncrementRequestCount() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\InMemoryDocumentSessionOperations.cs:line 349
at Raven.Client.Document.AbstractDocumentQuery`2.ExecuteActualQuery() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 679
at Raven.Client.Document.AbstractDocumentQuery`2.InitSync() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 666
at Raven.Client.Document.AbstractDocumentQuery`2.get_QueryResult() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 653
at Raven.Client.Linq.RavenQueryProviderProcessor`1.ExecuteQuery[TProjection]() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProviderProcessor.cs:line 1628
at Raven.Client.Linq.RavenQueryProviderProcessor`1.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProviderProcessor.cs:line 1600
at Raven.Client.Linq.RavenQueryProvider`1.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProvider.cs:line 154
at Raven.Client.Linq.RavenQueryProvider`1.System.Linq.IQueryProvider.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProvider.cs:line 212
at Raven.Client.Linq.RavenQueryInspector`1.GetEnumerator() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryInspector.cs:line 101
at NServiceBus.TimeoutPersisters.RavenDB.TimeoutPersister.GetNextChunk(DateTime startSlice, DateTime& nextTimeToRunQuery) in C:\BuildAgent\work\c4d62ce02b983878\src\NServiceBus.RavenDB\Timeouts\TimeoutPersister.cs:line 71
at NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver.Poll(Object obj) in C:\BuildAgent\work\3206e2123f54fce4\src\NServiceBus.Core\Timeout\Hosting\Windows\TimeoutPersisterReceiver.cs:line 90
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()``` | True | TimeoutPersisterReceiver: The maximum number of requests (30) allowed for this session has been reached. - The timeout persister does a while loop until all timeouts are fetched. If a lot of timeouts are expired this will result in MaxNumberOfRequestsPerSession to exceed its tresshold and RavenDB to throw an InvalidOperationException
Location : https://github.com/Particular/NServiceBus.RavenDB/blob/support-3.0/src/NServiceBus.RavenDB/Timeouts/TimeoutPersister.cs#L42
## Stacktrace
```
WARN NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver Failed to fetch timeouts from the timeout storage
System.InvalidOperationException: The maximum number of requests (30) allowed for this session has been reached.
Raven limits the number of remote calls that a session is allowed to make as an early warning system. Sessions are expected to be short lived, and
Raven provides facilities like Load(string[] keys) to load multiple documents at once and batch saves (call SaveChanges() only once).
You can increase the limit by setting DocumentConvention.MaxNumberOfRequestsPerSession or MaxNumberOfRequestsPerSession, but it is
advisable that you'll look into reducing the number of remote calls first, since that will speed up your application significantly and result in a
more responsive application.
at Raven.Client.Document.InMemoryDocumentSessionOperations.IncrementRequestCount() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\InMemoryDocumentSessionOperations.cs:line 349
at Raven.Client.Document.AbstractDocumentQuery`2.ExecuteActualQuery() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 679
at Raven.Client.Document.AbstractDocumentQuery`2.InitSync() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 666
at Raven.Client.Document.AbstractDocumentQuery`2.get_QueryResult() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Document\AbstractDocumentQuery.cs:line 653
at Raven.Client.Linq.RavenQueryProviderProcessor`1.ExecuteQuery[TProjection]() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProviderProcessor.cs:line 1628
at Raven.Client.Linq.RavenQueryProviderProcessor`1.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProviderProcessor.cs:line 1600
at Raven.Client.Linq.RavenQueryProvider`1.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProvider.cs:line 154
at Raven.Client.Linq.RavenQueryProvider`1.System.Linq.IQueryProvider.Execute(Expression expression) in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryProvider.cs:line 212
at Raven.Client.Linq.RavenQueryInspector`1.GetEnumerator() in c:\Builds\RavenDB-Stable-3.0\Raven.Client.Lightweight\Linq\RavenQueryInspector.cs:line 101
at NServiceBus.TimeoutPersisters.RavenDB.TimeoutPersister.GetNextChunk(DateTime startSlice, DateTime& nextTimeToRunQuery) in C:\BuildAgent\work\c4d62ce02b983878\src\NServiceBus.RavenDB\Timeouts\TimeoutPersister.cs:line 71
at NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver.Poll(Object obj) in C:\BuildAgent\work\3206e2123f54fce4\src\NServiceBus.Core\Timeout\Hosting\Windows\TimeoutPersisterReceiver.cs:line 90
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()``` | main | timeoutpersisterreceiver the maximum number of requests allowed for this session has been reached the timeout persister does a while loop until all timeouts are fetched if a lot of timeouts are expired this will result in maxnumberofrequestspersession to exceed its tresshold and ravendb to throw an invalidoperationexception location stacktrace warn nservicebus timeout hosting windows timeoutpersisterreceiver failed to fetch timeouts from the timeout storage system invalidoperationexception the maximum number of requests allowed for this session has been reached raven limits the number of remote calls that a session is allowed to make as an early warning system sessions are expected to be short lived and raven provides facilities like load string keys to load multiple documents at once and batch saves call savechanges only once you can increase the limit by setting documentconvention maxnumberofrequestspersession or maxnumberofrequestspersession but it is advisable that you ll look into reducing the number of remote calls first since that will speed up your application significantly and result in a more responsive application at raven client document inmemorydocumentsessionoperations incrementrequestcount in c builds ravendb stable raven client lightweight document inmemorydocumentsessionoperations cs line at raven client document abstractdocumentquery executeactualquery in c builds ravendb stable raven client lightweight document abstractdocumentquery cs line at raven client document abstractdocumentquery initsync in c builds ravendb stable raven client lightweight document abstractdocumentquery cs line at raven client document abstractdocumentquery get queryresult in c builds ravendb stable raven client lightweight document abstractdocumentquery cs line at raven client linq ravenqueryproviderprocessor executequery in c builds ravendb stable raven client lightweight linq ravenqueryproviderprocessor cs line at raven client linq ravenqueryproviderprocessor execute expression expression in c builds ravendb stable raven client lightweight linq ravenqueryproviderprocessor cs line at raven client linq ravenqueryprovider execute expression expression in c builds ravendb stable raven client lightweight linq ravenqueryprovider cs line at raven client linq ravenqueryprovider system linq iqueryprovider execute expression expression in c builds ravendb stable raven client lightweight linq ravenqueryprovider cs line at raven client linq ravenqueryinspector getenumerator in c builds ravendb stable raven client lightweight linq ravenqueryinspector cs line at nservicebus timeoutpersisters ravendb timeoutpersister getnextchunk datetime startslice datetime nexttimetorunquery in c buildagent work src nservicebus ravendb timeouts timeoutpersister cs line at nservicebus timeout hosting windows timeoutpersisterreceiver poll object obj in c buildagent work src nservicebus core timeout hosting windows timeoutpersisterreceiver cs line at system threading tasks task innerinvoke at system threading tasks task execute | 1 |
3,162 | 12,226,500,548 | IssuesEvent | 2020-05-03 11:13:35 | gfleetwood/asteres | https://api.github.com/repos/gfleetwood/asteres | opened | snakemake/snakemake (212840200) | HTML maintain | https://github.com/snakemake/snakemake
This is the development home of the workflow management system Snakemake. For general information, see | True | snakemake/snakemake (212840200) - https://github.com/snakemake/snakemake
This is the development home of the workflow management system Snakemake. For general information, see | main | snakemake snakemake this is the development home of the workflow management system snakemake for general information see | 1 |
365,944 | 10,800,040,089 | IssuesEvent | 2019-11-06 13:29:27 | fabiocolacio/Marker | https://api.github.com/repos/fabiocolacio/Marker | closed | Using accents disables CSS in preview | bug priority: mid | When there is an accent in the file path or an accent in the content of the file, the CSS preview fall back to the default, unstyled one. I'm using the version 2018.01.09 on ArchLinux, installed from the AUR.
Let me know how I can help debug this. | 1.0 | Using accents disables CSS in preview - When there is an accent in the file path or an accent in the content of the file, the CSS preview fall back to the default, unstyled one. I'm using the version 2018.01.09 on ArchLinux, installed from the AUR.
Let me know how I can help debug this. | non_main | using accents disables css in preview when there is an accent in the file path or an accent in the content of the file the css preview fall back to the default unstyled one i m using the version on archlinux installed from the aur let me know how i can help debug this | 0 |
3,209 | 12,246,559,131 | IssuesEvent | 2020-05-05 14:37:54 | arcticicestudio/igloo | https://api.github.com/repos/arcticicestudio/igloo | closed | XDG base directory specification compatibility for Git | scope-maintainability scope-quality snowblock-git type-improvement | <div align="center"><img src="https://upload.wikimedia.org/wikipedia/commons/e/e0/Git-logo.svg" width="200px"/></div>
Currently the _Git_ snowblock symlinks to the default _dotfiles_ within the home directory, but _Git_ also fully supports the [XDG base directory specification][xdg-spec-bd]. So in order to get a step further regarding a "clean home directory root" the files will be moved to the dedicated _XDG_ directory.
- [Global (`--global`) configuration file][git-docs-config_file] β `~/.gitconfig` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/config`
- [Global exclude file][git-docs-excl_file] β `~/.gitignore` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/ignore`
- [Global attributes file][git-docs-attr_file] β `~/.gitattributes` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/attributes`
Also the current templates and files used in conditional `include` blocks will be renamed and moved into a new and cleaner directory structure.
[git-docs-attr_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreattributesFile
[git-docs-config_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt---global
[git-docs-excl_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreexcludesFile
[xdg-spec-bd]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
| True | XDG base directory specification compatibility for Git - <div align="center"><img src="https://upload.wikimedia.org/wikipedia/commons/e/e0/Git-logo.svg" width="200px"/></div>
Currently the _Git_ snowblock symlinks to the default _dotfiles_ within the home directory, but _Git_ also fully supports the [XDG base directory specification][xdg-spec-bd]. So in order to get a step further regarding a "clean home directory root" the files will be moved to the dedicated _XDG_ directory.
- [Global (`--global`) configuration file][git-docs-config_file] β `~/.gitconfig` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/config`
- [Global exclude file][git-docs-excl_file] β `~/.gitignore` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/ignore`
- [Global attributes file][git-docs-attr_file] β `~/.gitattributes` β `${XDG_CONFIG_HOME:-$HOME/.config}/git/attributes`
Also the current templates and files used in conditional `include` blocks will be renamed and moved into a new and cleaner directory structure.
[git-docs-attr_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreattributesFile
[git-docs-config_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt---global
[git-docs-excl_file]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreexcludesFile
[xdg-spec-bd]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
| main | xdg base directory specification compatibility for git currently the git snowblock symlinks to the default dotfiles within the home directory but git also fully supports the so in order to get a step further regarding a clean home directory root the files will be moved to the dedicated xdg directory β gitconfig β xdg config home home config git config β gitignore β xdg config home home config git ignore β gitattributes β xdg config home home config git attributes also the current templates and files used in conditional include blocks will be renamed and moved into a new and cleaner directory structure | 1 |
4,994 | 25,708,565,766 | IssuesEvent | 2022-12-07 03:48:23 | aws/serverless-application-model | https://api.github.com/repos/aws/serverless-application-model | closed | "EventBusName: default" in template causes stabilization error + rollback | type/bug maintainer/need-response | **Description:**
Related to https://github.com/awslabs/serverless-application-model/releases/tag/v1.17.0.
**Steps to reproduce the issue:**
Using this template...
```
Events:
Trigger:
Type: CloudWatchEvent
Properties:
EventBusName: default
Pattern:
source:
- "myApp"
```
.. the deployment will result in a stabilization error and rollback. The rule is created in EventBridge with a truncated name but the stack is rolled back, never deleting this resource.
If this attribute is removed, the rule is created successfully and defaults to the default event bus. However, this attribute is needed to create rules on custom event buses.
**Observed result:**
Rollback/failure.
**Expected result:**
Should create the rule using the default eventbus. Should also provide a useful error.
| True | "EventBusName: default" in template causes stabilization error + rollback - **Description:**
Related to https://github.com/awslabs/serverless-application-model/releases/tag/v1.17.0.
**Steps to reproduce the issue:**
Using this template...
```
Events:
Trigger:
Type: CloudWatchEvent
Properties:
EventBusName: default
Pattern:
source:
- "myApp"
```
.. the deployment will result in a stabilization error and rollback. The rule is created in EventBridge with a truncated name but the stack is rolled back, never deleting this resource.
If this attribute is removed, the rule is created successfully and defaults to the default event bus. However, this attribute is needed to create rules on custom event buses.
**Observed result:**
Rollback/failure.
**Expected result:**
Should create the rule using the default eventbus. Should also provide a useful error.
| main | eventbusname default in template causes stabilization error rollback description related to steps to reproduce the issue using this template events trigger type cloudwatchevent properties eventbusname default pattern source myapp the deployment will result in a stabilization error and rollback the rule is created in eventbridge with a truncated name but the stack is rolled back never deleting this resource if this attribute is removed the rule is created successfully and defaults to the default event bus however this attribute is needed to create rules on custom event buses observed result rollback failure expected result should create the rule using the default eventbus should also provide a useful error | 1 |
5,118 | 26,048,370,154 | IssuesEvent | 2022-12-22 16:15:59 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | closed | AttributeError error "attname" when renaming a newly created table | type: bug work: backend status: ready restricted: maintainers | ## Steps to reproduce
1. Begin with our Library Schema.
1. From the schema page, choose "New Table" > "From Scratch".
1. When the Table Page loads, rename the table to "Reviews".
1. Observe the following error when loading the records for the table:
<details>
<summary>Traceback</summary>
```
Environment:
Request Method: GET
Request URL: http://localhost:8000/api/db/v0/tables/129/records/?limit=500&offset=0
Django Version: 3.1.14
Python Version: 3.9.16
Installed Applications:
['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'django_filters',
'django_property_filter',
'mathesar']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'mathesar.middleware.CursorClosedHandlerMiddleware',
'mathesar.middleware.PasswordChangeNeededMiddleware',
'django_userforeignkey.middleware.UserForeignKeyMiddleware',
'django_request_cache.middleware.RequestCacheMiddleware']
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/base.py", line 1167, in __getattr__
return self._index[key]
The above exception ('attname') was the direct cause of the following exception:
File "/usr/local/lib/python3.9/site-packages/django/core/handlers/exception.py", line 47, in inner
response = get_response(request)
File "/usr/local/lib/python3.9/site-packages/django/core/handlers/base.py", line 181, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python3.9/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/rest_framework/viewsets.py", line 125, in view
return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 466, in handle_exception
response = exception_handler(exc, context)
File "/code/mathesar/exception_handlers.py", line 59, in mathesar_exception_handler
raise exc
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/code/mathesar/api/db/viewsets/records.py", line 55, in list
column_names_to_ids = table.get_column_name_id_bidirectional_map()
File "/code/mathesar/models/base.py", line 543, in get_column_name_id_bidirectional_map
columns_map = bidict({column.name: column.id for column in columns})
File "/usr/local/lib/python3.9/site-packages/django/db/models/query.py", line 287, in __iter__
self._fetch_all()
File "/code/mathesar/utils/prefetch.py", line 158, in _fetch_all
prefetcher.fetch(obj_list, name, self.model, forwarders)
File "/code/mathesar/utils/prefetch.py", line 270, in fetch
related_data = self.filter(data_mapping.keys(), data_mapping.values())
File "/code/mathesar/models/base.py", line 222, in filter
return get_map_of_attnum_to_column_name(
File "/code/db/columns/operations/select.py", line 91, in get_map_of_attnum_to_column_name
triples_of_col_info = _get_triples_of_column_name_and_attnum_and_table_oid(
File "/code/db/columns/operations/select.py", line 104, in _get_triples_of_column_name_and_attnum_and_table_oid
statement = _statement_for_triples_of_column_name_and_attnum_and_table_oid(
File "/code/db/columns/operations/select.py", line 180, in _statement_for_triples_of_column_name_and_attnum_and_table_oid
sel = select(pg_attribute.c.attname, pg_attribute.c.attnum, pg_attribute.c.attrelid)
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/base.py", line 1169, in __getattr__
util.raise_(AttributeError(key), replace_context=err)
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/util/compat.py", line 207, in raise_
raise exception
Exception Type: AttributeError at /api/db/v0/tables/129/records/
Exception Value: attname
```
</details>
Here's a video which demos the above steps
https://user-images.githubusercontent.com/42411/207400140-bc4fdd90-6655-4213-95ce-a5cb111f6749.mp4
(The screencap continues on past this error, in reproducing another issue which may or may not be related to this one.)
| True | AttributeError error "attname" when renaming a newly created table - ## Steps to reproduce
1. Begin with our Library Schema.
1. From the schema page, choose "New Table" > "From Scratch".
1. When the Table Page loads, rename the table to "Reviews".
1. Observe the following error when loading the records for the table:
<details>
<summary>Traceback</summary>
```
Environment:
Request Method: GET
Request URL: http://localhost:8000/api/db/v0/tables/129/records/?limit=500&offset=0
Django Version: 3.1.14
Python Version: 3.9.16
Installed Applications:
['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'django_filters',
'django_property_filter',
'mathesar']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'mathesar.middleware.CursorClosedHandlerMiddleware',
'mathesar.middleware.PasswordChangeNeededMiddleware',
'django_userforeignkey.middleware.UserForeignKeyMiddleware',
'django_request_cache.middleware.RequestCacheMiddleware']
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/base.py", line 1167, in __getattr__
return self._index[key]
The above exception ('attname') was the direct cause of the following exception:
File "/usr/local/lib/python3.9/site-packages/django/core/handlers/exception.py", line 47, in inner
response = get_response(request)
File "/usr/local/lib/python3.9/site-packages/django/core/handlers/base.py", line 181, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python3.9/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/rest_framework/viewsets.py", line 125, in view
return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 466, in handle_exception
response = exception_handler(exc, context)
File "/code/mathesar/exception_handlers.py", line 59, in mathesar_exception_handler
raise exc
File "/usr/local/lib/python3.9/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/code/mathesar/api/db/viewsets/records.py", line 55, in list
column_names_to_ids = table.get_column_name_id_bidirectional_map()
File "/code/mathesar/models/base.py", line 543, in get_column_name_id_bidirectional_map
columns_map = bidict({column.name: column.id for column in columns})
File "/usr/local/lib/python3.9/site-packages/django/db/models/query.py", line 287, in __iter__
self._fetch_all()
File "/code/mathesar/utils/prefetch.py", line 158, in _fetch_all
prefetcher.fetch(obj_list, name, self.model, forwarders)
File "/code/mathesar/utils/prefetch.py", line 270, in fetch
related_data = self.filter(data_mapping.keys(), data_mapping.values())
File "/code/mathesar/models/base.py", line 222, in filter
return get_map_of_attnum_to_column_name(
File "/code/db/columns/operations/select.py", line 91, in get_map_of_attnum_to_column_name
triples_of_col_info = _get_triples_of_column_name_and_attnum_and_table_oid(
File "/code/db/columns/operations/select.py", line 104, in _get_triples_of_column_name_and_attnum_and_table_oid
statement = _statement_for_triples_of_column_name_and_attnum_and_table_oid(
File "/code/db/columns/operations/select.py", line 180, in _statement_for_triples_of_column_name_and_attnum_and_table_oid
sel = select(pg_attribute.c.attname, pg_attribute.c.attnum, pg_attribute.c.attrelid)
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/base.py", line 1169, in __getattr__
util.raise_(AttributeError(key), replace_context=err)
File "/usr/local/lib/python3.9/site-packages/sqlalchemy/util/compat.py", line 207, in raise_
raise exception
Exception Type: AttributeError at /api/db/v0/tables/129/records/
Exception Value: attname
```
</details>
Here's a video which demos the above steps
https://user-images.githubusercontent.com/42411/207400140-bc4fdd90-6655-4213-95ce-a5cb111f6749.mp4
(The screencap continues on past this error, in reproducing another issue which may or may not be related to this one.)
| main | attributeerror error attname when renaming a newly created table steps to reproduce begin with our library schema from the schema page choose new table from scratch when the table page loads rename the table to reviews observe the following error when loading the records for the table traceback environment request method get request url django version python version installed applications django contrib admin django contrib auth django contrib contenttypes django contrib sessions django contrib messages django contrib staticfiles rest framework django filters django property filter mathesar installed middleware django middleware security securitymiddleware django contrib sessions middleware sessionmiddleware django middleware common commonmiddleware django middleware csrf csrfviewmiddleware django contrib auth middleware authenticationmiddleware django contrib messages middleware messagemiddleware django middleware clickjacking xframeoptionsmiddleware mathesar middleware cursorclosedhandlermiddleware mathesar middleware passwordchangeneededmiddleware django userforeignkey middleware userforeignkeymiddleware django request cache middleware requestcachemiddleware traceback most recent call last file usr local lib site packages sqlalchemy sql base py line in getattr return self index the above exception attname was the direct cause of the following exception file usr local lib site packages django core handlers exception py line in inner response get response request file usr local lib site packages django core handlers base py line in get response response wrapped callback request callback args callback kwargs file usr local lib site packages django views decorators csrf py line in wrapped view return view func args kwargs file usr local lib site packages rest framework viewsets py line in view return self dispatch request args kwargs file usr local lib site packages rest framework views py line in dispatch response self handle exception exc file usr local lib site packages rest framework views py line in handle exception response exception handler exc context file code mathesar exception handlers py line in mathesar exception handler raise exc file usr local lib site packages rest framework views py line in dispatch response handler request args kwargs file code mathesar api db viewsets records py line in list column names to ids table get column name id bidirectional map file code mathesar models base py line in get column name id bidirectional map columns map bidict column name column id for column in columns file usr local lib site packages django db models query py line in iter self fetch all file code mathesar utils prefetch py line in fetch all prefetcher fetch obj list name self model forwarders file code mathesar utils prefetch py line in fetch related data self filter data mapping keys data mapping values file code mathesar models base py line in filter return get map of attnum to column name file code db columns operations select py line in get map of attnum to column name triples of col info get triples of column name and attnum and table oid file code db columns operations select py line in get triples of column name and attnum and table oid statement statement for triples of column name and attnum and table oid file code db columns operations select py line in statement for triples of column name and attnum and table oid sel select pg attribute c attname pg attribute c attnum pg attribute c attrelid file usr local lib site packages sqlalchemy sql base py line in getattr util raise attributeerror key replace context err file usr local lib site packages sqlalchemy util compat py line in raise raise exception exception type attributeerror at api db tables records exception value attname here s a video which demos the above steps the screencap continues on past this error in reproducing another issue which may or may not be related to this one | 1 |
2,579 | 8,766,703,060 | IssuesEvent | 2018-12-17 17:31:38 | RalfKoban/MiKo-Analyzers | https://api.github.com/repos/RalfKoban/MiKo-Analyzers | closed | Do not implement ICloneable.Clone() method | Area: analyzer Area: maintainability feature in progress | The `ICloneable.Clone()` method does not define whether a deep or a swallow copy shall be returned.
As that is not defined, there is no guarantee how it gets implemented, and - because of that - it cannot be used as there is a huge difference between a deep and a swallow copy. | True | Do not implement ICloneable.Clone() method - The `ICloneable.Clone()` method does not define whether a deep or a swallow copy shall be returned.
As that is not defined, there is no guarantee how it gets implemented, and - because of that - it cannot be used as there is a huge difference between a deep and a swallow copy. | main | do not implement icloneable clone method the icloneable clone method does not define whether a deep or a swallow copy shall be returned as that is not defined there is no guarantee how it gets implemented and because of that it cannot be used as there is a huge difference between a deep and a swallow copy | 1 |
571 | 2,541,824,978 | IssuesEvent | 2015-01-28 12:04:44 | Starcounter/Starcounter | https://api.github.com/repos/Starcounter/Starcounter | closed | Change datatype of Entity.Type from Entity to object | Code host G/DynamicSchema in-progress | As we have decided to postpone #2502, as discussed in this https://github.com/Starcounter/Starcounter/issues/2502#issuecomment-71632818, I now decided that the temporary solution until we have #2502 done will be to change the datatype of ```Entity.Type``` to ```object```.
With this, we are able to drop the explicit auto-creation of the ```Entity``` during binding, and instead return one of the metadata instances.
This also fits the changing of #2516, which I will do at the same time.
This relates to, and affects, both #2510 and #2480. | 1.0 | Change datatype of Entity.Type from Entity to object - As we have decided to postpone #2502, as discussed in this https://github.com/Starcounter/Starcounter/issues/2502#issuecomment-71632818, I now decided that the temporary solution until we have #2502 done will be to change the datatype of ```Entity.Type``` to ```object```.
With this, we are able to drop the explicit auto-creation of the ```Entity``` during binding, and instead return one of the metadata instances.
This also fits the changing of #2516, which I will do at the same time.
This relates to, and affects, both #2510 and #2480. | non_main | change datatype of entity type from entity to object as we have decided to postpone as discussed in this i now decided that the temporary solution until we have done will be to change the datatype of entity type to object with this we are able to drop the explicit auto creation of the entity during binding and instead return one of the metadata instances this also fits the changing of which i will do at the same time this relates to and affects both and | 0 |
4,652 | 24,091,080,747 | IssuesEvent | 2022-09-19 14:48:35 | beyarkay/eskom-calendar | https://api.github.com/repos/beyarkay/eskom-calendar | closed | Add support for Tshwane | waiting-on-maintainer waiting-on-time missing-area-schedule | Area name: Tshwane
Link to loadshedding schedule: https://www.tshwane.gov.za/sites/Departments/Public-works-and-infrastructure/Pages/Load-Shedding.aspx
### Possible technical issues:
None anticipated | True | Add support for Tshwane - Area name: Tshwane
Link to loadshedding schedule: https://www.tshwane.gov.za/sites/Departments/Public-works-and-infrastructure/Pages/Load-Shedding.aspx
### Possible technical issues:
None anticipated | main | add support for tshwane area name tshwane link to loadshedding schedule possible technical issues none anticipated | 1 |
1,151 | 5,008,930,381 | IssuesEvent | 2016-12-12 20:55:23 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | Make authorize in ASA more user friendly | affects_2.3 bug_report networking waiting_on_maintainer | Saw this a few days ago. I hope to find time to fix it, but haven't yet.
##### ISSUE TYPE
- Bug Report
- Feature Idea
##### COMPONENT NAME
- asa_acl
- asa_config
- asa_command
##### ANSIBLE VERSION
```
$ ansible --version
ansible 2.3.0 (devel 38d0f77a0f) last updated 2016/10/18 18:39:48 (GMT +200)
lib/ansible/modules/core: (devel ecc4029753) last updated 2016/10/18 18:41:14 (GMT +200)
lib/ansible/modules/extras: (devel 3f77bb6857) last updated 2016/10/18 18:41:28 (GMT +200)
config file = /Users/patrick/src/tests/ansible-asa/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Unlike Cisco IOS the Cisco ASA cli doesn't ignore the `enable` command if the user already is in enable mode.
```
ns2903-asa-02# enable
^
ERROR: % Invalid input detected at '^' marker.
ns2903-asa-02#
```
##### STEPS TO REPRODUCE
Code in ASA
```
aaa authentication ssh console LOCAL
aaa authentication enable console LOCAL
aaa authorization exec LOCAL auto-enable
username cisco password 3USUcOPFUiMCO4Jk encrypted privilege 15
```
Playbook:
```
---
- hosts: firewall
connection: local
gather_facts: false
tasks:
- name: Show version
asa_command:
host: "{{ inventory_hostname }}"
auth_pass: cisco
username: cisco
password: cisco
authorize: yes
commands:
- show run
```
##### EXPECTED RESULTS
It would be more userfriendly if [asa.py](https://github.com/ansible/ansible/blob/devel/lib/ansible/module_utils/asa.py) either looked at the prompt first and didn't run `enable` if the prompt ended with `#` instead of `>`, another option would be to ignore the warning when this command was issued.
##### ACTUAL RESULTS
```
$ ansible-playbook -i hosts asa-sanity.yml
PLAY [firewall] ****************************************************************
TASK [Show version] ************************************************************
fatal: [172.29.50.2]: FAILED! => {"changed": false, "failed": true, "msg": "matched error in response: enable\r\n ^\r\nERROR: % Invalid input detected at '^' marker.\r\n"}
```
| True | Make authorize in ASA more user friendly - Saw this a few days ago. I hope to find time to fix it, but haven't yet.
##### ISSUE TYPE
- Bug Report
- Feature Idea
##### COMPONENT NAME
- asa_acl
- asa_config
- asa_command
##### ANSIBLE VERSION
```
$ ansible --version
ansible 2.3.0 (devel 38d0f77a0f) last updated 2016/10/18 18:39:48 (GMT +200)
lib/ansible/modules/core: (devel ecc4029753) last updated 2016/10/18 18:41:14 (GMT +200)
lib/ansible/modules/extras: (devel 3f77bb6857) last updated 2016/10/18 18:41:28 (GMT +200)
config file = /Users/patrick/src/tests/ansible-asa/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Unlike Cisco IOS the Cisco ASA cli doesn't ignore the `enable` command if the user already is in enable mode.
```
ns2903-asa-02# enable
^
ERROR: % Invalid input detected at '^' marker.
ns2903-asa-02#
```
##### STEPS TO REPRODUCE
Code in ASA
```
aaa authentication ssh console LOCAL
aaa authentication enable console LOCAL
aaa authorization exec LOCAL auto-enable
username cisco password 3USUcOPFUiMCO4Jk encrypted privilege 15
```
Playbook:
```
---
- hosts: firewall
connection: local
gather_facts: false
tasks:
- name: Show version
asa_command:
host: "{{ inventory_hostname }}"
auth_pass: cisco
username: cisco
password: cisco
authorize: yes
commands:
- show run
```
##### EXPECTED RESULTS
It would be more userfriendly if [asa.py](https://github.com/ansible/ansible/blob/devel/lib/ansible/module_utils/asa.py) either looked at the prompt first and didn't run `enable` if the prompt ended with `#` instead of `>`, another option would be to ignore the warning when this command was issued.
##### ACTUAL RESULTS
```
$ ansible-playbook -i hosts asa-sanity.yml
PLAY [firewall] ****************************************************************
TASK [Show version] ************************************************************
fatal: [172.29.50.2]: FAILED! => {"changed": false, "failed": true, "msg": "matched error in response: enable\r\n ^\r\nERROR: % Invalid input detected at '^' marker.\r\n"}
```
| main | make authorize in asa more user friendly saw this a few days ago i hope to find time to fix it but haven t yet issue type bug report feature idea component name asa acl asa config asa command ansible version ansible version ansible devel last updated gmt lib ansible modules core devel last updated gmt lib ansible modules extras devel last updated gmt config file users patrick src tests ansible asa ansible cfg configured module search path default w o overrides configuration n a os environment n a summary unlike cisco ios the cisco asa cli doesn t ignore the enable command if the user already is in enable mode asa enable error invalid input detected at marker asa steps to reproduce code in asa aaa authentication ssh console local aaa authentication enable console local aaa authorization exec local auto enable username cisco password encrypted privilege playbook hosts firewall connection local gather facts false tasks name show version asa command host inventory hostname auth pass cisco username cisco password cisco authorize yes commands show run expected results it would be more userfriendly if either looked at the prompt first and didn t run enable if the prompt ended with instead of another option would be to ignore the warning when this command was issued actual results ansible playbook i hosts asa sanity yml play task fatal failed changed false failed true msg matched error in response enable r n r nerror invalid input detected at marker r n | 1 |
4,917 | 25,281,888,816 | IssuesEvent | 2022-11-16 16:20:01 | precice/precice | https://api.github.com/repos/precice/precice | closed | Remove deprecated API functions mapWriteDataFrom and mapReadDataTo | maintainability breaking change | ... and also the associated mapping timing.
There is currently no use case for these functions. | True | Remove deprecated API functions mapWriteDataFrom and mapReadDataTo - ... and also the associated mapping timing.
There is currently no use case for these functions. | main | remove deprecated api functions mapwritedatafrom and mapreaddatato and also the associated mapping timing there is currently no use case for these functions | 1 |
24,792 | 6,575,278,389 | IssuesEvent | 2017-09-11 15:34:33 | LukasKalbertodt/luten | https://api.github.com/repos/LukasKalbertodt/luten | closed | Preparation overview page & general settings | K-new-feature P-preparation-state S-preparation V-student W-code W-database W-design W-web | Students can:
- tick "Random partner" or specify a specific partner
- choose their preferred language (En or De)
The page also needs to show explanation what the student has to do. Additionally a "my status" box would be nice: it shows whether or not the student has done everything they have to.
These settings are then stored in the database. | 1.0 | Preparation overview page & general settings - Students can:
- tick "Random partner" or specify a specific partner
- choose their preferred language (En or De)
The page also needs to show explanation what the student has to do. Additionally a "my status" box would be nice: it shows whether or not the student has done everything they have to.
These settings are then stored in the database. | non_main | preparation overview page general settings students can tick random partner or specify a specific partner choose their preferred language en or de the page also needs to show explanation what the student has to do additionally a my status box would be nice it shows whether or not the student has done everything they have to these settings are then stored in the database | 0 |
1,733 | 6,574,850,183 | IssuesEvent | 2017-09-11 14:17:01 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | Azure storage account facts module returns no facts at all | affects_2.1 azure bug_report cloud waiting_on_maintainer | ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
`azure_rm_storageaccount_facts`
##### ANSIBLE VERSION
```
ansible 2.1.2.0
config file = /usr/src/playbooks/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
Default
##### OS / ENVIRONMENT
Ubuntu 14.04 LTS
##### SUMMARY
The module returns no useful information and provides no value. I have to fall back to the `azure-cli` `node.js` module in order to retrieve the storage account keys and manually parse the text output.
##### STEPS TO REPRODUCE
Just run this:
```
- name: Get azure facts
azure_rm_storageaccount_facts:
name: "{{ account_name }}"
resource_group: "{{ resource_group }}"
client_id: "{{ client_id }}"
secret: "{{ client_secret }}"
subscription_id: "{{ subscription_id }}"
tenant: "{{ tenant_id }}"
```
##### EXPECTED RESULTS
Account access keys, blob/containers if any, etc. Basically, useful information about the storage account, which I could use. I'd expect the exact same capabilities as the official `azure-cli` by Microsoft, buy I'd settle for simple stuff. The fact that this doesn't return anything useful makes the `azure_rm_storageaccount` useless for automation, since you can create/destroy storage accounts but you can't get their access keys.
##### ACTUAL RESULTS
```
ok: [localhost] => {
"out_account_facts": {
"ansible_facts": {
"azure_storageaccounts": [
{
"location": "eastus",
"tags": {}
}
]
},
"changed": false
}
}
```
| True | Azure storage account facts module returns no facts at all - ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
`azure_rm_storageaccount_facts`
##### ANSIBLE VERSION
```
ansible 2.1.2.0
config file = /usr/src/playbooks/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
Default
##### OS / ENVIRONMENT
Ubuntu 14.04 LTS
##### SUMMARY
The module returns no useful information and provides no value. I have to fall back to the `azure-cli` `node.js` module in order to retrieve the storage account keys and manually parse the text output.
##### STEPS TO REPRODUCE
Just run this:
```
- name: Get azure facts
azure_rm_storageaccount_facts:
name: "{{ account_name }}"
resource_group: "{{ resource_group }}"
client_id: "{{ client_id }}"
secret: "{{ client_secret }}"
subscription_id: "{{ subscription_id }}"
tenant: "{{ tenant_id }}"
```
##### EXPECTED RESULTS
Account access keys, blob/containers if any, etc. Basically, useful information about the storage account, which I could use. I'd expect the exact same capabilities as the official `azure-cli` by Microsoft, buy I'd settle for simple stuff. The fact that this doesn't return anything useful makes the `azure_rm_storageaccount` useless for automation, since you can create/destroy storage accounts but you can't get their access keys.
##### ACTUAL RESULTS
```
ok: [localhost] => {
"out_account_facts": {
"ansible_facts": {
"azure_storageaccounts": [
{
"location": "eastus",
"tags": {}
}
]
},
"changed": false
}
}
```
| main | azure storage account facts module returns no facts at all issue type bug report component name azure rm storageaccount facts ansible version ansible config file usr src playbooks ansible cfg configured module search path default w o overrides configuration default os environment ubuntu lts summary the module returns no useful information and provides no value i have to fall back to the azure cli node js module in order to retrieve the storage account keys and manually parse the text output steps to reproduce just run this name get azure facts azure rm storageaccount facts name account name resource group resource group client id client id secret client secret subscription id subscription id tenant tenant id expected results account access keys blob containers if any etc basically useful information about the storage account which i could use i d expect the exact same capabilities as the official azure cli by microsoft buy i d settle for simple stuff the fact that this doesn t return anything useful makes the azure rm storageaccount useless for automation since you can create destroy storage accounts but you can t get their access keys actual results ok out account facts ansible facts azure storageaccounts location eastus tags changed false | 1 |
660,703 | 21,995,876,167 | IssuesEvent | 2022-05-26 06:15:08 | valora-inc/wallet | https://api.github.com/repos/valora-inc/wallet | closed | Purchase activity is not loading on homepage however the activity is seen completed when user visits to CELO landing page | bug Priority: P2 wallet qa-report | **Frequency :** 100%
**Repro on build version:** Android Internal Release Build V:1.32.0, iOS Test Flight Release Build V:1.32.0, Android Playstore Build V:1.31.0, iOS Appstore Build V:1.31.0,
**Repro on device :** OnePlus 7t(11.0), Google Pixel 2XL(11.0), iPhone 12(14.7.1) , iPhone 13 mini(15.1.1) , Google Pixel 4a(12.0), Google Pixel XL (10.0), iPhone 12 mini (15.4.1) ,
**Pre-condition:**
1] User must have installed the application
2] User must have completed onboarding process
3] User must have funds in the account
4] User must be on CELO landing page
**Repro Steps:**
1] tap on buy button from CELO landing page
2] enter valid amount in the amount field
3] tap on review button
4] Tap on Buy button
5] user will be redirected to CELO landing page with purchase activity
6] Tap on hamburger menu and go to homepage
7] Observe the activity
8] Now again go back to CELO page and observe activity will be seen completed
9] Navigate back to homepage and observe the purchase activity
**Bug** : Purchase activity is not loading completely on homepage whereas same is seen completed on CELO landing page
**Expected Behavior** : Purchased activity should be seen properly loaded and should be visible on both homepage and CELO landing page
**Observation**:
1] Activity is seen completed on CELO landing page but not seen properly on homepage
2] When we kill the app and relaunch then the activity disappears from both homepage as well as from CELO landing page
**Impact** : User will not be able to see the purchase activity on homepage after coming back to homepage
**Attachment** : [purchase_celo.MP4](https://drive.google.com/file/d/1VLLcYehKD__dZV1tYp66OsxkEol_JT8m/view?usp=sharing) | 1.0 | Purchase activity is not loading on homepage however the activity is seen completed when user visits to CELO landing page - **Frequency :** 100%
**Repro on build version:** Android Internal Release Build V:1.32.0, iOS Test Flight Release Build V:1.32.0, Android Playstore Build V:1.31.0, iOS Appstore Build V:1.31.0,
**Repro on device :** OnePlus 7t(11.0), Google Pixel 2XL(11.0), iPhone 12(14.7.1) , iPhone 13 mini(15.1.1) , Google Pixel 4a(12.0), Google Pixel XL (10.0), iPhone 12 mini (15.4.1) ,
**Pre-condition:**
1] User must have installed the application
2] User must have completed onboarding process
3] User must have funds in the account
4] User must be on CELO landing page
**Repro Steps:**
1] tap on buy button from CELO landing page
2] enter valid amount in the amount field
3] tap on review button
4] Tap on Buy button
5] user will be redirected to CELO landing page with purchase activity
6] Tap on hamburger menu and go to homepage
7] Observe the activity
8] Now again go back to CELO page and observe activity will be seen completed
9] Navigate back to homepage and observe the purchase activity
**Bug** : Purchase activity is not loading completely on homepage whereas same is seen completed on CELO landing page
**Expected Behavior** : Purchased activity should be seen properly loaded and should be visible on both homepage and CELO landing page
**Observation**:
1] Activity is seen completed on CELO landing page but not seen properly on homepage
2] When we kill the app and relaunch then the activity disappears from both homepage as well as from CELO landing page
**Impact** : User will not be able to see the purchase activity on homepage after coming back to homepage
**Attachment** : [purchase_celo.MP4](https://drive.google.com/file/d/1VLLcYehKD__dZV1tYp66OsxkEol_JT8m/view?usp=sharing) | non_main | purchase activity is not loading on homepage however the activity is seen completed when user visits to celo landing page frequency repro on build version android internal release build v ios test flight release build v android playstore build v ios appstore build v repro on device oneplus google pixel iphone iphone mini google pixel google pixel xl iphone mini pre condition user must have installed the application user must have completed onboarding process user must have funds in the account user must be on celo landing page repro steps tap on buy button from celo landing page enter valid amount in the amount field tap on review button tap on buy button user will be redirected to celo landing page with purchase activity tap on hamburger menu and go to homepage observe the activity now again go back to celo page and observe activity will be seen completed navigate back to homepage and observe the purchase activity bug purchase activity is not loading completely on homepage whereas same is seen completed on celo landing page expected behavior purchased activity should be seen properly loaded and should be visible on both homepage and celo landing page observation activity is seen completed on celo landing page but not seen properly on homepage when we kill the app and relaunch then the activity disappears from both homepage as well as from celo landing page impact user will not be able to see the purchase activity on homepage after coming back to homepage attachment | 0 |
44,644 | 23,720,645,245 | IssuesEvent | 2022-08-30 15:05:09 | M3L6H/img-manager | https://api.github.com/repos/M3L6H/img-manager | closed | Fix updating of list | gui performance | It is slow and causes multiple resizes/glitches when the values of the list widget are updated | True | Fix updating of list - It is slow and causes multiple resizes/glitches when the values of the list widget are updated | non_main | fix updating of list it is slow and causes multiple resizes glitches when the values of the list widget are updated | 0 |
4,028 | 18,835,752,567 | IssuesEvent | 2021-11-11 00:32:21 | aws/aws-sam-cli | https://api.github.com/repos/aws/aws-sam-cli | closed | Add a docker volume mount option for sam local invoke | type/feature maintainer/need-response | I wish SAM CLI would have an extra --volume parameter that I could mount an arbitrary directory on my host machine to an arbitrary directory inside my docker container.
Under the hood, sam could forward this parameter to docker run using the -v parameter that docker run already supports.
I ask this, because I would like to get some files out of my docker container after my lambda function executes. | True | Add a docker volume mount option for sam local invoke - I wish SAM CLI would have an extra --volume parameter that I could mount an arbitrary directory on my host machine to an arbitrary directory inside my docker container.
Under the hood, sam could forward this parameter to docker run using the -v parameter that docker run already supports.
I ask this, because I would like to get some files out of my docker container after my lambda function executes. | main | add a docker volume mount option for sam local invoke i wish sam cli would have an extra volume parameter that i could mount an arbitrary directory on my host machine to an arbitrary directory inside my docker container under the hood sam could forward this parameter to docker run using the v parameter that docker run already supports i ask this because i would like to get some files out of my docker container after my lambda function executes | 1 |
4,864 | 25,014,492,384 | IssuesEvent | 2022-11-03 17:37:21 | camunda/zeebe | https://api.github.com/repos/camunda/zeebe | closed | Proof of Concept: Replace Dispatcher | kind/toil area/maintainability | <!--
In case you have questions about our software we encourage everyone to participate in our community via the
- Camunda Platform community forum https://forum.camunda.io/ or
- Slack https://camunda-cloud.slack.com/ (For invite: https://camunda-slack-invite.herokuapp.com/)
There you can exchange ideas with other Zeebe and Camunda Platform 8 users, as well as the product developers, and use the search to find answer to similar questions.
This issue template is used by the Zeebe engineers to create general tasks.
-->
**Description**
After letting the idea sleep for a while https://github.com/camunda/zeebe/issues/3856 :) I thought yesterday again about it whether we could replace the dispatcher.
After #9600 we are closer to being able to replace it (I think). We introduced during the abstraction a new class called [RecordBatch](https://github.com/camunda/zeebe/blob/main/engine/src/main/java/io/camunda/zeebe/engine/api/records/RecordBatch.java) which is filled during processing. Previously we kept only a ByteBuffer but now the batch allows to keep Record objects and write them later to the Dispatcher.
The Dispatcher could potentially be replaced now with a [ManyToOneQueue](https://github.com/real-logic/agrona/blob/master/agrona/src/main/java/org/agrona/concurrent/ManyToOneConcurrentArrayQueue.java) from Agrona.
Benefits:
* It allows to reduce one copy operation. Meaning no longer copying the data to the Dispatcher buffer, just copying object references
* We can get rid of the Dispatcher, which can be seen as tech-depth.
* We could get rid of the maxMessageSize limitations
Alternatively, we might be also able to migrate to the [ManyToOneRingBuffer.java](https://github.com/real-logic/agrona/blob/master/agrona/src/main/java/org/agrona/concurrent/ringbuffer/ManyToOneRingBuffer.java) which is kind of similar.
| True | Proof of Concept: Replace Dispatcher - <!--
In case you have questions about our software we encourage everyone to participate in our community via the
- Camunda Platform community forum https://forum.camunda.io/ or
- Slack https://camunda-cloud.slack.com/ (For invite: https://camunda-slack-invite.herokuapp.com/)
There you can exchange ideas with other Zeebe and Camunda Platform 8 users, as well as the product developers, and use the search to find answer to similar questions.
This issue template is used by the Zeebe engineers to create general tasks.
-->
**Description**
After letting the idea sleep for a while https://github.com/camunda/zeebe/issues/3856 :) I thought yesterday again about it whether we could replace the dispatcher.
After #9600 we are closer to being able to replace it (I think). We introduced during the abstraction a new class called [RecordBatch](https://github.com/camunda/zeebe/blob/main/engine/src/main/java/io/camunda/zeebe/engine/api/records/RecordBatch.java) which is filled during processing. Previously we kept only a ByteBuffer but now the batch allows to keep Record objects and write them later to the Dispatcher.
The Dispatcher could potentially be replaced now with a [ManyToOneQueue](https://github.com/real-logic/agrona/blob/master/agrona/src/main/java/org/agrona/concurrent/ManyToOneConcurrentArrayQueue.java) from Agrona.
Benefits:
* It allows to reduce one copy operation. Meaning no longer copying the data to the Dispatcher buffer, just copying object references
* We can get rid of the Dispatcher, which can be seen as tech-depth.
* We could get rid of the maxMessageSize limitations
Alternatively, we might be also able to migrate to the [ManyToOneRingBuffer.java](https://github.com/real-logic/agrona/blob/master/agrona/src/main/java/org/agrona/concurrent/ringbuffer/ManyToOneRingBuffer.java) which is kind of similar.
| main | proof of concept replace dispatcher in case you have questions about our software we encourage everyone to participate in our community via the camunda platform community forum or slack for invite there you can exchange ideas with other zeebe and camunda platform users as well as the product developers and use the search to find answer to similar questions this issue template is used by the zeebe engineers to create general tasks description after letting the idea sleep for a while i thought yesterday again about it whether we could replace the dispatcher after we are closer to being able to replace it i think we introduced during the abstraction a new class called which is filled during processing previously we kept only a bytebuffer but now the batch allows to keep record objects and write them later to the dispatcher the dispatcher could potentially be replaced now with a from agrona benefits it allows to reduce one copy operation meaning no longer copying the data to the dispatcher buffer just copying object references we can get rid of the dispatcher which can be seen as tech depth we could get rid of the maxmessagesize limitations alternatively we might be also able to migrate to the which is kind of similar | 1 |
2,898 | 10,322,213,851 | IssuesEvent | 2019-08-31 10:03:15 | frej/fast-export | https://api.github.com/repos/frej/fast-export | closed | Getting error: "hg-fast-exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink" | not-available-to-maintainer user-support wintendo | After learning about a major vendor dropping Mercurial support, I came looking for a way to convert my large repository to git. I'm getting the following error using git bash in Win10.
`hg-fast-exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink.`
I'm guessing this is some limitation of Windows. I don't think I have symlinks in my hg repo so I don't entirely understand why I'd need a readlink implementation
I'm using GNU bash, version 4.4.23(1)-release (x86_64-pc-msys) | True | Getting error: "hg-fast-exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink" - After learning about a major vendor dropping Mercurial support, I came looking for a way to convert my large repository to git. I'm getting the following error using git bash in Win10.
`hg-fast-exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink.`
I'm guessing this is some limitation of Windows. I don't think I have symlinks in my hg repo so I don't entirely understand why I'd need a readlink implementation
I'm using GNU bash, version 4.4.23(1)-release (x86_64-pc-msys) | main | getting error hg fast exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink after learning about a major vendor dropping mercurial support i came looking for a way to convert my large repository to git i m getting the following error using git bash in hg fast exports requires a readlink implementation which knows how to canonicalize paths in order to be called via a symlink i m guessing this is some limitation of windows i don t think i have symlinks in my hg repo so i don t entirely understand why i d need a readlink implementation i m using gnu bash version release pc msys | 1 |
12,578 | 3,282,188,439 | IssuesEvent | 2015-10-28 03:52:10 | FredHutch/Oncoscape | https://api.github.com/repos/FredHutch/Oncoscape | opened | Qunit testing Timelines | needs test timelines | - [ ] AlignBy
- [ ] OrderBy
- [ ] Hide legend elements
- [ ] Side plot
- [ ] split survival by status | 1.0 | Qunit testing Timelines - - [ ] AlignBy
- [ ] OrderBy
- [ ] Hide legend elements
- [ ] Side plot
- [ ] split survival by status | non_main | qunit testing timelines alignby orderby hide legend elements side plot split survival by status | 0 |
5,511 | 27,526,636,467 | IssuesEvent | 2023-03-06 18:33:36 | carbon-design-system/carbon | https://api.github.com/repos/carbon-design-system/carbon | reopened | [Question]: What is the correct usage for the following arrow icons? | type: question β status: waiting for maintainer response π¬ | ### Question for Carbon
Hi,
I'm trying to familiarize myself with the awesome icons that are included in Carbon.
Do you offer usage definitions for the following icons?
- Arrows--horizontal
- Arrows--vertical
- Caret--sort
- Chevron--sort
- Choose-item
- Drag--vertical
- Arrow--right
- Arrowβdown
- Arrowβleft
- Arrow--up-left
- Arrow--down-right
Thank you for your help!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md) | True | [Question]: What is the correct usage for the following arrow icons? - ### Question for Carbon
Hi,
I'm trying to familiarize myself with the awesome icons that are included in Carbon.
Do you offer usage definitions for the following icons?
- Arrows--horizontal
- Arrows--vertical
- Caret--sort
- Chevron--sort
- Choose-item
- Drag--vertical
- Arrow--right
- Arrowβdown
- Arrowβleft
- Arrow--up-left
- Arrow--down-right
Thank you for your help!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md) | main | what is the correct usage for the following arrow icons question for carbon hi i m trying to familiarize myself with the awesome icons that are included in carbon do you offer usage definitions for the following icons arrows horizontal arrows vertical caret sort chevron sort choose item drag vertical arrow right arrowβdown arrowβleft arrow up left arrow down right thank you for your help code of conduct i agree to follow this project s | 1 |
309,043 | 9,460,669,501 | IssuesEvent | 2019-04-17 11:37:33 | seekie/simple-proxy-server | https://api.github.com/repos/seekie/simple-proxy-server | closed | Rename repository and change licence | Priority: Medium Status: Completed | - **proxy-server** μμ **simple-proxy-server** λ‘ repository μ΄λ¦ λ³κ²½
- λ³Έ νλ‘κ·Έλ¨μμ μ¬μ©νλ(ν μ μλ) λΌμ΄λΈλ¬λ¦¬λ₯Ό **μνμΉ λΌμ΄μ μ€ 2.0** μΌλ‘ κ°λ°νκΈ° μν΄ **LGPL 3.0** μΌλ‘ λΌμ΄μ μ€ λ³κ²½ | 1.0 | Rename repository and change licence - - **proxy-server** μμ **simple-proxy-server** λ‘ repository μ΄λ¦ λ³κ²½
- λ³Έ νλ‘κ·Έλ¨μμ μ¬μ©νλ(ν μ μλ) λΌμ΄λΈλ¬λ¦¬λ₯Ό **μνμΉ λΌμ΄μ μ€ 2.0** μΌλ‘ κ°λ°νκΈ° μν΄ **LGPL 3.0** μΌλ‘ λΌμ΄μ μ€ λ³κ²½ | non_main | rename repository and change licence proxy server μμ simple proxy server λ‘ repository μ΄λ¦ λ³κ²½ λ³Έ νλ‘κ·Έλ¨μμ μ¬μ©νλ ν μ μλ λΌμ΄λΈλ¬λ¦¬λ₯Ό μνμΉ λΌμ΄μ μ€ μΌλ‘ κ°λ°νκΈ° μν΄ lgpl μΌλ‘ λΌμ΄μ μ€ λ³κ²½ | 0 |
158,677 | 20,028,876,271 | IssuesEvent | 2022-02-02 01:24:55 | L00163287/selenium | https://api.github.com/repos/L00163287/selenium | opened | CVE-2021-41184 (Medium) detected in jquery-ui-1.12.1.min.js | security vulnerability | ## CVE-2021-41184 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-ui-1.12.1.min.js</b></p></summary>
<p>A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js">https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js</a></p>
<p>Path to dependency file: /common/src/web/droppableItems.html</p>
<p>Path to vulnerable library: /common/src/web/js/jquery-ui-1.12.1.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-ui-1.12.1.min.js** (Vulnerable Library)
<p>Found in base branch: <b>trunk</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
jQuery-UI is the official jQuery user interface library. Prior to version 1.13.0, accepting the value of the `of` option of the `.position()` util from untrusted sources may execute untrusted code. The issue is fixed in jQuery UI 1.13.0. Any string value passed to the `of` option is now treated as a CSS selector. A workaround is to not accept the value of the `of` option from untrusted sources.
<p>Publish Date: 2021-10-26
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41184>CVE-2021-41184</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41184">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41184</a></p>
<p>Release Date: 2021-10-26</p>
<p>Fix Resolution: jquery-ui - 1.13.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2021-41184 (Medium) detected in jquery-ui-1.12.1.min.js - ## CVE-2021-41184 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-ui-1.12.1.min.js</b></p></summary>
<p>A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js">https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js</a></p>
<p>Path to dependency file: /common/src/web/droppableItems.html</p>
<p>Path to vulnerable library: /common/src/web/js/jquery-ui-1.12.1.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-ui-1.12.1.min.js** (Vulnerable Library)
<p>Found in base branch: <b>trunk</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
jQuery-UI is the official jQuery user interface library. Prior to version 1.13.0, accepting the value of the `of` option of the `.position()` util from untrusted sources may execute untrusted code. The issue is fixed in jQuery UI 1.13.0. Any string value passed to the `of` option is now treated as a CSS selector. A workaround is to not accept the value of the `of` option from untrusted sources.
<p>Publish Date: 2021-10-26
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41184>CVE-2021-41184</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41184">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41184</a></p>
<p>Release Date: 2021-10-26</p>
<p>Fix Resolution: jquery-ui - 1.13.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_main | cve medium detected in jquery ui min js cve medium severity vulnerability vulnerable library jquery ui min js a curated set of user interface interactions effects widgets and themes built on top of the jquery javascript library library home page a href path to dependency file common src web droppableitems html path to vulnerable library common src web js jquery ui min js dependency hierarchy x jquery ui min js vulnerable library found in base branch trunk vulnerability details jquery ui is the official jquery user interface library prior to version accepting the value of the of option of the position util from untrusted sources may execute untrusted code the issue is fixed in jquery ui any string value passed to the of option is now treated as a css selector a workaround is to not accept the value of the of option from untrusted sources publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery ui step up your open source security game with whitesource | 0 |
899 | 4,559,966,473 | IssuesEvent | 2016-09-14 05:46:43 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | vmware_guest.py - Multiple datacenters folders not implemented | affects_2.2 bug_report cloud in progress vmware waiting_on_maintainer | ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
vmware_guest.py
##### ANSIBLE VERSION
```
ansible 2.2.0
```
##### CONFIGURATION
Default installation
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Multiple datacenters and folders not implemented.
##### STEPS TO REPRODUCE
```
tasks:
- name: Create VM from template
vmware_guest:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_user }}"
password: "{{ vcenter_pass }}"
name: "{{ vm_name }}"
state: present
folder: "Ansible"
disk:
- size_gb: 10
type: thin
datastore: 'my-ds'
nic:
- type: vmxnet3
network: 'dpg-TESTING_NET_TEAM_VLAN20'
network_type: vds
hardware:
memory_mb: 16
num_cpus: 1
datacenter: 'my_ddcc'
esxi_hostname: "my_host"
template: "test2"
wait_for_ip_address: False
register: deploy
```
##### EXPECTED RESULTS
Clone a VM
##### ACTUAL RESULTS
```
TASK [Create VM from template] *************************************************
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: TypeError: exceptions must be old-style classes or derived from BaseException, not str
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 872, in <module>\n main()\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 851, in main\n wait_for_ip=module.params['wait_for_ip_address']\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 463, in deploy_template\n raise \"multi-dc with folders is not yet implemented\"\nTypeError: exceptions must be old-style classes or derived from BaseException, not str\n", "module_stdout": "", "msg": "MODULE FAILURE"}
```
| True | vmware_guest.py - Multiple datacenters folders not implemented - ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
vmware_guest.py
##### ANSIBLE VERSION
```
ansible 2.2.0
```
##### CONFIGURATION
Default installation
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Multiple datacenters and folders not implemented.
##### STEPS TO REPRODUCE
```
tasks:
- name: Create VM from template
vmware_guest:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_user }}"
password: "{{ vcenter_pass }}"
name: "{{ vm_name }}"
state: present
folder: "Ansible"
disk:
- size_gb: 10
type: thin
datastore: 'my-ds'
nic:
- type: vmxnet3
network: 'dpg-TESTING_NET_TEAM_VLAN20'
network_type: vds
hardware:
memory_mb: 16
num_cpus: 1
datacenter: 'my_ddcc'
esxi_hostname: "my_host"
template: "test2"
wait_for_ip_address: False
register: deploy
```
##### EXPECTED RESULTS
Clone a VM
##### ACTUAL RESULTS
```
TASK [Create VM from template] *************************************************
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: TypeError: exceptions must be old-style classes or derived from BaseException, not str
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 872, in <module>\n main()\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 851, in main\n wait_for_ip=module.params['wait_for_ip_address']\n File \"/tmp/ansible_DSdZl5/ansible_module_vmware_guest.py\", line 463, in deploy_template\n raise \"multi-dc with folders is not yet implemented\"\nTypeError: exceptions must be old-style classes or derived from BaseException, not str\n", "module_stdout": "", "msg": "MODULE FAILURE"}
```
| main | vmware guest py multiple datacenters folders not implemented issue type bug report component name vmware guest py ansible version ansible configuration default installation os environment n a summary multiple datacenters and folders not implemented steps to reproduce tasks name create vm from template vmware guest validate certs false hostname vcenter hostname username vcenter user password vcenter pass name vm name state present folder ansible disk size gb type thin datastore my ds nic type network dpg testing net team network type vds hardware memory mb num cpus datacenter my ddcc esxi hostname my host template wait for ip address false register deploy expected results clone a vm actual results task an exception occurred during task execution to see the full traceback use vvv the error was typeerror exceptions must be old style classes or derived from baseexception not str fatal failed changed false failed true module stderr traceback most recent call last n file tmp ansible ansible module vmware guest py line in n main n file tmp ansible ansible module vmware guest py line in main n wait for ip module params n file tmp ansible ansible module vmware guest py line in deploy template n raise multi dc with folders is not yet implemented ntypeerror exceptions must be old style classes or derived from baseexception not str n module stdout msg module failure | 1 |
1,325 | 5,681,941,369 | IssuesEvent | 2017-04-13 08:17:24 | theforeman/foreman_monitoring | https://api.github.com/repos/theforeman/foreman_monitoring | closed | Improve README | maintainance | The README should be improved.
- [x] Description
- [ ] Screenshots
- [x] Install instructions
- [x] Link to smart-proxy-monitoring
| True | Improve README - The README should be improved.
- [x] Description
- [ ] Screenshots
- [x] Install instructions
- [x] Link to smart-proxy-monitoring
| main | improve readme the readme should be improved description screenshots install instructions link to smart proxy monitoring | 1 |
782 | 4,386,361,273 | IssuesEvent | 2016-08-08 12:34:41 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | seport does not reassign port already used in system policy | bug_report waiting_on_maintainer | ##### Issue Type:
- Bug Report
##### Ansible Version:
```
ansible --version
ansible 2.0.0.2
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### Ansible Configuration:
I hope irrelevant
##### Environment:
Fedora 23 on my machine, CentOs 7 it is managed.
##### Summary:
seport module does not reassign port if it already assigned elsewhere. It report OK, but do nothing. Even no error.
##### Steps To Reproduce:
```
- seport: ports=8020 proto=tcp setype=http_port_t state=present
```
```
ok: [unidata.perf.client] => {"changed": false, "ports": ["8020"], "proto": "tcp", "setype": "http_port_t", "state": "present"}
```
##### Expected Results:
SELinux port 8020 assigned to http_port_t type.
##### Actual Results:
It does not happened:
```
# semanage port -l | ag '^http_port_t|8020'
hadoop_namenode_port_t tcp 8020
http_port_t tcp 80, 81, 443, 488, 8008, 8009, 8443, 9000
```
I think next is a reason:
```
# semanage port -a -t http_port_t -p tcp 8020
ValueError: Port tcp/8020 already defined
```
But modify work:
```
# semanage port -m -t http_port_t -p tcp 8020
# semanage port -l | ag '^http_port_t|8020'
hadoop_namenode_port_t tcp 8020
http_port_t tcp 8020, 80, 81, 443, 488, 8008, 8009, 8443, 9000
```
P.S. Initially reported to https://github.com/ansible/ansible/issues/14466 | True | seport does not reassign port already used in system policy - ##### Issue Type:
- Bug Report
##### Ansible Version:
```
ansible --version
ansible 2.0.0.2
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### Ansible Configuration:
I hope irrelevant
##### Environment:
Fedora 23 on my machine, CentOs 7 it is managed.
##### Summary:
seport module does not reassign port if it already assigned elsewhere. It report OK, but do nothing. Even no error.
##### Steps To Reproduce:
```
- seport: ports=8020 proto=tcp setype=http_port_t state=present
```
```
ok: [unidata.perf.client] => {"changed": false, "ports": ["8020"], "proto": "tcp", "setype": "http_port_t", "state": "present"}
```
##### Expected Results:
SELinux port 8020 assigned to http_port_t type.
##### Actual Results:
It does not happened:
```
# semanage port -l | ag '^http_port_t|8020'
hadoop_namenode_port_t tcp 8020
http_port_t tcp 80, 81, 443, 488, 8008, 8009, 8443, 9000
```
I think next is a reason:
```
# semanage port -a -t http_port_t -p tcp 8020
ValueError: Port tcp/8020 already defined
```
But modify work:
```
# semanage port -m -t http_port_t -p tcp 8020
# semanage port -l | ag '^http_port_t|8020'
hadoop_namenode_port_t tcp 8020
http_port_t tcp 8020, 80, 81, 443, 488, 8008, 8009, 8443, 9000
```
P.S. Initially reported to https://github.com/ansible/ansible/issues/14466 | main | seport does not reassign port already used in system policy issue type bug report ansible version ansible version ansible config file etc ansible ansible cfg configured module search path default w o overrides ansible configuration i hope irrelevant environment fedora on my machine centos it is managed summary seport module does not reassign port if it already assigned elsewhere it report ok but do nothing even no error steps to reproduce seport ports proto tcp setype http port t state present ok changed false ports proto tcp setype http port t state present expected results selinux port assigned to http port t type actual results it does not happened semanage port l ag http port t hadoop namenode port t tcp http port t tcp i think next is a reason semanage port a t http port t p tcp valueerror port tcp already defined but modify work semanage port m t http port t p tcp semanage port l ag http port t hadoop namenode port t tcp http port t tcp p s initially reported to | 1 |
70,718 | 3,342,961,690 | IssuesEvent | 2015-11-15 03:01:53 | PyUtilib/pyutilib | https://api.github.com/repos/PyUtilib/pyutilib | opened | Extend pyutilib.subprocess.run to work under jython | high priority | This package does not work with the 'tee' option, which requires the use of Pipes. This issue is blocking the use of PyUtilib with Jython. | 1.0 | Extend pyutilib.subprocess.run to work under jython - This package does not work with the 'tee' option, which requires the use of Pipes. This issue is blocking the use of PyUtilib with Jython. | non_main | extend pyutilib subprocess run to work under jython this package does not work with the tee option which requires the use of pipes this issue is blocking the use of pyutilib with jython | 0 |
283,663 | 30,913,517,760 | IssuesEvent | 2023-08-05 02:07:18 | hshivhare67/kernel_v4.19.72 | https://api.github.com/repos/hshivhare67/kernel_v4.19.72 | reopened | CVE-2023-0386 (High) detected in linuxlinux-4.19.282 | Mend: dependency security vulnerability | ## CVE-2023-0386 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.282</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/hshivhare67/kernel_v4.19.72/commit/139c4e073703974ca0b05255c4cff6dcd52a8e31">139c4e073703974ca0b05255c4cff6dcd52a8e31</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/fs/overlayfs/copy_up.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
A flaw was found in the Linux kernel, where unauthorized access to the execution of the setuid file with capabilities was found in the Linux kernelβs OverlayFS subsystem in how a user copies a capable file from a nosuid mount into another mount. This uid mapping bug allows a local user to escalate their privileges on the system.
<p>Publish Date: 2023-03-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-0386>CVE-2023-0386</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-0386">https://www.linuxkernelcves.com/cves/CVE-2023-0386</a></p>
<p>Release Date: 2023-03-22</p>
<p>Fix Resolution: v5.15.91,v6.1.9</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2023-0386 (High) detected in linuxlinux-4.19.282 - ## CVE-2023-0386 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.282</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/hshivhare67/kernel_v4.19.72/commit/139c4e073703974ca0b05255c4cff6dcd52a8e31">139c4e073703974ca0b05255c4cff6dcd52a8e31</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/fs/overlayfs/copy_up.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
A flaw was found in the Linux kernel, where unauthorized access to the execution of the setuid file with capabilities was found in the Linux kernelβs OverlayFS subsystem in how a user copies a capable file from a nosuid mount into another mount. This uid mapping bug allows a local user to escalate their privileges on the system.
<p>Publish Date: 2023-03-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-0386>CVE-2023-0386</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-0386">https://www.linuxkernelcves.com/cves/CVE-2023-0386</a></p>
<p>Release Date: 2023-03-22</p>
<p>Fix Resolution: v5.15.91,v6.1.9</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_main | cve high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files fs overlayfs copy up c vulnerability details a flaw was found in the linux kernel where unauthorized access to the execution of the setuid file with capabilities was found in the linux kernelβs overlayfs subsystem in how a user copies a capable file from a nosuid mount into another mount this uid mapping bug allows a local user to escalate their privileges on the system publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
4,696 | 24,234,822,747 | IssuesEvent | 2022-09-26 21:51:59 | freedomofpress/securedrop-client | https://api.github.com/repos/freedomofpress/securedrop-client | closed | Our CI pipeline should include jobs for the next Debian release | maintainer quality of life :gear: Tooling :beach_umbrella: Summer cleanup | In order to make future upgrades easier, we've agreed on testing early for compatibility with the upcoming Debian version in our regular CI pipeline.
This can be done by adding `test-bookworm` and `build-bookworm` jobs, based on the `debian:bookworm` image.
See #1544 for additional context. | True | Our CI pipeline should include jobs for the next Debian release - In order to make future upgrades easier, we've agreed on testing early for compatibility with the upcoming Debian version in our regular CI pipeline.
This can be done by adding `test-bookworm` and `build-bookworm` jobs, based on the `debian:bookworm` image.
See #1544 for additional context. | main | our ci pipeline should include jobs for the next debian release in order to make future upgrades easier we ve agreed on testing early for compatibility with the upcoming debian version in our regular ci pipeline this can be done by adding test bookworm and build bookworm jobs based on the debian bookworm image see for additional context | 1 |
427,055 | 12,392,228,400 | IssuesEvent | 2020-05-20 13:43:05 | CONP-PCNO/conp-portal | https://api.github.com/repos/CONP-PCNO/conp-portal | closed | Datasets update broken | PR sent blocking release bug priority-high | There is a new dataset in conp-dataset with a long name. here is the error log of `flask update_datasets`
`
sqlalchemy.exc.DataError: (pymysql.err.DataError) (1406, "Data too long for column 'dataset_id' at row 1")`
| 1.0 | Datasets update broken - There is a new dataset in conp-dataset with a long name. here is the error log of `flask update_datasets`
`
sqlalchemy.exc.DataError: (pymysql.err.DataError) (1406, "Data too long for column 'dataset_id' at row 1")`
| non_main | datasets update broken there is a new dataset in conp dataset with a long name here is the error log of flask update datasets sqlalchemy exc dataerror pymysql err dataerror data too long for column dataset id at row | 0 |
520 | 3,918,002,141 | IssuesEvent | 2016-04-21 10:34:32 | simplesamlphp/simplesamlphp | https://api.github.com/repos/simplesamlphp/simplesamlphp | opened | PSR-3 compliant logger | enhancement low maintainability | We should make our logger [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) compliant, and make all the classes logging something to use this. This is especially useful for unit testing because we could get rid of the static methods, and also for the SAML2 library, which could use our logger or some other instead.
In general, the steps would be:
- [ ] Add a `$context` parameter to all the methods defined by `Psr\Log\LoggerInterface`.
- [ ] Make the `\SimpleSAML\Logger::log()` method public and make it throw a `\Psr\Log\InvalidArgumentException` if the log level is unknown.
- [ ] Extract the log levels definition from `\SimpleSAML\Logger` and use the ones defined by `Psr\Log\LogLevel` instead.
- [ ] Change the formatting that we have today. This means going from `%option` to `{option}`. We also need to think how to handle dates, since those have sub-formats using the `strftime()` date and time formatting rules. We would probably need to split the log format and the format for dates, and handle replacements manually.
- [ ] Make all the classes logging something to implement the `Psr\Log\LoggerAwareInterface` interface. That is, adding a `setLogger()` method, and using the internal logger object to log the messages.
- [ ] Make all the logging methods defined in `Psr\Log\LoggerInterface` non-static (they are static today). This means we need to add a constructor for the Logger. A *Singleton* approach would probably be the way to go, with a static `getInstance()` method to retrieve a logger that can be passed to `setLogger()`. This also cleans the logger initialization we have today, and would allow us to get rid of the logging handlers and have just loggers that extend the basic logging class.
- [ ] Make the `\SimpleSAML\Logger` class extend `Psr\Log\AbstractLogger`.
- [ ] Exceptions should also be logger-aware, and pass themselves to the logger object when logging something in the context. | True | PSR-3 compliant logger - We should make our logger [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) compliant, and make all the classes logging something to use this. This is especially useful for unit testing because we could get rid of the static methods, and also for the SAML2 library, which could use our logger or some other instead.
In general, the steps would be:
- [ ] Add a `$context` parameter to all the methods defined by `Psr\Log\LoggerInterface`.
- [ ] Make the `\SimpleSAML\Logger::log()` method public and make it throw a `\Psr\Log\InvalidArgumentException` if the log level is unknown.
- [ ] Extract the log levels definition from `\SimpleSAML\Logger` and use the ones defined by `Psr\Log\LogLevel` instead.
- [ ] Change the formatting that we have today. This means going from `%option` to `{option}`. We also need to think how to handle dates, since those have sub-formats using the `strftime()` date and time formatting rules. We would probably need to split the log format and the format for dates, and handle replacements manually.
- [ ] Make all the classes logging something to implement the `Psr\Log\LoggerAwareInterface` interface. That is, adding a `setLogger()` method, and using the internal logger object to log the messages.
- [ ] Make all the logging methods defined in `Psr\Log\LoggerInterface` non-static (they are static today). This means we need to add a constructor for the Logger. A *Singleton* approach would probably be the way to go, with a static `getInstance()` method to retrieve a logger that can be passed to `setLogger()`. This also cleans the logger initialization we have today, and would allow us to get rid of the logging handlers and have just loggers that extend the basic logging class.
- [ ] Make the `\SimpleSAML\Logger` class extend `Psr\Log\AbstractLogger`.
- [ ] Exceptions should also be logger-aware, and pass themselves to the logger object when logging something in the context. | main | psr compliant logger we should make our logger compliant and make all the classes logging something to use this this is especially useful for unit testing because we could get rid of the static methods and also for the library which could use our logger or some other instead in general the steps would be add a context parameter to all the methods defined by psr log loggerinterface make the simplesaml logger log method public and make it throw a psr log invalidargumentexception if the log level is unknown extract the log levels definition from simplesaml logger and use the ones defined by psr log loglevel instead change the formatting that we have today this means going from option to option we also need to think how to handle dates since those have sub formats using the strftime date and time formatting rules we would probably need to split the log format and the format for dates and handle replacements manually make all the classes logging something to implement the psr log loggerawareinterface interface that is adding a setlogger method and using the internal logger object to log the messages make all the logging methods defined in psr log loggerinterface non static they are static today this means we need to add a constructor for the logger a singleton approach would probably be the way to go with a static getinstance method to retrieve a logger that can be passed to setlogger this also cleans the logger initialization we have today and would allow us to get rid of the logging handlers and have just loggers that extend the basic logging class make the simplesaml logger class extend psr log abstractlogger exceptions should also be logger aware and pass themselves to the logger object when logging something in the context | 1 |
204,026 | 15,398,037,191 | IssuesEvent | 2021-03-03 23:12:34 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | closed | [CI] MonitoringTribeTests failed due to setting SetOnce twice | :Core/Features/Monitoring :Security/TLS >test-failure Team:Core/Features Team:Security | `MonitoringTribeTests` failed in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.7+multijob-unix-compatibility/os=redhat-8/200/console
The underlying error was:
```
Caused by: org.apache.lucene.util.SetOnce$AlreadySetException: The object cannot be set twice!
at org.apache.lucene.util.SetOnce.set(SetOnce.java:69)
at org.elasticsearch.xpack.core.XPackPlugin.setSslService(XPackPlugin.java:158)
at org.elasticsearch.xpack.core.XPackPlugin.<init>(XPackPlugin.java:144)
... 49 more
```
This did not reproduce locally using:
```
./gradlew :x-pack:qa:tribe-tests-with-license:unitTest \
-Dtests.seed=6A86CE6E79045B0C \
-Dtests.class=org.elasticsearch.xpack.monitoring.MonitoringTribeTests \
-Dtests.security.manager=true \
-Dtests.locale=en-US \
-Dtests.timezone=UTC \
-Dcompiler.java=12 \
-Druntime.java=8
```
Since it's a double setting of a `SetOnce` I also tried to reproduce by running the whole suite:
```
./gradlew :x-pack:qa:tribe-tests-with-license:unitTest \
-Dtests.seed=6A86CE6E79045B0C
```
That didn't reproduce either. | 1.0 | [CI] MonitoringTribeTests failed due to setting SetOnce twice - `MonitoringTribeTests` failed in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.7+multijob-unix-compatibility/os=redhat-8/200/console
The underlying error was:
```
Caused by: org.apache.lucene.util.SetOnce$AlreadySetException: The object cannot be set twice!
at org.apache.lucene.util.SetOnce.set(SetOnce.java:69)
at org.elasticsearch.xpack.core.XPackPlugin.setSslService(XPackPlugin.java:158)
at org.elasticsearch.xpack.core.XPackPlugin.<init>(XPackPlugin.java:144)
... 49 more
```
This did not reproduce locally using:
```
./gradlew :x-pack:qa:tribe-tests-with-license:unitTest \
-Dtests.seed=6A86CE6E79045B0C \
-Dtests.class=org.elasticsearch.xpack.monitoring.MonitoringTribeTests \
-Dtests.security.manager=true \
-Dtests.locale=en-US \
-Dtests.timezone=UTC \
-Dcompiler.java=12 \
-Druntime.java=8
```
Since it's a double setting of a `SetOnce` I also tried to reproduce by running the whole suite:
```
./gradlew :x-pack:qa:tribe-tests-with-license:unitTest \
-Dtests.seed=6A86CE6E79045B0C
```
That didn't reproduce either. | non_main | monitoringtribetests failed due to setting setonce twice monitoringtribetests failed in the underlying error was caused by org apache lucene util setonce alreadysetexception the object cannot be set twice at org apache lucene util setonce set setonce java at org elasticsearch xpack core xpackplugin setsslservice xpackplugin java at org elasticsearch xpack core xpackplugin xpackplugin java more this did not reproduce locally using gradlew x pack qa tribe tests with license unittest dtests seed dtests class org elasticsearch xpack monitoring monitoringtribetests dtests security manager true dtests locale en us dtests timezone utc dcompiler java druntime java since it s a double setting of a setonce i also tried to reproduce by running the whole suite gradlew x pack qa tribe tests with license unittest dtests seed that didn t reproduce either | 0 |
837 | 4,474,090,520 | IssuesEvent | 2016-08-26 08:02:29 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | pause until broken | bug_report waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
pause
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
2.1.1.0
```
##### SUMMARY
<!--- Explain the problem briefly -->
Pause module stopped working with `until`.
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- pause: prompt="[y/n]"
register: test
until: test.user_input in ["y","n"]
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
Working prompt.
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/usr/local/Cellar/ansible/2.1.1.0/libexec/lib/python2.7/site-packages/ansible/executor/task_executor.py", line 124, in run
res = self._execute()
File "/usr/local/Cellar/ansible/2.1.1.0/libexec/lib/python2.7/site-packages/ansible/executor/task_executor.py", line 427, in _execute
retries = self._task.retries + 1
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
fatal: [vagrant]: FAILED! => {"failed": true, "msg": "Unexpected failure during module execution.", "stdout": ""}
```
| True | pause until broken - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
pause
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
2.1.1.0
```
##### SUMMARY
<!--- Explain the problem briefly -->
Pause module stopped working with `until`.
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- pause: prompt="[y/n]"
register: test
until: test.user_input in ["y","n"]
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
Working prompt.
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/usr/local/Cellar/ansible/2.1.1.0/libexec/lib/python2.7/site-packages/ansible/executor/task_executor.py", line 124, in run
res = self._execute()
File "/usr/local/Cellar/ansible/2.1.1.0/libexec/lib/python2.7/site-packages/ansible/executor/task_executor.py", line 427, in _execute
retries = self._task.retries + 1
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
fatal: [vagrant]: FAILED! => {"failed": true, "msg": "Unexpected failure during module execution.", "stdout": ""}
```
| main | pause until broken issue type bug report component name pause ansible version summary pause module stopped working with until steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used pause prompt register test until test user input in expected results working prompt actual results an exception occurred during task execution the full traceback is traceback most recent call last file usr local cellar ansible libexec lib site packages ansible executor task executor py line in run res self execute file usr local cellar ansible libexec lib site packages ansible executor task executor py line in execute retries self task retries typeerror unsupported operand type s for nonetype and int fatal failed failed true msg unexpected failure during module execution stdout | 1 |
2,771 | 9,880,919,785 | IssuesEvent | 2019-06-24 13:41:21 | arcticicestudio/snowsaw | https://api.github.com/repos/arcticicestudio/snowsaw | opened | Mage project build & development toolchain | context-workflow scope-maintainability scope-stability type-feature | > Epic: #33
> Depends on #58
The main project development and build toolchain for snowsaw will be [Mage][], a Make/rake-like build tool using
Go.
The `magefile.go` file will provide all relevant project tasks - from development and production builds, testing amd linting workflows, benchmarking up to code optimizations and asset handling.
Even though Go comes with a complete development/testing/deployment suite out-of-the-boxβ’οΈ, a project build tool ensures all commands always executed in the correct order and all necessary information are provided. Under the hood, the `magefile` file will make use of Go's official toolchain, but ensures consistency and a simple usage through Mage's UI features.
Next to the Mage this ticket will also add [file watcher configurations][jb-docs-fswatch] for [IntelliJ's][] official [βFile Watcherβ plugin][jb-plug-fswatch].
IntelliJ plus the [official Go plugin][jb-plug-go] is the recommended development IDE since it is the most complete and powerful for Go (as well as the most popular IDE for Java), providing a large amount of features. The [official Go plugin][jb-plug-go] makes IntelliJ feature-equal to [Goland][] which is a "stripped down" version of IntelliJ's core engine only bundled with Go features.
[goland]: https://www.jetbrains.com/go
[intellij]: https://www.jetbrains.com/idea
[jb-docs-fswatch]: https://www.jetbrains.com/help/idea/using-file-watchers.html
[jb-plug-fswatch]: https://plugins.jetbrains.com/plugin/7177-file-watchers
[jb-plug-go]: https://plugins.jetbrains.com/plugin/9568-go
[mage]: https://github.com/magefile/mage | True | Mage project build & development toolchain - > Epic: #33
> Depends on #58
The main project development and build toolchain for snowsaw will be [Mage][], a Make/rake-like build tool using
Go.
The `magefile.go` file will provide all relevant project tasks - from development and production builds, testing amd linting workflows, benchmarking up to code optimizations and asset handling.
Even though Go comes with a complete development/testing/deployment suite out-of-the-boxβ’οΈ, a project build tool ensures all commands always executed in the correct order and all necessary information are provided. Under the hood, the `magefile` file will make use of Go's official toolchain, but ensures consistency and a simple usage through Mage's UI features.
Next to the Mage this ticket will also add [file watcher configurations][jb-docs-fswatch] for [IntelliJ's][] official [βFile Watcherβ plugin][jb-plug-fswatch].
IntelliJ plus the [official Go plugin][jb-plug-go] is the recommended development IDE since it is the most complete and powerful for Go (as well as the most popular IDE for Java), providing a large amount of features. The [official Go plugin][jb-plug-go] makes IntelliJ feature-equal to [Goland][] which is a "stripped down" version of IntelliJ's core engine only bundled with Go features.
[goland]: https://www.jetbrains.com/go
[intellij]: https://www.jetbrains.com/idea
[jb-docs-fswatch]: https://www.jetbrains.com/help/idea/using-file-watchers.html
[jb-plug-fswatch]: https://plugins.jetbrains.com/plugin/7177-file-watchers
[jb-plug-go]: https://plugins.jetbrains.com/plugin/9568-go
[mage]: https://github.com/magefile/mage | main | mage project build development toolchain epic depends on the main project development and build toolchain for snowsaw will be a make rake like build tool using go the magefile go file will provide all relevant project tasks from development and production builds testing amd linting workflows benchmarking up to code optimizations and asset handling even though go comes with a complete development testing deployment suite out of the boxβ’οΈ a project build tool ensures all commands always executed in the correct order and all necessary information are provided under the hood the magefile file will make use of go s official toolchain but ensures consistency and a simple usage through mage s ui features next to the mage this ticket will also add for official intellij plus the is the recommended development ide since it is the most complete and powerful for go as well as the most popular ide for java providing a large amount of features the makes intellij feature equal to which is a stripped down version of intellij s core engine only bundled with go features | 1 |
3,300 | 12,708,584,777 | IssuesEvent | 2020-06-23 10:48:32 | short-d/short | https://api.github.com/repos/short-d/short | opened | [Refactor] Update README table of contents and links | maintainability | **What is frustrating you?**
The table of content is not up to date for example section 4.ii Staging doesn't exist as well as Production. Also, links in https://github.com/short-d/short#dependent-projects either are broken or changed, so this needs to updated also.
**Your solution**
Update the table of contents and replace links.
| True | [Refactor] Update README table of contents and links - **What is frustrating you?**
The table of content is not up to date for example section 4.ii Staging doesn't exist as well as Production. Also, links in https://github.com/short-d/short#dependent-projects either are broken or changed, so this needs to updated also.
**Your solution**
Update the table of contents and replace links.
| main | update readme table of contents and links what is frustrating you the table of content is not up to date for example section ii staging doesn t exist as well as production also links in either are broken or changed so this needs to updated also your solution update the table of contents and replace links | 1 |
590 | 4,081,005,769 | IssuesEvent | 2016-05-31 06:58:17 | tgstation/tgstation | https://api.github.com/repos/tgstation/tgstation | closed | MAP MERGER IS FUCKING BROKEN | Bug FUCK Maintainability - Hinders improvements - | ### What is the problem?
IT DOES NOT MERGE IN EITHER DMM OR TGM MODE
### Why is it a problem, or what should have happened?
LOL SORRY CAN'T MERGE YOUR PR AUTOMATICALLY :^))))))))))))))))))))))))))))))))))
### How can the problem be reproduced?
1. try to merge a map
2. watch as the diffs are fucked and unmergable no matter what
3. cry
4. try to release stress on www.pornhub.com
5. cry again
### What revision did the problem happen on? (Helpful, but not required)
the current shit and it wasnt on the server | True | MAP MERGER IS FUCKING BROKEN - ### What is the problem?
IT DOES NOT MERGE IN EITHER DMM OR TGM MODE
### Why is it a problem, or what should have happened?
LOL SORRY CAN'T MERGE YOUR PR AUTOMATICALLY :^))))))))))))))))))))))))))))))))))
### How can the problem be reproduced?
1. try to merge a map
2. watch as the diffs are fucked and unmergable no matter what
3. cry
4. try to release stress on www.pornhub.com
5. cry again
### What revision did the problem happen on? (Helpful, but not required)
the current shit and it wasnt on the server | main | map merger is fucking broken what is the problem it does not merge in either dmm or tgm mode why is it a problem or what should have happened lol sorry can t merge your pr automatically how can the problem be reproduced try to merge a map watch as the diffs are fucked and unmergable no matter what cry try to release stress on cry again what revision did the problem happen on helpful but not required the current shit and it wasnt on the server | 1 |
406,768 | 11,902,684,938 | IssuesEvent | 2020-03-30 14:18:34 | robotframework/robotframework | https://api.github.com/repos/robotframework/robotframework | closed | Enhance test message when results are merged with `rebot --merge` | acknowledge enhancement priority: medium rc 1 | Let's say we have a suite with 3 test cases, on a 1st run last 2 fail, on 2nd run last one fails, on 3rd run all pass.
It is a bit confusing that A.C_1 (failed twice, passed once) test has 4 statuses:
```
Re-executed test has been merged.
New status: PASS
New message:
Old status: FAIL
Old message: Re-executed test has been merged.
New status: FAIL
New message: AssertionError
Old status: FAIL
Old message: AssertionError
```
I use `rebot --merge output_1.xml output_2.xml output_3.xml` to merge 3 outputs.
Refer to logs: [logs.zip](https://github.com/robotframework/robotframework/files/3659270/logs.zip)
| 1.0 | Enhance test message when results are merged with `rebot --merge` - Let's say we have a suite with 3 test cases, on a 1st run last 2 fail, on 2nd run last one fails, on 3rd run all pass.
It is a bit confusing that A.C_1 (failed twice, passed once) test has 4 statuses:
```
Re-executed test has been merged.
New status: PASS
New message:
Old status: FAIL
Old message: Re-executed test has been merged.
New status: FAIL
New message: AssertionError
Old status: FAIL
Old message: AssertionError
```
I use `rebot --merge output_1.xml output_2.xml output_3.xml` to merge 3 outputs.
Refer to logs: [logs.zip](https://github.com/robotframework/robotframework/files/3659270/logs.zip)
| non_main | enhance test message when results are merged with rebot merge let s say we have a suite with test cases on a run last fail on run last one fails on run all pass it is a bit confusing that a c failed twice passed once test has statuses re executed test has been merged new status pass new message old status fail old message re executed test has been merged new status fail new message assertionerror old status fail old message assertionerror i use rebot merge output xml output xml output xml to merge outputs refer to logs | 0 |
31,065 | 13,430,568,527 | IssuesEvent | 2020-09-07 05:07:58 | dart-lang/dart-pad | https://api.github.com/repos/dart-lang/dart-pad | closed | Flutter 1.21.0-9.2.pre breaks Draggable and Physics sample analysis | dart-services p1 | <img width="973" alt="Screen Shot 2020-09-01 at 7 40 53 am" src="https://user-images.githubusercontent.com/30503/91771558-8acfad80-ec26-11ea-8327-ddff167fdb75.png">
| 1.0 | Flutter 1.21.0-9.2.pre breaks Draggable and Physics sample analysis - <img width="973" alt="Screen Shot 2020-09-01 at 7 40 53 am" src="https://user-images.githubusercontent.com/30503/91771558-8acfad80-ec26-11ea-8327-ddff167fdb75.png">
| non_main | flutter pre breaks draggable and physics sample analysis img width alt screen shot at am src | 0 |
1,574 | 6,572,335,918 | IssuesEvent | 2017-09-11 01:29:44 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | known_hosts doesn't support entries with ssh port specified | affects_2.1 bug_report waiting_on_maintainer | ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
known_hosts
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
n/a
##### OS / ENVIRONMENT
- OS where I run ansible from: Mac OS X 10.11.6 El Capitan
- OS being configured: Ubuntu 16.04 LTS 64-bits on a Digital Ocean Droplet
##### SUMMARY
When the known_hosts file has entries is in the format below,
known_hosts module is unable to remove these entries and it doesn't know how
to write that in that format either.
**[ public-ip]:port ecdsa-sha2-nistp256 key**
It is a problem because I don't want to use default port and I use ssh-keyscan
to discover the host's public key and I need the playbook to be idempotent.
ssh-keyscan can take a -p to specify the port but when doing so,
it creates entries in the format mentioned above.
To keep known_hosts (and my playbook) idempotent, I need to use -p
whether the Sshd is using default port or custom port (first run or subsquent runs respctively)
When I use ssh-keyscan with -p and known_hosts,
it works the first time (changing port from default 22 to custom port)
because ssh-keyscan use the classic form: **public-ip type key**
when it detects that it's called with -p 22.
##### STEPS TO REPRODUCE
Starting point: SSHd port has successfully been changed from port 22
to custom port (and the steps below worked that first time).
Then I run the steps again.
```
- name: first remove the host from our known hosts list as we might have re-spun the hosts
local_action: known_hosts name={{ansible_host}} state=absent
tags:
- sshd.known_hosts.key.remove
- name: retrieve public host key for the host
local_action: command ssh-keyscan -p {{ansible_port}} -t ecdsa -H {{ansible_host}}
register: new_host_key
tags:
- sshd.known_hosts.key.retrieve
- name: add the new host key for the host to our known hosts list
local_action: known_hosts name={{ansible_host}} key={{new_host_key.stdout}} state=present
tags:
- sshd.known_hosts.key.add
```
(note: the problem is the same whether the public ip is hashed with -H or not)
##### EXPECTED RESULTS
known_hosts entry after first step:
|1|Wo/iD2OG3FQxTJRT0qggIQTx8C0=|fr6pjJDB19AczvlACt6M5HQk1CU= ecdsa-sha2-nistp256 ...
is removed from my known_hosts file
then following entry is appended at the end of the file after the third step:
[|1|YNgaK1Kk3z/J79OgnEcapwmHpXE=|/IWqIMeFwmIKmta/PAH846rpcQ0=]:6547 ecdsa-sha2-nistp256 ...
##### ACTUAL RESULTS
the entry:
|1|Wo/iD2OG3FQxTJRT0qggIQTx8C0=|fr6pjJDB19AczvlACt6M5HQk1CU= ecdsa-sha2-nistp256 ...
is removed from my known_hosts file
but the new entry with port specified is not added to the known_hosts file:
```
fatal: [mydroplet -> localhost]:
FAILED! => {"changed": false,
"cmd": "/usr/bin/ssh-keygen -F public-ip-here -f /var/folders/t9/5tvwz9yn69xfgtqdzq9lbgvr0000gn/T/tmpLOzsBv",
"failed": true,
"invocation": {"module_args": {"key": "[|1|hEXzfBLAh2UefDLbleLkow7HfjI=|wHcBCyoUF8aTkkNIqTqnh5Y6GNw=]:6547 ecdsa-sha2-nistp256 ...",
"name": "public-ip-here",
"path": "path/to/my/known_hosts",
"state": "present"}, "module_name": "known_hosts"},
"msg": "", "rc": 1, "stderr": "", "stdout": "", "stdout_lines": []}
```
I then manually added the entry with the port specified in the known_hosts file,
and after running the steps again, the entry is not removed after the first step:
```
ok:
[mydroplet -> localhost] => {"changed": false, "gid": 20, "group": "staff",
"invocation": {"module_args": {"key": null, "name": "public-ip-here",
"path": "path/to/my/known_hosts", "state": "absent"},
"module_name": "known_hosts"},
"key": null, "mode": "0600", "name": "public-ip-here",
"owner": "xxxx", "path": "path/to/my/known_hosts",
"size": 32259, "state": "file", "uid": 501}
```
| True | known_hosts doesn't support entries with ssh port specified - ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
known_hosts
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
n/a
##### OS / ENVIRONMENT
- OS where I run ansible from: Mac OS X 10.11.6 El Capitan
- OS being configured: Ubuntu 16.04 LTS 64-bits on a Digital Ocean Droplet
##### SUMMARY
When the known_hosts file has entries is in the format below,
known_hosts module is unable to remove these entries and it doesn't know how
to write that in that format either.
**[ public-ip]:port ecdsa-sha2-nistp256 key**
It is a problem because I don't want to use default port and I use ssh-keyscan
to discover the host's public key and I need the playbook to be idempotent.
ssh-keyscan can take a -p to specify the port but when doing so,
it creates entries in the format mentioned above.
To keep known_hosts (and my playbook) idempotent, I need to use -p
whether the Sshd is using default port or custom port (first run or subsquent runs respctively)
When I use ssh-keyscan with -p and known_hosts,
it works the first time (changing port from default 22 to custom port)
because ssh-keyscan use the classic form: **public-ip type key**
when it detects that it's called with -p 22.
##### STEPS TO REPRODUCE
Starting point: SSHd port has successfully been changed from port 22
to custom port (and the steps below worked that first time).
Then I run the steps again.
```
- name: first remove the host from our known hosts list as we might have re-spun the hosts
local_action: known_hosts name={{ansible_host}} state=absent
tags:
- sshd.known_hosts.key.remove
- name: retrieve public host key for the host
local_action: command ssh-keyscan -p {{ansible_port}} -t ecdsa -H {{ansible_host}}
register: new_host_key
tags:
- sshd.known_hosts.key.retrieve
- name: add the new host key for the host to our known hosts list
local_action: known_hosts name={{ansible_host}} key={{new_host_key.stdout}} state=present
tags:
- sshd.known_hosts.key.add
```
(note: the problem is the same whether the public ip is hashed with -H or not)
##### EXPECTED RESULTS
known_hosts entry after first step:
|1|Wo/iD2OG3FQxTJRT0qggIQTx8C0=|fr6pjJDB19AczvlACt6M5HQk1CU= ecdsa-sha2-nistp256 ...
is removed from my known_hosts file
then following entry is appended at the end of the file after the third step:
[|1|YNgaK1Kk3z/J79OgnEcapwmHpXE=|/IWqIMeFwmIKmta/PAH846rpcQ0=]:6547 ecdsa-sha2-nistp256 ...
##### ACTUAL RESULTS
the entry:
|1|Wo/iD2OG3FQxTJRT0qggIQTx8C0=|fr6pjJDB19AczvlACt6M5HQk1CU= ecdsa-sha2-nistp256 ...
is removed from my known_hosts file
but the new entry with port specified is not added to the known_hosts file:
```
fatal: [mydroplet -> localhost]:
FAILED! => {"changed": false,
"cmd": "/usr/bin/ssh-keygen -F public-ip-here -f /var/folders/t9/5tvwz9yn69xfgtqdzq9lbgvr0000gn/T/tmpLOzsBv",
"failed": true,
"invocation": {"module_args": {"key": "[|1|hEXzfBLAh2UefDLbleLkow7HfjI=|wHcBCyoUF8aTkkNIqTqnh5Y6GNw=]:6547 ecdsa-sha2-nistp256 ...",
"name": "public-ip-here",
"path": "path/to/my/known_hosts",
"state": "present"}, "module_name": "known_hosts"},
"msg": "", "rc": 1, "stderr": "", "stdout": "", "stdout_lines": []}
```
I then manually added the entry with the port specified in the known_hosts file,
and after running the steps again, the entry is not removed after the first step:
```
ok:
[mydroplet -> localhost] => {"changed": false, "gid": 20, "group": "staff",
"invocation": {"module_args": {"key": null, "name": "public-ip-here",
"path": "path/to/my/known_hosts", "state": "absent"},
"module_name": "known_hosts"},
"key": null, "mode": "0600", "name": "public-ip-here",
"owner": "xxxx", "path": "path/to/my/known_hosts",
"size": 32259, "state": "file", "uid": 501}
```
| main | known hosts doesn t support entries with ssh port specified issue type bug report component name known hosts ansible version ansible config file etc ansible ansible cfg configured module search path default w o overrides configuration n a os environment os where i run ansible from mac os x el capitan os being configured ubuntu lts bits on a digital ocean droplet summary when the known hosts file has entries is in the format below known hosts module is unable to remove these entries and it doesn t know how to write that in that format either port ecdsa key it is a problem because i don t want to use default port and i use ssh keyscan to discover the host s public key and i need the playbook to be idempotent ssh keyscan can take a p to specify the port but when doing so it creates entries in the format mentioned above to keep known hosts and my playbook idempotent i need to use p whether the sshd is using default port or custom port first run or subsquent runs respctively when i use ssh keyscan with p and known hosts it works the first time changing port from default to custom port because ssh keyscan use the classic form public ip type key when it detects that it s called with p steps to reproduce starting point sshd port has successfully been changed from port to custom port and the steps below worked that first time then i run the steps again name first remove the host from our known hosts list as we might have re spun the hosts local action known hosts name ansible host state absent tags sshd known hosts key remove name retrieve public host key for the host local action command ssh keyscan p ansible port t ecdsa h ansible host register new host key tags sshd known hosts key retrieve name add the new host key for the host to our known hosts list local action known hosts name ansible host key new host key stdout state present tags sshd known hosts key add note the problem is the same whether the public ip is hashed with h or not expected results known hosts entry after first step wo ecdsa is removed from my known hosts file then following entry is appended at the end of the file after the third step ecdsa actual results the entry wo ecdsa is removed from my known hosts file but the new entry with port specified is not added to the known hosts file fatal failed changed false cmd usr bin ssh keygen f public ip here f var folders t tmplozsbv failed true invocation module args key ecdsa name public ip here path path to my known hosts state present module name known hosts msg rc stderr stdout stdout lines i then manually added the entry with the port specified in the known hosts file and after running the steps again the entry is not removed after the first step ok changed false gid group staff invocation module args key null name public ip here path path to my known hosts state absent module name known hosts key null mode name public ip here owner xxxx path path to my known hosts size state file uid | 1 |
158,499 | 20,026,617,599 | IssuesEvent | 2022-02-01 22:07:12 | endojs/endo | https://api.github.com/repos/endojs/endo | reopened | OOM must fail fast (through unsafe eval switch) | security | If an attacker can arrange for a stack of a particular depth before calling an evaluator, on a platform with some specific combination of preferential inlining of functions, there is a chance, in the face of maintenance, that a program could cause an evaluator to leak unsafeEval. The implementation as written today, makes a single function call in a finally block to retract the unsafeEval that is temporarily granted to evaluate client code. To eliminate this risk, that finally block should make no function calls and merely reset the underlying flag.
https://github.com/endojs/endo/blob/9a9953bbf80fd4c35d857c999cfe2972f6891912/packages/ses/src/make-safe-evaluator.js#L91
To achieve this, we must integrate the compartment scope handler maker and the evaluator into a shared scope.
And we should leave a comment to the effect that the code in the finally block must never call functions in the future. | True | OOM must fail fast (through unsafe eval switch) - If an attacker can arrange for a stack of a particular depth before calling an evaluator, on a platform with some specific combination of preferential inlining of functions, there is a chance, in the face of maintenance, that a program could cause an evaluator to leak unsafeEval. The implementation as written today, makes a single function call in a finally block to retract the unsafeEval that is temporarily granted to evaluate client code. To eliminate this risk, that finally block should make no function calls and merely reset the underlying flag.
https://github.com/endojs/endo/blob/9a9953bbf80fd4c35d857c999cfe2972f6891912/packages/ses/src/make-safe-evaluator.js#L91
To achieve this, we must integrate the compartment scope handler maker and the evaluator into a shared scope.
And we should leave a comment to the effect that the code in the finally block must never call functions in the future. | non_main | oom must fail fast through unsafe eval switch if an attacker can arrange for a stack of a particular depth before calling an evaluator on a platform with some specific combination of preferential inlining of functions there is a chance in the face of maintenance that a program could cause an evaluator to leak unsafeeval the implementation as written today makes a single function call in a finally block to retract the unsafeeval that is temporarily granted to evaluate client code to eliminate this risk that finally block should make no function calls and merely reset the underlying flag to achieve this we must integrate the compartment scope handler maker and the evaluator into a shared scope and we should leave a comment to the effect that the code in the finally block must never call functions in the future | 0 |
35,708 | 7,799,889,173 | IssuesEvent | 2018-06-09 01:42:55 | StrikeNP/trac_test | https://api.github.com/repos/StrikeNP/trac_test | closed | Make naming of covariance variables consistent (Trac #416) | Migrated from Trac clubb_src connork@uwm.edu defect | In places, the code refers to a covariance as "cov"; in other places, as "covar" or "covariance". We should make the nomenclature consistent throughout the code.
All instances, except comments, should be named "covar".
Tests:
1. Does it compile?
2. Can we run all cases?
3. Are the results bin-diff identical?
Attachments:
Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/416
```json
{
"status": "closed",
"changetime": "2011-07-29T15:43:54",
"description": "In places, the code refers to a covariance as \"cov\"; in other places, as \"covar\" or \"covariance\". We should make the nomenclature consistent throughout the code.\n\nAll instances, except comments, should be named \"covar\".\n\nTests:\n\n1. Does it compile?\n2. Can we run all cases?\n3. Are the results bin-diff identical?",
"reporter": "connork@uwm.edu",
"cc": "vlarson@uwm.edu, bmg2@uwm.edu",
"resolution": "fixed",
"_ts": "1311954234000000",
"component": "clubb_src",
"summary": "Make naming of covariance variables consistent",
"priority": "critical",
"keywords": "covariance, cov, covar",
"time": "2011-06-07T21:34:26",
"milestone": "3. Refactor CLUBB",
"owner": "connork@uwm.edu",
"type": "defect"
}
```
| 1.0 | Make naming of covariance variables consistent (Trac #416) - In places, the code refers to a covariance as "cov"; in other places, as "covar" or "covariance". We should make the nomenclature consistent throughout the code.
All instances, except comments, should be named "covar".
Tests:
1. Does it compile?
2. Can we run all cases?
3. Are the results bin-diff identical?
Attachments:
Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/416
```json
{
"status": "closed",
"changetime": "2011-07-29T15:43:54",
"description": "In places, the code refers to a covariance as \"cov\"; in other places, as \"covar\" or \"covariance\". We should make the nomenclature consistent throughout the code.\n\nAll instances, except comments, should be named \"covar\".\n\nTests:\n\n1. Does it compile?\n2. Can we run all cases?\n3. Are the results bin-diff identical?",
"reporter": "connork@uwm.edu",
"cc": "vlarson@uwm.edu, bmg2@uwm.edu",
"resolution": "fixed",
"_ts": "1311954234000000",
"component": "clubb_src",
"summary": "Make naming of covariance variables consistent",
"priority": "critical",
"keywords": "covariance, cov, covar",
"time": "2011-06-07T21:34:26",
"milestone": "3. Refactor CLUBB",
"owner": "connork@uwm.edu",
"type": "defect"
}
```
| non_main | make naming of covariance variables consistent trac in places the code refers to a covariance as cov in other places as covar or covariance we should make the nomenclature consistent throughout the code all instances except comments should be named covar tests does it compile can we run all cases are the results bin diff identical attachments migrated from json status closed changetime description in places the code refers to a covariance as cov in other places as covar or covariance we should make the nomenclature consistent throughout the code n nall instances except comments should be named covar n ntests n does it compile can we run all cases are the results bin diff identical reporter connork uwm edu cc vlarson uwm edu uwm edu resolution fixed ts component clubb src summary make naming of covariance variables consistent priority critical keywords covariance cov covar time milestone refactor clubb owner connork uwm edu type defect | 0 |
2,275 | 8,067,316,645 | IssuesEvent | 2018-08-05 05:27:04 | diofant/diofant | https://api.github.com/repos/diofant/diofant | closed | Implement pylint checker for self/cls assignments | maintainability | See PyCQA/pylint#977. And be sure it's enabled in our flake8 tests.
| True | Implement pylint checker for self/cls assignments - See PyCQA/pylint#977. And be sure it's enabled in our flake8 tests.
| main | implement pylint checker for self cls assignments see pycqa pylint and be sure it s enabled in our tests | 1 |
5,246 | 26,566,330,272 | IssuesEvent | 2023-01-20 20:37:36 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | closed | Layout overflow on pages which are fixed to the view port | type: enhancement work: frontend status: ready restricted: maintainers | Here's a particularly egregious example of the actions pane responding poorly to a narrow viewport.
https://user-images.githubusercontent.com/42411/208987404-3247ddfb-5d08-43a6-90cf-180168b31964.mp4
What's strange here is that when I remove the table description, the actions pane allows itself to get taller before it overflows.

Also, something should be done about this problem at a higher level so that individual panes don't push the entire layout to overflow the viewport. Even if the actions pane is responding poorly, it shouldn't take the whole page with it.
## Related
- #2022
| True | Layout overflow on pages which are fixed to the view port - Here's a particularly egregious example of the actions pane responding poorly to a narrow viewport.
https://user-images.githubusercontent.com/42411/208987404-3247ddfb-5d08-43a6-90cf-180168b31964.mp4
What's strange here is that when I remove the table description, the actions pane allows itself to get taller before it overflows.

Also, something should be done about this problem at a higher level so that individual panes don't push the entire layout to overflow the viewport. Even if the actions pane is responding poorly, it shouldn't take the whole page with it.
## Related
- #2022
| main | layout overflow on pages which are fixed to the view port here s a particularly egregious example of the actions pane responding poorly to a narrow viewport what s strange here is that when i remove the table description the actions pane allows itself to get taller before it overflows also something should be done about this problem at a higher level so that individual panes don t push the entire layout to overflow the viewport even if the actions pane is responding poorly it shouldn t take the whole page with it related | 1 |
293,962 | 9,011,570,593 | IssuesEvent | 2019-02-05 15:00:05 | adsabs/bumblebee | https://api.github.com/repos/adsabs/bumblebee | closed | Library pagination step cannot be changed | priority | ### Expected Behavior
When visualizing a library, the pagination step is 25 by default but the user should be able to change it to higher values.
### Actual Behavior
The pagination step is 25, no matter what number is chosen from the dropdown list.
### Steps to Reproduce
- Go to a library
- Change the pagination step from the default 25 to some other option | 1.0 | Library pagination step cannot be changed - ### Expected Behavior
When visualizing a library, the pagination step is 25 by default but the user should be able to change it to higher values.
### Actual Behavior
The pagination step is 25, no matter what number is chosen from the dropdown list.
### Steps to Reproduce
- Go to a library
- Change the pagination step from the default 25 to some other option | non_main | library pagination step cannot be changed expected behavior when visualizing a library the pagination step is by default but the user should be able to change it to higher values actual behavior the pagination step is no matter what number is chosen from the dropdown list steps to reproduce go to a library change the pagination step from the default to some other option | 0 |
1,117 | 4,989,181,366 | IssuesEvent | 2016-12-08 10:55:40 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | Yum module fails when installing via URL if a yum http_proxy is required | affects_2.1 bug_report waiting_on_maintainer | ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
yum
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.1.2.0 (v2.1.2.0-1 29f2f26278) last updated 2016/11/28 11:09:19 (GMT +100)
lib/ansible/modules/core: (detached HEAD 17ee1cfaf9) last updated 2016/11/28 11:58:46 (GMT +100)
lib/ansible/modules/extras: (detached HEAD d312f34d9b) last updated 2016/11/28 11:58:47 (GMT +100)
config file = /home/ansible/opencast-ansible/ansible.cfg
configured module search path = ['/home/ansible/src/ansible/lib/ansible/modules/core', '/home/ansible/src/ansible/lib/anisble/modules/extra']
```
##### OS / ENVIRONMENT
Red Hat 6
##### SUMMARY
The Yum module fails when trying make sure an RPM is installed via a URL if it must do so via a http proxy.
I found that line 246 in the yum module it tries to fetch the url directly possibly circumventing the proxy settings:
https://github.com/ansible/ansible-modules-core/blob/c67315fc4e0c3bc5cb519ef2651cccf4bc659780/packaging/os/yum.py#L246
Note: the proxy settings are also set in /etc/profile.d/proxy.sh but I guess these are not picked up when when the remote module code is executed.
##### STEPS TO REPRODUCE
myserver must use a http_proxy which has been correctly set in /etc/yum.conf
I'm using a playbook but the single command also fails:
```
ansible myserver -i inventory/ -s -m yum -a "state=present name=http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
```
Note: it doesn't matter if the rpm is already cached in /var/tmp/yum-### or already installed or not.
Note: running the yum command below on myserver works as expected.
```
sudo yum install http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
````
##### EXPECTED RESULTS
SUCCESS or Changed
##### ACTUAL RESULTS
Fails to confirm that it is installed
```
fatal: [myserver]: FAILED! => {"changed": false, "failed": true, "msg": "Failure downloading http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm, 'NoneType' object has no attribute 'read'"}
```
| True | Yum module fails when installing via URL if a yum http_proxy is required - ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
yum
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.1.2.0 (v2.1.2.0-1 29f2f26278) last updated 2016/11/28 11:09:19 (GMT +100)
lib/ansible/modules/core: (detached HEAD 17ee1cfaf9) last updated 2016/11/28 11:58:46 (GMT +100)
lib/ansible/modules/extras: (detached HEAD d312f34d9b) last updated 2016/11/28 11:58:47 (GMT +100)
config file = /home/ansible/opencast-ansible/ansible.cfg
configured module search path = ['/home/ansible/src/ansible/lib/ansible/modules/core', '/home/ansible/src/ansible/lib/anisble/modules/extra']
```
##### OS / ENVIRONMENT
Red Hat 6
##### SUMMARY
The Yum module fails when trying make sure an RPM is installed via a URL if it must do so via a http proxy.
I found that line 246 in the yum module it tries to fetch the url directly possibly circumventing the proxy settings:
https://github.com/ansible/ansible-modules-core/blob/c67315fc4e0c3bc5cb519ef2651cccf4bc659780/packaging/os/yum.py#L246
Note: the proxy settings are also set in /etc/profile.d/proxy.sh but I guess these are not picked up when when the remote module code is executed.
##### STEPS TO REPRODUCE
myserver must use a http_proxy which has been correctly set in /etc/yum.conf
I'm using a playbook but the single command also fails:
```
ansible myserver -i inventory/ -s -m yum -a "state=present name=http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
```
Note: it doesn't matter if the rpm is already cached in /var/tmp/yum-### or already installed or not.
Note: running the yum command below on myserver works as expected.
```
sudo yum install http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
````
##### EXPECTED RESULTS
SUCCESS or Changed
##### ACTUAL RESULTS
Fails to confirm that it is installed
```
fatal: [myserver]: FAILED! => {"changed": false, "failed": true, "msg": "Failure downloading http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm, 'NoneType' object has no attribute 'read'"}
```
| main | yum module fails when installing via url if a yum http proxy is required issue type bug report component name yum ansible version ansible last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt config file home ansible opencast ansible ansible cfg configured module search path os environment red hat summary the yum module fails when trying make sure an rpm is installed via a url if it must do so via a http proxy i found that line in the yum module it tries to fetch the url directly possibly circumventing the proxy settings note the proxy settings are also set in etc profile d proxy sh but i guess these are not picked up when when the remote module code is executed steps to reproduce myserver must use a http proxy which has been correctly set in etc yum conf i m using a playbook but the single command also fails ansible myserver i inventory s m yum a state present name note it doesn t matter if the rpm is already cached in var tmp yum or already installed or not note running the yum command below on myserver works as expected sudo yum install expected results success or changed actual results fails to confirm that it is installed fatal failed changed false failed true msg failure downloading nonetype object has no attribute read | 1 |
941 | 4,662,885,819 | IssuesEvent | 2016-10-05 06:56:20 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | docker_service not creating docker image | affects_2.3 bug_report cloud docker in progress waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_service
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.3.0 (devel d09f57fb3a) last updated 2016/10/04 08:46:08 (GMT +000)
lib/ansible/modules/core: (devel 0ee774ff15) last updated 2016/10/04 09:19:29 (GMT +000)
lib/ansible/modules/extras: (devel 5cc72c3f06) last updated 2016/10/04 09:20:09 (GMT +000)
config file = /etc/ansible/roles/myrole/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say βN/Aβ for anything that is not platform-specific.
-->
Ubuntu 14.04
##### SUMMARY
<!--- Explain the problem briefly -->
docker_service module doesn't create a docker image from the docker-compose file, it gives an error and crashes. The error was: compose.service.NoSuchImageError: Image 'myproject_web' not found.
However, if a docker image is present, it will proceed without error.
On the other hand, what is expected from docker-compose (and also docker_service) is it will create an image if one isn't there. Especially if the --build flag is present. During testing, "docker-compose up" does this successfully, whether an image exists or not.
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- name: start with docker-compose
docker_service:
project_src: "{{ deploy_dir }}"
build: yes
state: present
```
check the current docker images:
```
docker images
```
make a backup copy of the relevant image, if desired, and then delete the image.
```
docker tag image_name image_name.bck
docker rmi image_name
```
then run ansible-playbook.
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
TASK [djangoapp_docker : start with docker-compose] ****************************
changed: [appserver]
PLAY RECAP *********************************************************************
appserver : ok=4 changed=1 unreachable=0 failed=0
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
TASK [djangoapp_docker : start with docker-compose] ****************************
task path: /etc/ansible/roles/myrole/roles/djangoapp_docker/tasks/main.yml:9
Using module file /opt/github/ansible/lib/ansible/modules/core/cloud/docker/docker_service.py
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: root
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `" && echo ansible-tmp-1475573103.01-30232119310425="` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `" ) && sleep 0'
<localhost> PUT /tmp/tmpai39S1 TO /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py
<localhost> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/ /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py && sleep 0'
<localhost> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py; rm -rf "/root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/" > /dev/null 2>&1 && sleep 0'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 929, in <module>
main()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 924, in main
result = ContainerManager(client).exec_module()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 575, in exec_module
result = self.cmd_up()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 630, in cmd_up
result.update(self.cmd_build())
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 773, in cmd_build
image = service.image()
File "/usr/local/lib/python2.7/dist-packages/compose/service.py", line 316, in image
raise NoSuchImageError("Image '{}' not found".format(self.image_name))
compose.service.NoSuchImageError: Image 'myproject_web' not found
fatal: [appserver]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_name": "docker_service"
},
"module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 929, in <module>\n main()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 924, in main\n result = ContainerManager(client).exec_module()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 575, in exec_module\n result = self.cmd_up()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 630, in cmd_up\n result.update(self.cmd_build())\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 773, in cmd_build\n image = service.image()\n File \"/usr/local/lib/python2.7/dist-packages/compose/service.py\", line 316, in image\n raise NoSuchImageError(\"Image '{}' not found\".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'myrole_web' not found\n",
"module_stdout": "",
"msg": "MODULE FAILURE"
}
to retry, use: --limit @/etc/ansible/roles/myrole/deploy_docker.retry
```
| True | docker_service not creating docker image - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_service
##### ANSIBLE VERSION
<!--- Paste verbatim output from βansible --versionβ between quotes below -->
```
ansible 2.3.0 (devel d09f57fb3a) last updated 2016/10/04 08:46:08 (GMT +000)
lib/ansible/modules/core: (devel 0ee774ff15) last updated 2016/10/04 09:19:29 (GMT +000)
lib/ansible/modules/extras: (devel 5cc72c3f06) last updated 2016/10/04 09:20:09 (GMT +000)
config file = /etc/ansible/roles/myrole/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say βN/Aβ for anything that is not platform-specific.
-->
Ubuntu 14.04
##### SUMMARY
<!--- Explain the problem briefly -->
docker_service module doesn't create a docker image from the docker-compose file, it gives an error and crashes. The error was: compose.service.NoSuchImageError: Image 'myproject_web' not found.
However, if a docker image is present, it will proceed without error.
On the other hand, what is expected from docker-compose (and also docker_service) is it will create an image if one isn't there. Especially if the --build flag is present. During testing, "docker-compose up" does this successfully, whether an image exists or not.
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- name: start with docker-compose
docker_service:
project_src: "{{ deploy_dir }}"
build: yes
state: present
```
check the current docker images:
```
docker images
```
make a backup copy of the relevant image, if desired, and then delete the image.
```
docker tag image_name image_name.bck
docker rmi image_name
```
then run ansible-playbook.
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
TASK [djangoapp_docker : start with docker-compose] ****************************
changed: [appserver]
PLAY RECAP *********************************************************************
appserver : ok=4 changed=1 unreachable=0 failed=0
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
TASK [djangoapp_docker : start with docker-compose] ****************************
task path: /etc/ansible/roles/myrole/roles/djangoapp_docker/tasks/main.yml:9
Using module file /opt/github/ansible/lib/ansible/modules/core/cloud/docker/docker_service.py
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: root
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `" && echo ansible-tmp-1475573103.01-30232119310425="` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `" ) && sleep 0'
<localhost> PUT /tmp/tmpai39S1 TO /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py
<localhost> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/ /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py && sleep 0'
<localhost> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py; rm -rf "/root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/" > /dev/null 2>&1 && sleep 0'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 929, in <module>
main()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 924, in main
result = ContainerManager(client).exec_module()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 575, in exec_module
result = self.cmd_up()
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 630, in cmd_up
result.update(self.cmd_build())
File "/tmp/ansible_zG7JHD/ansible_module_docker_service.py", line 773, in cmd_build
image = service.image()
File "/usr/local/lib/python2.7/dist-packages/compose/service.py", line 316, in image
raise NoSuchImageError("Image '{}' not found".format(self.image_name))
compose.service.NoSuchImageError: Image 'myproject_web' not found
fatal: [appserver]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_name": "docker_service"
},
"module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 929, in <module>\n main()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 924, in main\n result = ContainerManager(client).exec_module()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 575, in exec_module\n result = self.cmd_up()\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 630, in cmd_up\n result.update(self.cmd_build())\n File \"/tmp/ansible_zG7JHD/ansible_module_docker_service.py\", line 773, in cmd_build\n image = service.image()\n File \"/usr/local/lib/python2.7/dist-packages/compose/service.py\", line 316, in image\n raise NoSuchImageError(\"Image '{}' not found\".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'myrole_web' not found\n",
"module_stdout": "",
"msg": "MODULE FAILURE"
}
to retry, use: --limit @/etc/ansible/roles/myrole/deploy_docker.retry
```
| main | docker service not creating docker image issue type bug report component name docker service ansible version ansible devel last updated gmt lib ansible modules core devel last updated gmt lib ansible modules extras devel last updated gmt config file etc ansible roles myrole ansible cfg configured module search path default w o overrides configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables os environment mention the os you are running ansible from and the os you are managing or say βn aβ for anything that is not platform specific ubuntu summary docker service module doesn t create a docker image from the docker compose file it gives an error and crashes the error was compose service nosuchimageerror image myproject web not found however if a docker image is present it will proceed without error on the other hand what is expected from docker compose and also docker service is it will create an image if one isn t there especially if the build flag is present during testing docker compose up does this successfully whether an image exists or not steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used name start with docker compose docker service project src deploy dir build yes state present check the current docker images docker images make a backup copy of the relevant image if desired and then delete the image docker tag image name image name bck docker rmi image name then run ansible playbook expected results task changed play recap appserver ok changed unreachable failed actual results task task path etc ansible roles myrole roles djangoapp docker tasks main yml using module file opt github ansible lib ansible modules core cloud docker docker service py establish local connection for user root exec bin sh c umask mkdir p echo home ansible tmp ansible tmp echo ansible tmp echo home ansible tmp ansible tmp sleep put tmp to root ansible tmp ansible tmp docker service py exec bin sh c chmod u x root ansible tmp ansible tmp root ansible tmp ansible tmp docker service py sleep exec bin sh c usr bin python root ansible tmp ansible tmp docker service py rm rf root ansible tmp ansible tmp dev null sleep an exception occurred during task execution the full traceback is traceback most recent call last file tmp ansible ansible module docker service py line in main file tmp ansible ansible module docker service py line in main result containermanager client exec module file tmp ansible ansible module docker service py line in exec module result self cmd up file tmp ansible ansible module docker service py line in cmd up result update self cmd build file tmp ansible ansible module docker service py line in cmd build image service image file usr local lib dist packages compose service py line in image raise nosuchimageerror image not found format self image name compose service nosuchimageerror image myproject web not found fatal failed changed false failed true invocation module name docker service module stderr traceback most recent call last n file tmp ansible ansible module docker service py line in n main n file tmp ansible ansible module docker service py line in main n result containermanager client exec module n file tmp ansible ansible module docker service py line in exec module n result self cmd up n file tmp ansible ansible module docker service py line in cmd up n result update self cmd build n file tmp ansible ansible module docker service py line in cmd build n image service image n file usr local lib dist packages compose service py line in image n raise nosuchimageerror image not found format self image name ncompose service nosuchimageerror image myrole web not found n module stdout msg module failure to retry use limit etc ansible roles myrole deploy docker retry | 1 |
1,906 | 6,577,561,924 | IssuesEvent | 2017-09-12 01:46:39 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | Opensuse version <= 11 wrong hostname strategy | affects_2.0 bug_report waiting_on_maintainer | ##### Issue Type:
- Bug Report
##### Plugin Name:
hostname module
##### Ansible Version:
```
$ ansible --version
ansible 2.0.1.0
config file = /Users/brookerj/repos/bbot/ansible.cfg
configured module search path = Default w/o overrides
```
##### Ansible Configuration:
$ cat /Users/brookerj/repos/bbot/ansible.cfg
[defaults]
deprecation_warnings = False
##### Environment:
running from Mac, managing an Opensuse 11.1 32 bit instance
##### Summary:
The core modules hostname setting function:
https://github.com/ansible/ansible-modules-core/blob/09e2457eb0e811ac293065dd77cd31597ceb2da7/system/hostname.py#L467-L472
The code referenced above incorrectly assumes that all versions of opensuse run systemd. in fact only versions 12 or later do. with the previous versions using the old sysinit v. see here for details of the change:
https://www.suse.com/docrep/documents/huz0a6bf9a/systemd_in_suse_linux_enterprise_12_white_paper.pdf
##### Steps To Reproduce:
try to set the hostname on an opensuse host.
##### Expected Results:
Hostname to be set properly
##### Actual Results:
```
fatal: [Opensuse_11_32]: FAILED! => {"changed": false, "cmd": "hostnamectl --transient set-hostname Opensles_11_32", "failed": true, "msg": "[Errno 2] No such file or directory", "rc": 2}
```
| True | Opensuse version <= 11 wrong hostname strategy - ##### Issue Type:
- Bug Report
##### Plugin Name:
hostname module
##### Ansible Version:
```
$ ansible --version
ansible 2.0.1.0
config file = /Users/brookerj/repos/bbot/ansible.cfg
configured module search path = Default w/o overrides
```
##### Ansible Configuration:
$ cat /Users/brookerj/repos/bbot/ansible.cfg
[defaults]
deprecation_warnings = False
##### Environment:
running from Mac, managing an Opensuse 11.1 32 bit instance
##### Summary:
The core modules hostname setting function:
https://github.com/ansible/ansible-modules-core/blob/09e2457eb0e811ac293065dd77cd31597ceb2da7/system/hostname.py#L467-L472
The code referenced above incorrectly assumes that all versions of opensuse run systemd. in fact only versions 12 or later do. with the previous versions using the old sysinit v. see here for details of the change:
https://www.suse.com/docrep/documents/huz0a6bf9a/systemd_in_suse_linux_enterprise_12_white_paper.pdf
##### Steps To Reproduce:
try to set the hostname on an opensuse host.
##### Expected Results:
Hostname to be set properly
##### Actual Results:
```
fatal: [Opensuse_11_32]: FAILED! => {"changed": false, "cmd": "hostnamectl --transient set-hostname Opensles_11_32", "failed": true, "msg": "[Errno 2] No such file or directory", "rc": 2}
```
| main | opensuse version wrong hostname strategy issue type bug report plugin name hostname module ansible version ansible version ansible config file users brookerj repos bbot ansible cfg configured module search path default w o overrides ansible configuration cat users brookerj repos bbot ansible cfg deprecation warnings false environment running from mac managing an opensuse bit instance summary the core modules hostname setting function the code referenced above incorrectly assumes that all versions of opensuse run systemd in fact only versions or later do with the previous versions using the old sysinit v see here for details of the change steps to reproduce try to set the hostname on an opensuse host expected results hostname to be set properly actual results fatal failed changed false cmd hostnamectl transient set hostname opensles failed true msg no such file or directory rc | 1 |
3,082 | 11,706,334,875 | IssuesEvent | 2020-03-07 21:28:06 | short-d/short | https://api.github.com/repos/short-d/short | closed | [Maintainability] Malformated code | bug maintainability | Go report complains that 1 .go file is formatted.
Please run `./scripts/format` inside `backend` to format the code.
https://goreportcard.com/report/github.com/short-d/short
<img width="1001" alt="Screen Shot 2020-03-06 at 7 41 17 PM" src="https://user-images.githubusercontent.com/3537801/76136105-c32d6080-5fe2-11ea-954c-6885638fe7bc.png">
Please click on refresh at Go Report after the PR is submitted to make sure it actually fixed the issue. | True | [Maintainability] Malformated code - Go report complains that 1 .go file is formatted.
Please run `./scripts/format` inside `backend` to format the code.
https://goreportcard.com/report/github.com/short-d/short
<img width="1001" alt="Screen Shot 2020-03-06 at 7 41 17 PM" src="https://user-images.githubusercontent.com/3537801/76136105-c32d6080-5fe2-11ea-954c-6885638fe7bc.png">
Please click on refresh at Go Report after the PR is submitted to make sure it actually fixed the issue. | main | malformated code go report complains that go file is formatted please run scripts format inside backend to format the code img width alt screen shot at pm src please click on refresh at go report after the pr is submitted to make sure it actually fixed the issue | 1 |
4,291 | 21,649,048,516 | IssuesEvent | 2022-05-06 07:20:43 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | opened | Disable removing dynamic default value for primary keys, allow editing PK column in new un-saved rows if no default value is set | type: bug work: frontend status: ready restricted: maintainers | ## Current behavior
* We allow editing/removing default values for all columns, including PK columns.
* We do not allow editing cells for PK columns.
## Bugs due to the current behavior
* Users are able to remove a dynamic default value for PK columns. Once removed, adding any new row will fail.
* If no default value is present for a PK column, adding a new row will fail. Since we do not allow editing PK column cells, users will never be able to add a new row.
## Expected behavior
* Users should not be able to remove/modify a dynamic default value of a PK column.
* Users should be able to edit a PK column cell in an un-saved row. They should not be allowed to do that for saved rows.
<!-- Edit the body of your new issue then click the β "Create Issue" button in the top right of the editor. The first line will be the issue title. Assignees and Labels follow after a blank line. Leave an empty line before beginning the body of the issue. --> | True | Disable removing dynamic default value for primary keys, allow editing PK column in new un-saved rows if no default value is set - ## Current behavior
* We allow editing/removing default values for all columns, including PK columns.
* We do not allow editing cells for PK columns.
## Bugs due to the current behavior
* Users are able to remove a dynamic default value for PK columns. Once removed, adding any new row will fail.
* If no default value is present for a PK column, adding a new row will fail. Since we do not allow editing PK column cells, users will never be able to add a new row.
## Expected behavior
* Users should not be able to remove/modify a dynamic default value of a PK column.
* Users should be able to edit a PK column cell in an un-saved row. They should not be allowed to do that for saved rows.
<!-- Edit the body of your new issue then click the β "Create Issue" button in the top right of the editor. The first line will be the issue title. Assignees and Labels follow after a blank line. Leave an empty line before beginning the body of the issue. --> | main | disable removing dynamic default value for primary keys allow editing pk column in new un saved rows if no default value is set current behavior we allow editing removing default values for all columns including pk columns we do not allow editing cells for pk columns bugs due to the current behavior users are able to remove a dynamic default value for pk columns once removed adding any new row will fail if no default value is present for a pk column adding a new row will fail since we do not allow editing pk column cells users will never be able to add a new row expected behavior users should not be able to remove modify a dynamic default value of a pk column users should be able to edit a pk column cell in an un saved row they should not be allowed to do that for saved rows | 1 |
2,776 | 9,959,903,976 | IssuesEvent | 2019-07-06 11:34:59 | dgets/lasttime | https://api.github.com/repos/dgets/lasttime | closed | Database pruning support | enhancement maintainability | Add features that will allow pruning the database by date. An archival feature for entries prior to this would be nice, as well. | True | Database pruning support - Add features that will allow pruning the database by date. An archival feature for entries prior to this would be nice, as well. | main | database pruning support add features that will allow pruning the database by date an archival feature for entries prior to this would be nice as well | 1 |
2,564 | 8,711,809,041 | IssuesEvent | 2018-12-06 20:17:21 | arcticicestudio/nord-docs | https://api.github.com/repos/arcticicestudio/nord-docs | closed | SVGR | context-api scope-dx scope-maintainability type-feature | <p align="center"><img src="https://user-images.githubusercontent.com/7836623/49604267-bceaa780-f98d-11e8-932a-05ee4b952a83.png" width="20%" /></p>
This issue documents the integration of [SVGR][] which transforms SVG into ready to use React components. It is part of [create-react-app][cra] and makes SVG integration into React projects easy.
## Configuration
All configurations will be placed in a `svgr.config.js` file in the project root instead of passing them to the corresponding Gatsby plugin for the Webpack loader that is documented in the section below.
- `expandProps` = `end` β ensure props are always spread (`{...props}`) last on the root `<svg>` element.
- `ext` = `jsx` β use the JSX file extension for generated components.
- `icon` = `false` β ensure the `width` and `height` props (hardcoded `1em` value) are not added.
- `ref` = `true` β export components using React's `forwardRef` API to reference the underlying component and allow access to the root SVG element which is necessary for animations.
- `svgo` = `false` β all SVG files in this project are already optimized with SVGO using the included `.svgo.yml` configuration.
## Webpack Loader
To directly import SVG's as React component the [@svgr/webpack][gh-svgr-wpl] package will be used to simply integrate SVGR as Webpack plugin. It'll be added through the [gatsby-plugin-svgr][npm-gp-svgr] which adjusts the required Webpack configurations by adding the loader and removing the default `.svg` file loader.
## Tasks
- [x] Install the required (dev) dependencies:
- [gatsby-plugin-svgr][npm-gp-svgr]
- [@svgr/webpack][npm-svgr-wp]
- [x] Implement the SVGR and SVGO configuration files.
- [x] Add `gatsby-plugin-svgr` to the Gatsby configuration.
[cra]: https://facebook.github.io/create-react-app
[gh-svgr-wpl]: https://github.com/smooth-code/svgr/tree/master/packages/webpack
[npm-gp-svgr]: https://www.npmjs.com/package/gatsby-plugin-svgr
[npm-svgr-wp]: https://www.npmjs.com/package/@svgr/webpack
[svgr]: https://www.smooth-code.com/open-source/svgr
| True | SVGR - <p align="center"><img src="https://user-images.githubusercontent.com/7836623/49604267-bceaa780-f98d-11e8-932a-05ee4b952a83.png" width="20%" /></p>
This issue documents the integration of [SVGR][] which transforms SVG into ready to use React components. It is part of [create-react-app][cra] and makes SVG integration into React projects easy.
## Configuration
All configurations will be placed in a `svgr.config.js` file in the project root instead of passing them to the corresponding Gatsby plugin for the Webpack loader that is documented in the section below.
- `expandProps` = `end` β ensure props are always spread (`{...props}`) last on the root `<svg>` element.
- `ext` = `jsx` β use the JSX file extension for generated components.
- `icon` = `false` β ensure the `width` and `height` props (hardcoded `1em` value) are not added.
- `ref` = `true` β export components using React's `forwardRef` API to reference the underlying component and allow access to the root SVG element which is necessary for animations.
- `svgo` = `false` β all SVG files in this project are already optimized with SVGO using the included `.svgo.yml` configuration.
## Webpack Loader
To directly import SVG's as React component the [@svgr/webpack][gh-svgr-wpl] package will be used to simply integrate SVGR as Webpack plugin. It'll be added through the [gatsby-plugin-svgr][npm-gp-svgr] which adjusts the required Webpack configurations by adding the loader and removing the default `.svg` file loader.
## Tasks
- [x] Install the required (dev) dependencies:
- [gatsby-plugin-svgr][npm-gp-svgr]
- [@svgr/webpack][npm-svgr-wp]
- [x] Implement the SVGR and SVGO configuration files.
- [x] Add `gatsby-plugin-svgr` to the Gatsby configuration.
[cra]: https://facebook.github.io/create-react-app
[gh-svgr-wpl]: https://github.com/smooth-code/svgr/tree/master/packages/webpack
[npm-gp-svgr]: https://www.npmjs.com/package/gatsby-plugin-svgr
[npm-svgr-wp]: https://www.npmjs.com/package/@svgr/webpack
[svgr]: https://www.smooth-code.com/open-source/svgr
| main | svgr this issue documents the integration of which transforms svg into ready to use react components it is part of and makes svg integration into react projects easy configuration all configurations will be placed in a svgr config js file in the project root instead of passing them to the corresponding gatsby plugin for the webpack loader that is documented in the section below expandprops end β ensure props are always spread props last on the root element ext jsx β use the jsx file extension for generated components icon false β ensure the width and height props hardcoded value are not added ref true β export components using react s forwardref api to reference the underlying component and allow access to the root svg element which is necessary for animations svgo false β all svg files in this project are already optimized with svgo using the included svgo yml configuration webpack loader to directly import svg s as react component the package will be used to simply integrate svgr as webpack plugin it ll be added through the which adjusts the required webpack configurations by adding the loader and removing the default svg file loader tasks install the required dev dependencies implement the svgr and svgo configuration files add gatsby plugin svgr to the gatsby configuration | 1 |
1,033 | 4,827,588,515 | IssuesEvent | 2016-11-07 14:05:57 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | cloudformation module throws error when stack is gone and state=absent | affects_2.3 aws bug_report cloud waiting_on_maintainer | cloudformation module should return 'ok' if state= absent and stack does not exist (=absent).
Instead, the module throws an error:
failed: [ensure stack is gone] => {"failed": true}
msg: Stack with id <the stack name> does not exist
Have not yet verified this, but looks like exception is being thrown in cfn.describe_stacks:
if state == 'absent':
try:
invoke_with_throttling_retries(cfn.describe_stacks,stack_name) << (line 340)
operation = 'DELETE'
except Exception, err:
error_msg = boto_exception(err)
in ansible-modules/core/cloud/amazon/cloudformation.py
| True | cloudformation module throws error when stack is gone and state=absent - cloudformation module should return 'ok' if state= absent and stack does not exist (=absent).
Instead, the module throws an error:
failed: [ensure stack is gone] => {"failed": true}
msg: Stack with id <the stack name> does not exist
Have not yet verified this, but looks like exception is being thrown in cfn.describe_stacks:
if state == 'absent':
try:
invoke_with_throttling_retries(cfn.describe_stacks,stack_name) << (line 340)
operation = 'DELETE'
except Exception, err:
error_msg = boto_exception(err)
in ansible-modules/core/cloud/amazon/cloudformation.py
| main | cloudformation module throws error when stack is gone and state absent cloudformation module should return ok if state absent and stack does not exist absent instead the module throws an error failed failed true msg stack with id does not exist have not yet verified this but looks like exception is being thrown in cfn describe stacks if state absent try invoke with throttling retries cfn describe stacks stack name line operation delete except exception err error msg boto exception err in ansible modules core cloud amazon cloudformation py | 1 |
374,082 | 11,071,486,474 | IssuesEvent | 2019-12-12 08:16:47 | incognitochain/incognito-wallet | https://api.github.com/repos/incognitochain/incognito-wallet | closed | The user only can pay a fee with PRV when withdraw | Priority: Critical Type: Bug | For now, user canNOT pay others fees except PRV when withdraw | 1.0 | The user only can pay a fee with PRV when withdraw - For now, user canNOT pay others fees except PRV when withdraw | non_main | the user only can pay a fee with prv when withdraw for now user cannot pay others fees except prv when withdraw | 0 |
675 | 4,217,030,353 | IssuesEvent | 2016-06-30 11:32:27 | duckduckgo/zeroclickinfo-spice | https://api.github.com/repos/duckduckgo/zeroclickinfo-spice | opened | Amazon: Review Stars not appearing | Maintainer Input Requested | All of these have reviews on amazon but only one displays stars.
------

IA Page: http://duck.co/ia/view/products
[Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @bsstoner | True | Amazon: Review Stars not appearing - All of these have reviews on amazon but only one displays stars.
------

IA Page: http://duck.co/ia/view/products
[Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @bsstoner | main | amazon review stars not appearing all of these have reviews on amazon but only one displays stars ia page bsstoner | 1 |
237,554 | 7,761,675,934 | IssuesEvent | 2018-06-01 10:44:10 | dwyl/hq | https://api.github.com/repos/dwyl/hq | reopened | CRM (or how we keep in contact with the people who we work with and/or are interested in working with us ...) | enhancement help wanted priority-2 | Who has experience with CRM and time to flesh out what our requirements are?
> Make or Buy Decision: https://youtu.be/vxZSaDtQgrs | 1.0 | CRM (or how we keep in contact with the people who we work with and/or are interested in working with us ...) - Who has experience with CRM and time to flesh out what our requirements are?
> Make or Buy Decision: https://youtu.be/vxZSaDtQgrs | non_main | crm or how we keep in contact with the people who we work with and or are interested in working with us who has experience with crm and time to flesh out what our requirements are make or buy decision | 0 |
215,913 | 24,197,499,506 | IssuesEvent | 2022-09-24 04:34:23 | mittell/mern-amazon-clone-v1 | https://api.github.com/repos/mittell/mern-amazon-clone-v1 | opened | react-scripts-5.0.1.tgz: 2 vulnerabilities (highest severity is: 7.5) | security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>react-scripts-5.0.1.tgz</b></p></summary>
<p></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/css-what/package.json</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2021-33587](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33587) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | css-what-3.4.2.tgz | Transitive | N/A | ❌ |
| [CVE-2021-3803](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3803) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nth-check-1.0.2.tgz | Transitive | N/A | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-33587</summary>
### Vulnerable Library - <b>css-what-3.4.2.tgz</b></p>
<p>a CSS selector parser</p>
<p>Library home page: <a href="https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz">https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz</a></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/css-what/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.1.tgz (Root Library)
- webpack-5.5.0.tgz
- plugin-svgo-5.5.0.tgz
- svgo-1.3.2.tgz
- css-select-2.1.0.tgz
- :x: **css-what-3.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
The css-what package 4.0.0 through 5.0.0 for Node.js does not ensure that attribute parsing has Linear Time Complexity relative to the size of the input.
<p>Publish Date: 2021-05-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33587>CVE-2021-33587</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33587">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33587</a></p>
<p>Release Date: 2021-05-28</p>
<p>Fix Resolution: css-what - 5.0.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3803</summary>
### Vulnerable Library - <b>nth-check-1.0.2.tgz</b></p>
<p>performant nth-check parser & compiler</p>
<p>Library home page: <a href="https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz">https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz</a></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/nth-check/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.1.tgz (Root Library)
- webpack-5.5.0.tgz
- plugin-svgo-5.5.0.tgz
- svgo-1.3.2.tgz
- css-select-2.1.0.tgz
- :x: **nth-check-1.0.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
nth-check is vulnerable to Inefficient Regular Expression Complexity
<p>Publish Date: 2021-09-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3803>CVE-2021-3803</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2021-09-17</p>
<p>Fix Resolution: nth-check - v2.0.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | True | react-scripts-5.0.1.tgz: 2 vulnerabilities (highest severity is: 7.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>react-scripts-5.0.1.tgz</b></p></summary>
<p></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/css-what/package.json</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2021-33587](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33587) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | css-what-3.4.2.tgz | Transitive | N/A | ❌ |
| [CVE-2021-3803](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3803) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nth-check-1.0.2.tgz | Transitive | N/A | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-33587</summary>
### Vulnerable Library - <b>css-what-3.4.2.tgz</b></p>
<p>a CSS selector parser</p>
<p>Library home page: <a href="https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz">https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz</a></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/css-what/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.1.tgz (Root Library)
- webpack-5.5.0.tgz
- plugin-svgo-5.5.0.tgz
- svgo-1.3.2.tgz
- css-select-2.1.0.tgz
- :x: **css-what-3.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
The css-what package 4.0.0 through 5.0.0 for Node.js does not ensure that attribute parsing has Linear Time Complexity relative to the size of the input.
<p>Publish Date: 2021-05-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33587>CVE-2021-33587</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33587">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33587</a></p>
<p>Release Date: 2021-05-28</p>
<p>Fix Resolution: css-what - 5.0.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3803</summary>
### Vulnerable Library - <b>nth-check-1.0.2.tgz</b></p>
<p>performant nth-check parser & compiler</p>
<p>Library home page: <a href="https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz">https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz</a></p>
<p>Path to dependency file: /client/package.json</p>
<p>Path to vulnerable library: /client/node_modules/svgo/node_modules/nth-check/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.1.tgz (Root Library)
- webpack-5.5.0.tgz
- plugin-svgo-5.5.0.tgz
- svgo-1.3.2.tgz
- css-select-2.1.0.tgz
- :x: **nth-check-1.0.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mittell/mern-amazon-clone-v1/commit/c4fcbe2caf19bb3361932d102417dcd443acd4ce">c4fcbe2caf19bb3361932d102417dcd443acd4ce</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
nth-check is vulnerable to Inefficient Regular Expression Complexity
<p>Publish Date: 2021-09-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3803>CVE-2021-3803</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2021-09-17</p>
<p>Fix Resolution: nth-check - v2.0.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | non_main | react scripts tgz vulnerabilities highest severity is vulnerable library react scripts tgz path to dependency file client package json path to vulnerable library client node modules svgo node modules css what package json found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available high css what tgz transitive n a high nth check tgz transitive n a details cve vulnerable library css what tgz a css selector parser library home page a href path to dependency file client package json path to vulnerable library client node modules svgo node modules css what package json dependency hierarchy react scripts tgz root library webpack tgz plugin svgo tgz svgo tgz css select tgz x css what tgz vulnerable library found in head commit a href found in base branch main vulnerability details the css what package through for node js does not ensure that attribute parsing has linear time complexity relative to the size of the input publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution css what step up your open source security game with mend cve vulnerable library nth check tgz performant nth check parser compiler library home page a href path to dependency file client package json path to vulnerable library client node modules svgo node modules nth check package json dependency hierarchy react scripts tgz root library webpack tgz plugin svgo tgz svgo tgz css select tgz x nth check tgz vulnerable library found in head commit a href found in base branch main vulnerability details nth check is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution nth check step up your open source security game with mend | 0 |
3,491 | 9,669,066,797 | IssuesEvent | 2019-05-21 16:26:45 | Azure/azure-sdk | https://api.github.com/repos/Azure/azure-sdk | closed | API Proposal: Add DeviceStream APIs to IoT Hub Device SDK (C) | architecture | # Overview
Azure IoT Hub device streams facilitate the creation of secure bi-directional TCP tunnels for a variety of cloud-to-device communication scenarios. A device stream is mediated by an IoT Hub streaming endpoint which acts as a proxy between your device and service endpoints. This setup is especially useful when devices are behind a network firewall or reside inside of a private network. As such, IoT Hub device streams help address customers' need to reach IoT devices in a firewall-friendly manner and without the need to broadly opening up incoming or outgoing network firewall ports. Using IoT Hub device streams, devices remain secure and will only need to open up outbound TCP connections to IoT hub's streaming endpoint over port 443. Once a stream is established, the service-side and device-side applications will each have programmatic access to a WebSocket client object to send and receive raw bytes to one another. The reliability and ordering guarantees provided by this tunnel is on par with TCP.
# Device Stream Workflow
A device stream is initiated when the service requests to connect to a device by providing its device ID. This workflow particularly fits into a client/server communication model, including SSH and RDP, where a user intends to remotely connect to the SSH or RDP server running on the device using an SSH or RDP client program.
The device stream creation process involves a negotiation between the device, service, IoT hub's main and streaming endpoints. While IoT hub's main endpoint orchestrates the creation of a device stream, the streaming endpoint handles the traffic that flows between the service and device.
## Device stream creation flow
Programmatic creation of a device stream using the SDK involves the following steps:
1. The device application registers a callback in advance to be notified of when a new device stream is initiated to the device. This step typically takes place when the device boots up and connects to IoT Hub.
2. The service-side program initiates a device stream when needed by providing the device ID (not the IP address).
3. IoT hub notifies the device-side program by invoking the callback registered in step 1. The device may accept or reject the stream initiation request. This logic can be specific to your application scenario. If the stream request is rejected by the device, IoT Hub informs the service accordingly; otherwise, the steps below follow.
4. The device creates a secure outbound TCP connection to the streaming endpoint over port 443 and upgrades the connection to a WebSocket. The URL of the streaming endpoint as well as the credentials to use to authenticate are both provided to the device by IoT Hub as part of the request sent in step 3.
5. The service is notified of the result of device accepting the stream and proceeds to create its own WebSocket client to the streaming endpoint. Similarly, it receives the streaming endpoint URL and authentication information from IoT Hub.
In the handshake process above:
* The handshake process must complete within 60 seconds (step 2 through 5), otherwise the handshake would fail with a timeout and the service will be notified accordingly.
* After the stream creation flow above completes, the streaming endpoint will act as a proxy and will transfer traffic between the service and the device over their respective WebSockets.
* Device and service both need outbound connectivity to IoT Hub's main endpoint as well as the streaming endpoint over port 443. The URL of these endpoints is available on Overview tab on the IoT Hub's portal.
* The reliability and ordering guarantees of an established stream is on par with TCP.
* All connections to IoT Hub and streaming endpoint use TLS and are encrypted.
## Termination Flow
An established stream terminates when either of the TCP connections to the gateway are disconnected (by the service or device). This can take place voluntarily by closing the WebSocket on either the device or service programs, or involuntarily in case of a network connectivity timeout or process failure. Upon termination of either device or service's connection to the streaming endpoint, the other TCP connection will also be (forcefully) terminated and the service and device are responsible to re-create the stream, if needed.
# SDK Availability
Two sides of each stream (on the device and service side) use the IoT Hub SDK to establish the tunnel. During public preview, customers can choose from the following SDK languages:
* The C and C# SDK's support device streams on the device side.
* The Node.js and C# SDK support device streams on the service side.
# Sample Code (C)
This echo sample demonstrates programmatic use of device streams to send and receive bytes between service and device applications. To execute the scenario end to end, use the corresponding C# or Node.js sample for the service side.
## Device Sample Code (C)
Full sample project [here](https://github.com/Azure/azure-iot-sdk-c/tree/public-preview/iothub_client/samples/iothub_client_c2d_streaming_sample)
Creating the device client using your device connection string and desired protocol (existing APIs):
```C
// Used to initialize IoTHub SDK subsystem
(void)IoTHub_Init();
IOTHUB_DEVICE_CLIENT_HANDLE device_handle;
// Create the iothub handle here
device_handle = IoTHubDeviceClient_CreateFromConnectionString(connectionString, protocol);
```
Listening for device stream requests (new APIs):
```C
if (IoTHubDeviceClient_SetStreamRequestCallback(device_handle, streamRequestCallback, NULL) != IOTHUB_CLIENT_OK)
{
(void)printf("Failed setting the stream request callback");
}
else
{
do
{
if (g_uws_client_handle != NULL)
{
uws_client_dowork(g_uws_client_handle);
}
ThreadAPI_Sleep(100);
} while (g_continueRunning);
}
```
Handling the stream request callback (new APIs):
```C
static DEVICE_STREAM_C2D_RESPONSE* streamRequestCallback(DEVICE_STREAM_C2D_REQUEST* stream_request, void* context)
{
(void)context;
(void)printf("Received stream request (%s)\r\n", stream_request->name);
g_uws_client_handle = create_websocket_client(stream_request);
return stream_c2d_response_create(stream_request, true);
}
```
# New API Surface added (C)
Reference to existing IoTHub client APIs [(link)](https://docs.microsoft.com/en-us/azure/iot-hub/iot-c-sdk-ref/iothub-client-h)
## IoTHub Device SDK additions
```C
typedef struct DEVICE_STREAM_C2D_REQUEST_TAG
{
/**
* @brief Name of the stream. This is a null-terminated string.
*/
char* name;
/**
* @brief Websockets URL to connect to the streaming gateway. This is a null-terminated string.
*/
char* url;
/**
* @brief Authorization token to be provided to the streaming gateway upon connection. This is a null-terminated string.
*/
char* authorization_token;
/**
* @brief Request ID used to correlate requests and responses. Do not modify its value.
*/
char* request_id;
} DEVICE_STREAM_C2D_REQUEST;
typedef struct DEVICE_STREAM_C2D_RESPONSE_TAG
{
/**
* @brief Indicates if the stream request was accepted or rejected by the local endpoint. Use true to accept, or false to reject.
*/
bool accept;
/**
* @brief Request ID used to correlate requests and responses. Do not modify its value.
*/
char* request_id;
} DEVICE_STREAM_C2D_RESPONSE;
/**
* @brief Callback invoked for new cloud-to-device stream requests.
* @param request Contains the basic information to connect to the streaming gateway, as well as optional custom data provided by the originating endpoint.
* @param context User-defined context, as provided in the call to *_SetStreamRequestCallback.
* @return An instance of DEVICE_STREAM_C2D_RESPONSE indicating if the stream request is accepted or rejected.
*/
typedef DEVICE_STREAM_C2D_RESPONSE* (*DEVICE_STREAM_C2D_REQUEST_CALLBACK)(DEVICE_STREAM_C2D_REQUEST* request, void* context);
DEVICE_STREAM_C2D_RESPONSE* stream_c2d_response_create(DEVICE_STREAM_C2D_REQUEST* request, bool accept);
IOTHUB_CLIENT_RESULT IoTHubDeviceClient_SetStreamRequestCallback(IOTHUB_DEVICE_CLIENT_HANDLE iotHubClientHandle, DEVICE_STREAM_C2D_REQUEST_CALLBACK streamRequestCallback, void* context);
IOTHUB_CLIENT_RESULT IoTHubModuleClient_SetStreamRequestCallback(IOTHUB_MODULE_CLIENT_HANDLE iotHubModuleClientHandle, DEVICE_STREAM_C2D_REQUEST_CALLBACK streamRequestCallback, void* context);
```
| 1.0 | API Proposal: Add DeviceStream APIs to IoT Hub Device SDK (C) - # Overview
Azure IoT Hub device streams facilitate the creation of secure bi-directional TCP tunnels for a variety of cloud-to-device communication scenarios. A device stream is mediated by an IoT Hub streaming endpoint which acts as a proxy between your device and service endpoints. This setup is especially useful when devices are behind a network firewall or reside inside of a private network. As such, IoT Hub device streams help address customers' need to reach IoT devices in a firewall-friendly manner and without the need to broadly opening up incoming or outgoing network firewall ports. Using IoT Hub device streams, devices remain secure and will only need to open up outbound TCP connections to IoT hub's streaming endpoint over port 443. Once a stream is established, the service-side and device-side applications will each have programmatic access to a WebSocket client object to send and receive raw bytes to one another. The reliability and ordering guarantees provided by this tunnel is on par with TCP.
# Device Stream Workflow
A device stream is initiated when the service requests to connect to a device by providing its device ID. This workflow particularly fits into a client/server communication model, including SSH and RDP, where a user intends to remotely connect to the SSH or RDP server running on the device using an SSH or RDP client program.
The device stream creation process involves a negotiation between the device, service, IoT hub's main and streaming endpoints. While IoT hub's main endpoint orchestrates the creation of a device stream, the streaming endpoint handles the traffic that flows between the service and device.
## Device stream creation flow
Programmatic creation of a device stream using the SDK involves the following steps:
1. The device application registers a callback in advance to be notified of when a new device stream is initiated to the device. This step typically takes place when the device boots up and connects to IoT Hub.
2. The service-side program initiates a device stream when needed by providing the device ID (not the IP address).
3. IoT hub notifies the device-side program by invoking the callback registered in step 1. The device may accept or reject the stream initiation request. This logic can be specific to your application scenario. If the stream request is rejected by the device, IoT Hub informs the service accordingly; otherwise, the steps below follow.
4. The device creates a secure outbound TCP connection to the streaming endpoint over port 443 and upgrades the connection to a WebSocket. The URL of the streaming endpoint as well as the credentials to use to authenticate are both provided to the device by IoT Hub as part of the request sent in step 3.
5. The service is notified of the result of device accepting the stream and proceeds to create its own WebSocket client to the streaming endpoint. Similarly, it receives the streaming endpoint URL and authentication information from IoT Hub.
In the handshake process above:
* The handshake process must complete within 60 seconds (step 2 through 5), otherwise the handshake would fail with a timeout and the service will be notified accordingly.
* After the stream creation flow above completes, the streaming endpoint will act as a proxy and will transfer traffic between the service and the device over their respective WebSockets.
* Device and service both need outbound connectivity to IoT Hub's main endpoint as well as the streaming endpoint over port 443. The URL of these endpoints is available on Overview tab on the IoT Hub's portal.
* The reliability and ordering guarantees of an established stream is on par with TCP.
* All connections to IoT Hub and streaming endpoint use TLS and are encrypted.
## Termination Flow
An established stream terminates when either of the TCP connections to the gateway are disconnected (by the service or device). This can take place voluntarily by closing the WebSocket on either the device or service programs, or involuntarily in case of a network connectivity timeout or process failure. Upon termination of either device or service's connection to the streaming endpoint, the other TCP connection will also be (forcefully) terminated and the service and device are responsible to re-create the stream, if needed.
# SDK Availability
Two sides of each stream (on the device and service side) use the IoT Hub SDK to establish the tunnel. During public preview, customers can choose from the following SDK languages:
* The C and C# SDK's support device streams on the device side.
* The Node.js and C# SDK support device streams on the service side.
# Sample Code (C)
This echo sample demonstrates programmatic use of device streams to send and receive bytes between service and device applications. To execute the scenario end to end, use the corresponding C# or Node.js sample for the service side.
## Device Sample Code (C)
Full sample project [here](https://github.com/Azure/azure-iot-sdk-c/tree/public-preview/iothub_client/samples/iothub_client_c2d_streaming_sample)
Creating the device client using your device connection string and desired protocol (existing APIs):
```C
// Used to initialize IoTHub SDK subsystem
(void)IoTHub_Init();
IOTHUB_DEVICE_CLIENT_HANDLE device_handle;
// Create the iothub handle here
device_handle = IoTHubDeviceClient_CreateFromConnectionString(connectionString, protocol);
```
Listening for device stream requests (new APIs):
```C
if (IoTHubDeviceClient_SetStreamRequestCallback(device_handle, streamRequestCallback, NULL) != IOTHUB_CLIENT_OK)
{
(void)printf("Failed setting the stream request callback");
}
else
{
do
{
if (g_uws_client_handle != NULL)
{
uws_client_dowork(g_uws_client_handle);
}
ThreadAPI_Sleep(100);
} while (g_continueRunning);
}
```
Handling the stream request callback (new APIs):
```C
static DEVICE_STREAM_C2D_RESPONSE* streamRequestCallback(DEVICE_STREAM_C2D_REQUEST* stream_request, void* context)
{
(void)context;
(void)printf("Received stream request (%s)\r\n", stream_request->name);
g_uws_client_handle = create_websocket_client(stream_request);
return stream_c2d_response_create(stream_request, true);
}
```
# New API Surface added (C)
Reference to existing IoTHub client APIs [(link)](https://docs.microsoft.com/en-us/azure/iot-hub/iot-c-sdk-ref/iothub-client-h)
## IoTHub Device SDK additions
```C
typedef struct DEVICE_STREAM_C2D_REQUEST_TAG
{
/**
* @brief Name of the stream. This is a null-terminated string.
*/
char* name;
/**
* @brief Websockets URL to connect to the streaming gateway. This is a null-terminated string.
*/
char* url;
/**
* @brief Authorization token to be provided to the streaming gateway upon connection. This is a null-terminated string.
*/
char* authorization_token;
/**
* @brief Request ID used to correlate requests and responses. Do not modify its value.
*/
char* request_id;
} DEVICE_STREAM_C2D_REQUEST;
typedef struct DEVICE_STREAM_C2D_RESPONSE_TAG
{
/**
* @brief Indicates if the stream request was accepted or rejected by the local endpoint. Use true to accept, or false to reject.
*/
bool accept;
/**
* @brief Request ID used to correlate requests and responses. Do not modify its value.
*/
char* request_id;
} DEVICE_STREAM_C2D_RESPONSE;
/**
* @brief Callback invoked for new cloud-to-device stream requests.
* @param request Contains the basic information to connect to the streaming gateway, as well as optional custom data provided by the originating endpoint.
* @param context User-defined context, as provided in the call to *_SetStreamRequestCallback.
* @return An instance of DEVICE_STREAM_C2D_RESPONSE indicating if the stream request is accepted or rejected.
*/
typedef DEVICE_STREAM_C2D_RESPONSE* (*DEVICE_STREAM_C2D_REQUEST_CALLBACK)(DEVICE_STREAM_C2D_REQUEST* request, void* context);
DEVICE_STREAM_C2D_RESPONSE* stream_c2d_response_create(DEVICE_STREAM_C2D_REQUEST* request, bool accept);
IOTHUB_CLIENT_RESULT IoTHubDeviceClient_SetStreamRequestCallback(IOTHUB_DEVICE_CLIENT_HANDLE iotHubClientHandle, DEVICE_STREAM_C2D_REQUEST_CALLBACK streamRequestCallback, void* context);
IOTHUB_CLIENT_RESULT IoTHubModuleClient_SetStreamRequestCallback(IOTHUB_MODULE_CLIENT_HANDLE iotHubModuleClientHandle, DEVICE_STREAM_C2D_REQUEST_CALLBACK streamRequestCallback, void* context);
```
| non_main | api proposal add devicestream apis to iot hub device sdk c overview azure iot hub device streams facilitate the creation of secure bi directional tcp tunnels for a variety of cloud to device communication scenarios a device stream is mediated by an iot hub streaming endpoint which acts as a proxy between your device and service endpoints this setup is especially useful when devices are behind a network firewall or reside inside of a private network as such iot hub device streams help address customers need to reach iot devices in a firewall friendly manner and without the need to broadly opening up incoming or outgoing network firewall ports using iot hub device streams devices remain secure and will only need to open up outbound tcp connections to iot hub s streaming endpoint over port once a stream is established the service side and device side applications will each have programmatic access to a websocket client object to send and receive raw bytes to one another the reliability and ordering guarantees provided by this tunnel is on par with tcp device stream workflow a device stream is initiated when the service requests to connect to a device by providing its device id this workflow particularly fits into a client server communication model including ssh and rdp where a user intends to remotely connect to the ssh or rdp server running on the device using an ssh or rdp client program the device stream creation process involves a negotiation between the device service iot hub s main and streaming endpoints while iot hub s main endpoint orchestrates the creation of a device stream the streaming endpoint handles the traffic that flows between the service and device device stream creation flow programmatic creation of a device stream using the sdk involves the following steps the device application registers a callback in advance to be notified of when a new device stream is initiated to the device this step typically takes place when the device boots up and connects to iot hub the service side program initiates a device stream when needed by providing the device id not the ip address iot hub notifies the device side program by invoking the callback registered in step the device may accept or reject the stream initiation request this logic can be specific to your application scenario if the stream request is rejected by the device iot hub informs the service accordingly otherwise the steps below follow the device creates a secure outbound tcp connection to the streaming endpoint over port and upgrades the connection to a websocket the url of the streaming endpoint as well as the credentials to use to authenticate are both provided to the device by iot hub as part of the request sent in step the service is notified of the result of device accepting the stream and proceeds to create its own websocket client to the streaming endpoint similarly it receives the streaming endpoint url and authentication information from iot hub in the handshake process above the handshake process must complete within seconds step through otherwise the handshake would fail with a timeout and the service will be notified accordingly after the stream creation flow above completes the streaming endpoint will act as a proxy and will transfer traffic between the service and the device over their respective websockets device and service both need outbound connectivity to iot hub s main endpoint as well as the streaming endpoint over port the url of these endpoints is available on overview tab on the iot hub s portal the reliability and ordering guarantees of an established stream is on par with tcp all connections to iot hub and streaming endpoint use tls and are encrypted termination flow an established stream terminates when either of the tcp connections to the gateway are disconnected by the service or device this can take place voluntarily by closing the websocket on either the device or service programs or involuntarily in case of a network connectivity timeout or process failure upon termination of either device or service s connection to the streaming endpoint the other tcp connection will also be forcefully terminated and the service and device are responsible to re create the stream if needed sdk availability two sides of each stream on the device and service side use the iot hub sdk to establish the tunnel during public preview customers can choose from the following sdk languages the c and c sdk s support device streams on the device side the node js and c sdk support device streams on the service side sample code c this echo sample demonstrates programmatic use of device streams to send and receive bytes between service and device applications to execute the scenario end to end use the corresponding c or node js sample for the service side device sample code c full sample project creating the device client using your device connection string and desired protocol existing apis c used to initialize iothub sdk subsystem void iothub init iothub device client handle device handle create the iothub handle here device handle iothubdeviceclient createfromconnectionstring connectionstring protocol listening for device stream requests new apis c if iothubdeviceclient setstreamrequestcallback device handle streamrequestcallback null iothub client ok void printf failed setting the stream request callback else do if g uws client handle null uws client dowork g uws client handle threadapi sleep while g continuerunning handling the stream request callback new apis c static device stream response streamrequestcallback device stream request stream request void context void context void printf received stream request s r n stream request name g uws client handle create websocket client stream request return stream response create stream request true new api surface added c reference to existing iothub client apis iothub device sdk additions c typedef struct device stream request tag brief name of the stream this is a null terminated string char name brief websockets url to connect to the streaming gateway this is a null terminated string char url brief authorization token to be provided to the streaming gateway upon connection this is a null terminated string char authorization token brief request id used to correlate requests and responses do not modify its value char request id device stream request typedef struct device stream response tag brief indicates if the stream request was accepted or rejected by the local endpoint use true to accept or false to reject bool accept brief request id used to correlate requests and responses do not modify its value char request id device stream response brief callback invoked for new cloud to device stream requests param request contains the basic information to connect to the streaming gateway as well as optional custom data provided by the originating endpoint param context user defined context as provided in the call to setstreamrequestcallback return an instance of device stream response indicating if the stream request is accepted or rejected typedef device stream response device stream request callback device stream request request void context device stream response stream response create device stream request request bool accept iothub client result iothubdeviceclient setstreamrequestcallback iothub device client handle iothubclienthandle device stream request callback streamrequestcallback void context iothub client result iothubmoduleclient setstreamrequestcallback iothub module client handle iothubmoduleclienthandle device stream request callback streamrequestcallback void context | 0 |
801 | 4,417,654,226 | IssuesEvent | 2016-08-15 07:02:21 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | ec2_vpc_route_table "Multiple subnets named XXX" | aws bug_report cloud waiting_on_maintainer | Hi,
thanks for your ec2_vpc_route_table module but i noticed a bug anoying with subnet attribute.
I use the following task:
```
- name: Create routing table
ec2_vpc_route_table:
vpc_id: "{{ item.0.vpc_id }}"
region: "{{ item.0.region }}"
tags: "{{ item.1.tags }}"
routes: "{{ item.1.routes }}"
subnets: "{{ item.1.subnets }}"
with_subelements:
- amazon.routes
- config
```
Here is the vars file:
```
amazon:
routes:
vpc_test:
vpc_id: "vpc-aaaaaaaa"
region: "eu-wtf-1"
config:
- tags:
Name: "test-public"
subnets:
- "subnet-XXX"
- "subnet-YYY"
- "subnet-ZZZ"
routes:
- { dest: "172.16.0.0/16", gateway_id: "vgw-XXX" }
- { dest: "192.168.1.0/24", gateway_id: "vgw-XXX" }
```
This works with the following syntax with subnet IDs but if i replace subnet-XXX by names, it doesn't work with multiple subnets.
```
failed: [127.0.0.1] => (item=({u'vpc_id': u'vpc-XXX', u'region': u'eu-central-1'}, {u'routes': [{u'dest': u'172.16.0.0/16', u'gateway_id': u'vgw-XXX'}, {u'dest': u'192.168.1.0/24', u'gateway_id': u'vgw-XXX'}], u'subnets': [u'protect-test-a', u'protect-test2-a', u'protect-test3-a'], u'tags': {u'Name': u'test-public'}})) => {"failed": true, "item": [{"region": "eu-wtf-1", "vpc_id": "vpc-XXX"}, {"routes": [{"dest": "172.20.0.0/16", "gateway_id": "vgw-XXX"}, {"dest": "192.168.1.0/24", "gateway_id": "vgw-XXX"}], "subnets": ["protect-test-a", "protect-test2-a", "protect-test3-a"], "tags": {"Name": "test-public"}}], "msg": "Multiple subnets named \"protect-test-a\""}
```
Thanks for your reading
| True | ec2_vpc_route_table "Multiple subnets named XXX" - Hi,
thanks for your ec2_vpc_route_table module but i noticed a bug anoying with subnet attribute.
I use the following task:
```
- name: Create routing table
ec2_vpc_route_table:
vpc_id: "{{ item.0.vpc_id }}"
region: "{{ item.0.region }}"
tags: "{{ item.1.tags }}"
routes: "{{ item.1.routes }}"
subnets: "{{ item.1.subnets }}"
with_subelements:
- amazon.routes
- config
```
Here is the vars file:
```
amazon:
routes:
vpc_test:
vpc_id: "vpc-aaaaaaaa"
region: "eu-wtf-1"
config:
- tags:
Name: "test-public"
subnets:
- "subnet-XXX"
- "subnet-YYY"
- "subnet-ZZZ"
routes:
- { dest: "172.16.0.0/16", gateway_id: "vgw-XXX" }
- { dest: "192.168.1.0/24", gateway_id: "vgw-XXX" }
```
This works with the following syntax with subnet IDs but if i replace subnet-XXX by names, it doesn't work with multiple subnets.
```
failed: [127.0.0.1] => (item=({u'vpc_id': u'vpc-XXX', u'region': u'eu-central-1'}, {u'routes': [{u'dest': u'172.16.0.0/16', u'gateway_id': u'vgw-XXX'}, {u'dest': u'192.168.1.0/24', u'gateway_id': u'vgw-XXX'}], u'subnets': [u'protect-test-a', u'protect-test2-a', u'protect-test3-a'], u'tags': {u'Name': u'test-public'}})) => {"failed": true, "item": [{"region": "eu-wtf-1", "vpc_id": "vpc-XXX"}, {"routes": [{"dest": "172.20.0.0/16", "gateway_id": "vgw-XXX"}, {"dest": "192.168.1.0/24", "gateway_id": "vgw-XXX"}], "subnets": ["protect-test-a", "protect-test2-a", "protect-test3-a"], "tags": {"Name": "test-public"}}], "msg": "Multiple subnets named \"protect-test-a\""}
```
Thanks for your reading
| main | vpc route table multiple subnets named xxx hi thanks for your vpc route table module but i noticed a bug anoying with subnet attribute i use the following task name create routing table vpc route table vpc id item vpc id region item region tags item tags routes item routes subnets item subnets with subelements amazon routes config here is the vars file amazon routes vpc test vpc id vpc aaaaaaaa region eu wtf config tags name test public subnets subnet xxx subnet yyy subnet zzz routes dest gateway id vgw xxx dest gateway id vgw xxx this works with the following syntax with subnet ids but if i replace subnet xxx by names it doesn t work with multiple subnets failed item u vpc id u vpc xxx u region u eu central u routes u subnets u tags u name u test public failed true item subnets tags name test public msg multiple subnets named protect test a thanks for your reading | 1 |
24,098 | 12,033,818,842 | IssuesEvent | 2020-04-13 14:56:46 | MicrosoftDocs/azure-docs | https://api.github.com/repos/MicrosoftDocs/azure-docs | closed | Enable multi-turn during testing of follow-up prompts | Pri2 assigned-to-author cognitive-services/svc doc-bug qna-maker/subsvc triaged | Enable multi-turn during testing of follow-up prompts
When you test the question with follow-up prompts in the Test pane, select Enable multi-turn, and then enter your question. The response includes the follow-up prompts.
on screenshot not exists this option. Looks like description old and screen new.
---
#### Document Details
β *Do not edit this section. It is required for docs.microsoft.com β GitHub issue linking.*
* ID: 38f6b983-0c19-6439-78df-ea7bdab3f94e
* Version Independent ID: 15dc8197-fed8-a94f-4143-2799d5e6a002
* Content: [Multi-turn conversations - QnA Maker - Azure Cognitive Services](https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/multiturn-conversation)
* Content Source: [articles/cognitive-services/QnAMaker/How-To/multiturn-conversation.md](https://github.com/Microsoft/azure-docs/blob/master/articles/cognitive-services/QnAMaker/How-To/multiturn-conversation.md)
* Service: **cognitive-services**
* Sub-service: **qna-maker**
* GitHub Login: @diberry
* Microsoft Alias: **diberry** | 1.0 | Enable multi-turn during testing of follow-up prompts - Enable multi-turn during testing of follow-up prompts
When you test the question with follow-up prompts in the Test pane, select Enable multi-turn, and then enter your question. The response includes the follow-up prompts.
on screenshot not exists this option. Looks like description old and screen new.
---
#### Document Details
β *Do not edit this section. It is required for docs.microsoft.com β GitHub issue linking.*
* ID: 38f6b983-0c19-6439-78df-ea7bdab3f94e
* Version Independent ID: 15dc8197-fed8-a94f-4143-2799d5e6a002
* Content: [Multi-turn conversations - QnA Maker - Azure Cognitive Services](https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/multiturn-conversation)
* Content Source: [articles/cognitive-services/QnAMaker/How-To/multiturn-conversation.md](https://github.com/Microsoft/azure-docs/blob/master/articles/cognitive-services/QnAMaker/How-To/multiturn-conversation.md)
* Service: **cognitive-services**
* Sub-service: **qna-maker**
* GitHub Login: @diberry
* Microsoft Alias: **diberry** | non_main | enable multi turn during testing of follow up prompts enable multi turn during testing of follow up prompts when you test the question with follow up prompts in the test pane select enable multi turn and then enter your question the response includes the follow up prompts on screenshot not exists this option looks like description old and screen new document details β do not edit this section it is required for docs microsoft com β github issue linking id version independent id content content source service cognitive services sub service qna maker github login diberry microsoft alias diberry | 0 |
340 | 3,203,652,383 | IssuesEvent | 2015-10-02 20:10:05 | MDAnalysis/mdanalysis | https://api.github.com/repos/MDAnalysis/mdanalysis | closed | Source file locations | maintainability refactoring | Place all source files for compiled shared object files into the same folder as the final shared object file.
`*.pyx` files and cython-generated `*.c` would be in the same directory as the `*.so`. While external dependend C/C++/Fortran libraries are in dedicate `src` and `include` folders. See the following tree as an example.
```
MDAnalysis
|--lib
| |-- _distances.so
| |-- distances.pyx
| |-- distances.c
|-- coordinates
|-- _dcdmodule.so
|-- src
|-- dcd.c
|-- include
|-- dcd.h
```
This is standard see [numpy](https://github.com/numpy/numpy/tree/master/numpy/linalg/lapack_lite), [scipy](https://github.com/scipy/scipy/tree/master/scipy/spatial), [scikit-learn](https://github.com/scikit-learn/scikit-learn/tree/master/sklearn/svm/src). [mdtraj](https://github.com/mdtraj/mdtraj/tree/master/mdtraj/formats/xtc) | True | Source file locations - Place all source files for compiled shared object files into the same folder as the final shared object file.
`*.pyx` files and cython-generated `*.c` would be in the same directory as the `*.so`. While external dependend C/C++/Fortran libraries are in dedicate `src` and `include` folders. See the following tree as an example.
```
MDAnalysis
|--lib
| |-- _distances.so
| |-- distances.pyx
| |-- distances.c
|-- coordinates
|-- _dcdmodule.so
|-- src
|-- dcd.c
|-- include
|-- dcd.h
```
This is standard see [numpy](https://github.com/numpy/numpy/tree/master/numpy/linalg/lapack_lite), [scipy](https://github.com/scipy/scipy/tree/master/scipy/spatial), [scikit-learn](https://github.com/scikit-learn/scikit-learn/tree/master/sklearn/svm/src). [mdtraj](https://github.com/mdtraj/mdtraj/tree/master/mdtraj/formats/xtc) | main | source file locations place all source files for compiled shared object files into the same folder as the final shared object file pyx files and cython generated c would be in the same directory as the so while external dependend c c fortran libraries are in dedicate src and include folders see the following tree as an example mdanalysis lib distances so distances pyx distances c coordinates dcdmodule so src dcd c include dcd h this is standard see | 1 |
4,157 | 19,904,743,989 | IssuesEvent | 2022-01-25 11:35:24 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | opened | npm audit found vulnerabilities | restricted:maintainers type:bug work:frontend status:triage | ```
# npm audit report
ansi-html *
Severity: high
Uncontrolled Resource Consumption in ansi-html - https://github.com/advisories/GHSA-whgm-jr23-g3j9
fix available via `npm audit fix`
node_modules/ansi-html
webpack-hot-middleware 2.9.0 - 2.25.0
Depends on vulnerable versions of ansi-html
node_modules/webpack-hot-middleware
ansi-regex >2.1.1 <5.0.1
Severity: moderate
Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
fix available via `npm audit fix`
node_modules/ansi-align/node_modules/ansi-regex
node_modules/ansi-regex
node_modules/sveltedoc-parser/node_modules/ansi-regex
node_modules/wide-align/node_modules/ansi-regex
strip-ansi 4.0.0 - 5.2.0
Depends on vulnerable versions of ansi-regex
node_modules/ansi-align/node_modules/strip-ansi
node_modules/sveltedoc-parser/node_modules/string-width/node_modules/strip-ansi
node_modules/wide-align/node_modules/strip-ansi
string-width 2.1.0 - 4.1.0
Depends on vulnerable versions of strip-ansi
node_modules/ansi-align/node_modules/string-width
node_modules/sveltedoc-parser/node_modules/string-width
node_modules/wide-align/node_modules/string-width
ansi-align 3.0.0
Depends on vulnerable versions of string-width
node_modules/ansi-align
immer <9.0.6
Severity: critical
Prototype Pollution in immer - https://github.com/advisories/GHSA-33f9-j839-rf8h
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/immer
react-dev-utils 6.0.6-next.9b4009d7 - 12.0.0-next.60
Depends on vulnerable versions of immer
node_modules/react-dev-utils
@storybook/builder-webpack4 *
Depends on vulnerable versions of postcss
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/manager-webpack4
node_modules/@storybook/core-server
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/core-server
node_modules/@storybook/core
@storybook/svelte 6.2.0-alpha.0 - 6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
@storybook/builder-webpack5 <=6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack5
json-schema <0.4.0
Severity: moderate
json-schema is vulnerable to Prototype Pollution - https://github.com/advisories/GHSA-896r-f27r-55mw
fix available via `npm audit fix`
node_modules/json-schema
jsprim 0.3.0 - 1.4.1 || 2.0.0 - 2.0.1
Depends on vulnerable versions of json-schema
node_modules/jsprim
nanoid <3.1.31
Severity: moderate
Exposure of Sensitive Information to an Unauthorized Actor in nanoid - https://github.com/advisories/GHSA-qrpm-p2h7-hrv2
fix available via `npm audit fix`
node_modules/nanoid
node-fetch <2.6.7
Severity: high
node-fetch is vulnerable to Exposure of Sensitive Information to an Unauthorized Actor - https://github.com/advisories/GHSA-r683-j2x4-v87g
fix available via `npm audit fix`
node_modules/node-fetch
nth-check <2.0.1
Severity: moderate
Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr
fix available via `npm audit fix`
node_modules/nth-check
postcss <8.2.13
Severity: moderate
Regular Expression Denial of Service in postcss - https://github.com/advisories/GHSA-566m-qj78-rww5
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/@storybook/builder-webpack4/node_modules/postcss
node_modules/autoprefixer/node_modules/postcss
node_modules/css-loader/node_modules/postcss
node_modules/icss-utils/node_modules/postcss
node_modules/postcss-flexbugs-fixes/node_modules/postcss
node_modules/postcss-modules-extract-imports/node_modules/postcss
node_modules/postcss-modules-local-by-default/node_modules/postcss
node_modules/postcss-modules-scope/node_modules/postcss
node_modules/postcss-modules-values/node_modules/postcss
@storybook/builder-webpack4 *
Depends on vulnerable versions of postcss
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/manager-webpack4
node_modules/@storybook/core-server
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/core-server
node_modules/@storybook/core
@storybook/svelte 6.2.0-alpha.0 - 6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
autoprefixer 1.0.20131222 - 9.8.8
Depends on vulnerable versions of postcss
node_modules/autoprefixer
css-loader 0.15.0 - 4.3.0
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
Depends on vulnerable versions of postcss-modules-values
node_modules/css-loader
@storybook/manager-webpack4 *
Depends on vulnerable versions of css-loader
node_modules/@storybook/manager-webpack4
icss-utils <=4.1.1
Depends on vulnerable versions of postcss
node_modules/icss-utils
postcss-modules-local-by-default <=4.0.0-rc.4
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
node_modules/postcss-modules-local-by-default
postcss-modules-values <=4.0.0-rc.5
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
node_modules/postcss-modules-values
postcss-flexbugs-fixes <=4.2.1
Depends on vulnerable versions of postcss
node_modules/postcss-flexbugs-fixes
postcss-modules-extract-imports <=2.0.0
Depends on vulnerable versions of postcss
node_modules/postcss-modules-extract-imports
postcss-modules-scope <=2.2.0
Depends on vulnerable versions of postcss
node_modules/postcss-modules-scope
prismjs <1.25.0
Severity: moderate
Regular Expression Denial of Service in prismjs - https://github.com/advisories/GHSA-hqhp-5p83-hx96
fix available via `npm audit fix`
node_modules/prismjs
refractor <=3.4.0 || 4.0.0 - 4.1.1
Depends on vulnerable versions of prismjs
node_modules/refractor
tmpl <1.0.5
Severity: moderate
Regular Expression Denial of Service in tmpl - https://github.com/advisories/GHSA-jgrx-mgxx-jf9v
fix available via `npm audit fix`
node_modules/tmpl
33 vulnerabilities (22 moderate, 3 high, 8 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
``` | True | npm audit found vulnerabilities - ```
# npm audit report
ansi-html *
Severity: high
Uncontrolled Resource Consumption in ansi-html - https://github.com/advisories/GHSA-whgm-jr23-g3j9
fix available via `npm audit fix`
node_modules/ansi-html
webpack-hot-middleware 2.9.0 - 2.25.0
Depends on vulnerable versions of ansi-html
node_modules/webpack-hot-middleware
ansi-regex >2.1.1 <5.0.1
Severity: moderate
Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
fix available via `npm audit fix`
node_modules/ansi-align/node_modules/ansi-regex
node_modules/ansi-regex
node_modules/sveltedoc-parser/node_modules/ansi-regex
node_modules/wide-align/node_modules/ansi-regex
strip-ansi 4.0.0 - 5.2.0
Depends on vulnerable versions of ansi-regex
node_modules/ansi-align/node_modules/strip-ansi
node_modules/sveltedoc-parser/node_modules/string-width/node_modules/strip-ansi
node_modules/wide-align/node_modules/strip-ansi
string-width 2.1.0 - 4.1.0
Depends on vulnerable versions of strip-ansi
node_modules/ansi-align/node_modules/string-width
node_modules/sveltedoc-parser/node_modules/string-width
node_modules/wide-align/node_modules/string-width
ansi-align 3.0.0
Depends on vulnerable versions of string-width
node_modules/ansi-align
immer <9.0.6
Severity: critical
Prototype Pollution in immer - https://github.com/advisories/GHSA-33f9-j839-rf8h
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/immer
react-dev-utils 6.0.6-next.9b4009d7 - 12.0.0-next.60
Depends on vulnerable versions of immer
node_modules/react-dev-utils
@storybook/builder-webpack4 *
Depends on vulnerable versions of postcss
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/manager-webpack4
node_modules/@storybook/core-server
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/core-server
node_modules/@storybook/core
@storybook/svelte 6.2.0-alpha.0 - 6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
@storybook/builder-webpack5 <=6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack5
json-schema <0.4.0
Severity: moderate
json-schema is vulnerable to Prototype Pollution - https://github.com/advisories/GHSA-896r-f27r-55mw
fix available via `npm audit fix`
node_modules/json-schema
jsprim 0.3.0 - 1.4.1 || 2.0.0 - 2.0.1
Depends on vulnerable versions of json-schema
node_modules/jsprim
nanoid <3.1.31
Severity: moderate
Exposure of Sensitive Information to an Unauthorized Actor in nanoid - https://github.com/advisories/GHSA-qrpm-p2h7-hrv2
fix available via `npm audit fix`
node_modules/nanoid
node-fetch <2.6.7
Severity: high
node-fetch is vulnerable to Exposure of Sensitive Information to an Unauthorized Actor - https://github.com/advisories/GHSA-r683-j2x4-v87g
fix available via `npm audit fix`
node_modules/node-fetch
nth-check <2.0.1
Severity: moderate
Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr
fix available via `npm audit fix`
node_modules/nth-check
postcss <8.2.13
Severity: moderate
Regular Expression Denial of Service in postcss - https://github.com/advisories/GHSA-566m-qj78-rww5
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/@storybook/builder-webpack4/node_modules/postcss
node_modules/autoprefixer/node_modules/postcss
node_modules/css-loader/node_modules/postcss
node_modules/icss-utils/node_modules/postcss
node_modules/postcss-flexbugs-fixes/node_modules/postcss
node_modules/postcss-modules-extract-imports/node_modules/postcss
node_modules/postcss-modules-local-by-default/node_modules/postcss
node_modules/postcss-modules-scope/node_modules/postcss
node_modules/postcss-modules-values/node_modules/postcss
@storybook/builder-webpack4 *
Depends on vulnerable versions of postcss
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/manager-webpack4
node_modules/@storybook/core-server
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
Depends on vulnerable versions of @storybook/core-server
node_modules/@storybook/core
@storybook/svelte 6.2.0-alpha.0 - 6.4.12 || 6.5.0-alpha.1 - 6.5.0-alpha.5
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
autoprefixer 1.0.20131222 - 9.8.8
Depends on vulnerable versions of postcss
node_modules/autoprefixer
css-loader 0.15.0 - 4.3.0
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
Depends on vulnerable versions of postcss-modules-values
node_modules/css-loader
@storybook/manager-webpack4 *
Depends on vulnerable versions of css-loader
node_modules/@storybook/manager-webpack4
icss-utils <=4.1.1
Depends on vulnerable versions of postcss
node_modules/icss-utils
postcss-modules-local-by-default <=4.0.0-rc.4
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
node_modules/postcss-modules-local-by-default
postcss-modules-values <=4.0.0-rc.5
Depends on vulnerable versions of icss-utils
Depends on vulnerable versions of postcss
node_modules/postcss-modules-values
postcss-flexbugs-fixes <=4.2.1
Depends on vulnerable versions of postcss
node_modules/postcss-flexbugs-fixes
postcss-modules-extract-imports <=2.0.0
Depends on vulnerable versions of postcss
node_modules/postcss-modules-extract-imports
postcss-modules-scope <=2.2.0
Depends on vulnerable versions of postcss
node_modules/postcss-modules-scope
prismjs <1.25.0
Severity: moderate
Regular Expression Denial of Service in prismjs - https://github.com/advisories/GHSA-hqhp-5p83-hx96
fix available via `npm audit fix`
node_modules/prismjs
refractor <=3.4.0 || 4.0.0 - 4.1.1
Depends on vulnerable versions of prismjs
node_modules/refractor
tmpl <1.0.5
Severity: moderate
Regular Expression Denial of Service in tmpl - https://github.com/advisories/GHSA-jgrx-mgxx-jf9v
fix available via `npm audit fix`
node_modules/tmpl
33 vulnerabilities (22 moderate, 3 high, 8 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
``` | main | npm audit found vulnerabilities npm audit report ansi html severity high uncontrolled resource consumption in ansi html fix available via npm audit fix node modules ansi html webpack hot middleware depends on vulnerable versions of ansi html node modules webpack hot middleware ansi regex severity moderate inefficient regular expression complexity in chalk ansi regex fix available via npm audit fix node modules ansi align node modules ansi regex node modules ansi regex node modules sveltedoc parser node modules ansi regex node modules wide align node modules ansi regex strip ansi depends on vulnerable versions of ansi regex node modules ansi align node modules strip ansi node modules sveltedoc parser node modules string width node modules strip ansi node modules wide align node modules strip ansi string width depends on vulnerable versions of strip ansi node modules ansi align node modules string width node modules sveltedoc parser node modules string width node modules wide align node modules string width ansi align depends on vulnerable versions of string width node modules ansi align immer severity critical prototype pollution in immer fix available via npm audit fix force will install storybook addon essentials which is a breaking change node modules immer react dev utils next next depends on vulnerable versions of immer node modules react dev utils storybook builder depends on vulnerable versions of postcss depends on vulnerable versions of react dev utils node modules storybook builder storybook addon docs alpha depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook core node modules storybook addon docs storybook addon essentials alpha depends on vulnerable versions of storybook addon docs node modules storybook addon essentials storybook core server depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook manager node modules storybook core server storybook core alpha depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook core server node modules storybook core storybook svelte alpha alpha alpha depends on vulnerable versions of storybook core node modules storybook svelte storybook builder alpha alpha depends on vulnerable versions of react dev utils node modules storybook builder json schema severity moderate json schema is vulnerable to prototype pollution fix available via npm audit fix node modules json schema jsprim depends on vulnerable versions of json schema node modules jsprim nanoid severity moderate exposure of sensitive information to an unauthorized actor in nanoid fix available via npm audit fix node modules nanoid node fetch severity high node fetch is vulnerable to exposure of sensitive information to an unauthorized actor fix available via npm audit fix node modules node fetch nth check severity moderate inefficient regular expression complexity in nth check fix available via npm audit fix node modules nth check postcss severity moderate regular expression denial of service in postcss fix available via npm audit fix force will install storybook addon essentials which is a breaking change node modules storybook builder node modules postcss node modules autoprefixer node modules postcss node modules css loader node modules postcss node modules icss utils node modules postcss node modules postcss flexbugs fixes node modules postcss node modules postcss modules extract imports node modules postcss node modules postcss modules local by default node modules postcss node modules postcss modules scope node modules postcss node modules postcss modules values node modules postcss storybook builder depends on vulnerable versions of postcss depends on vulnerable versions of react dev utils node modules storybook builder storybook addon docs alpha depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook core node modules storybook addon docs storybook addon essentials alpha depends on vulnerable versions of storybook addon docs node modules storybook addon essentials storybook core server depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook manager node modules storybook core server storybook core alpha depends on vulnerable versions of storybook builder depends on vulnerable versions of storybook core server node modules storybook core storybook svelte alpha alpha alpha depends on vulnerable versions of storybook core node modules storybook svelte autoprefixer depends on vulnerable versions of postcss node modules autoprefixer css loader depends on vulnerable versions of icss utils depends on vulnerable versions of postcss depends on vulnerable versions of postcss modules values node modules css loader storybook manager depends on vulnerable versions of css loader node modules storybook manager icss utils depends on vulnerable versions of postcss node modules icss utils postcss modules local by default rc depends on vulnerable versions of icss utils depends on vulnerable versions of postcss node modules postcss modules local by default postcss modules values rc depends on vulnerable versions of icss utils depends on vulnerable versions of postcss node modules postcss modules values postcss flexbugs fixes depends on vulnerable versions of postcss node modules postcss flexbugs fixes postcss modules extract imports depends on vulnerable versions of postcss node modules postcss modules extract imports postcss modules scope depends on vulnerable versions of postcss node modules postcss modules scope prismjs severity moderate regular expression denial of service in prismjs fix available via npm audit fix node modules prismjs refractor depends on vulnerable versions of prismjs node modules refractor tmpl severity moderate regular expression denial of service in tmpl fix available via npm audit fix node modules tmpl vulnerabilities moderate high critical to address issues that do not require attention run npm audit fix to address all issues including breaking changes run npm audit fix force | 1 |
5,674 | 29,507,751,979 | IssuesEvent | 2023-06-03 14:24:45 | jupyter-naas/awesome-notebooks | https://api.github.com/repos/jupyter-naas/awesome-notebooks | closed | Naas - Send image asset to Notion page | templates maintainer | This notebook sends an naas image asset to a Notion page. If your page is in a notion database, you will be able to vizualise the chart in Gallery (display page content). The image asset will be updated (deleted and added) to make sure the graph display is always up to date in Notion.
| True | Naas - Send image asset to Notion page - This notebook sends an naas image asset to a Notion page. If your page is in a notion database, you will be able to vizualise the chart in Gallery (display page content). The image asset will be updated (deleted and added) to make sure the graph display is always up to date in Notion.
| main | naas send image asset to notion page this notebook sends an naas image asset to a notion page if your page is in a notion database you will be able to vizualise the chart in gallery display page content the image asset will be updated deleted and added to make sure the graph display is always up to date in notion | 1 |
2,954 | 10,603,714,677 | IssuesEvent | 2019-10-10 16:33:35 | dzavalishin/phantomuserland | https://api.github.com/repos/dzavalishin/phantomuserland | closed | Need mem debug in debug win | Component-Kernel Maintainability enhancement good first issue help wanted | - persistent map
- physical map
- va alloc map
write a code to show image of allocation status for low level allocator code?
use for all maps based on it?
| True | Need mem debug in debug win - - persistent map
- physical map
- va alloc map
write a code to show image of allocation status for low level allocator code?
use for all maps based on it?
| main | need mem debug in debug win persistent map physical map va alloc map write a code to show image of allocation status for low level allocator code use for all maps based on it | 1 |
2,270 | 8,031,418,154 | IssuesEvent | 2018-07-28 01:18:41 | MDAnalysis/mdanalysis | https://api.github.com/repos/MDAnalysis/mdanalysis | opened | removed untested lib.mdamath.one_to_many_pointers() function | Component-lib Difficulty-easy maintainability | **Expected behavior**
Code in `lib/mdamath.py` should be used elsewhere in MDAnalysis or at least be tested if it is considered generally useful.
**Actual behavior**
The `lib.mdamath.one_to_many_pointers` function
https://github.com/MDAnalysis/mdanalysis/blob/461aadf6733d234e0913bae774a6312a208ede27/package/MDAnalysis/lib/mdamath.py#L253 is not used anywhere (`git grep one_to_many_pointers` shows nothing else) and it is not covered by tests, as shown by https://codecov.io/gh/MDAnalysis/mdanalysis/src/461aadf6733d234e0913bae774a6312a208ede27/package/MDAnalysis/lib/mdamath.py#L253
**Currently version of MDAnalysis**
Latest develop (0.18.1-dev).
| True | removed untested lib.mdamath.one_to_many_pointers() function - **Expected behavior**
Code in `lib/mdamath.py` should be used elsewhere in MDAnalysis or at least be tested if it is considered generally useful.
**Actual behavior**
The `lib.mdamath.one_to_many_pointers` function
https://github.com/MDAnalysis/mdanalysis/blob/461aadf6733d234e0913bae774a6312a208ede27/package/MDAnalysis/lib/mdamath.py#L253 is not used anywhere (`git grep one_to_many_pointers` shows nothing else) and it is not covered by tests, as shown by https://codecov.io/gh/MDAnalysis/mdanalysis/src/461aadf6733d234e0913bae774a6312a208ede27/package/MDAnalysis/lib/mdamath.py#L253
**Currently version of MDAnalysis**
Latest develop (0.18.1-dev).
| main | removed untested lib mdamath one to many pointers function expected behavior code in lib mdamath py should be used elsewhere in mdanalysis or at least be tested if it is considered generally useful actual behavior the lib mdamath one to many pointers function is not used anywhere git grep one to many pointers shows nothing else and it is not covered by tests as shown by currently version of mdanalysis latest develop dev | 1 |
266 | 3,025,489,618 | IssuesEvent | 2015-08-03 09:00:25 | mesosphere/marathon | https://api.github.com/repos/mesosphere/marathon | closed | Run Integration Tests with Java 8 as well | OKR Maintainability | As a preparation to https://github.com/mesosphere/marathon/issues/1544 (upgrading to Java 8), we should run our Integration Tests against Java 8 as well. | True | Run Integration Tests with Java 8 as well - As a preparation to https://github.com/mesosphere/marathon/issues/1544 (upgrading to Java 8), we should run our Integration Tests against Java 8 as well. | main | run integration tests with java as well as a preparation to upgrading to java we should run our integration tests against java as well | 1 |
3,050 | 11,402,099,076 | IssuesEvent | 2020-01-31 01:49:22 | backdrop-ops/contrib | https://api.github.com/repos/backdrop-ops/contrib | closed | Application to join: argiepiano (and port of HMS Field) | Maintainer application Port in progress | **The name of your module, theme, or layout**
HMS Field
**(Optional) Post a link here to an issue in the drupal.org queue notifying Drupal 7 maintainers that you are working on a Backdrop port of their project**
https://www.drupal.org/project/hms_field/issues/3108556
**If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)**
YES
**Post a link to your new Backdrop project under your own GitHub account**
https://github.com/argiepiano/hms_field
Once we have a chance to review your project, we may provide feedback that's meant to be helpful. If everything checks out, you will be invited to the @backdrop-contrib group, and will be able to transfer the project π
| True | Application to join: argiepiano (and port of HMS Field) - **The name of your module, theme, or layout**
HMS Field
**(Optional) Post a link here to an issue in the drupal.org queue notifying Drupal 7 maintainers that you are working on a Backdrop port of their project**
https://www.drupal.org/project/hms_field/issues/3108556
**If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)**
YES
**Post a link to your new Backdrop project under your own GitHub account**
https://github.com/argiepiano/hms_field
Once we have a chance to review your project, we may provide feedback that's meant to be helpful. If everything checks out, you will be invited to the @backdrop-contrib group, and will be able to transfer the project π
| main | application to join argiepiano and port of hms field the name of your module theme or layout hms field optional post a link here to an issue in the drupal org queue notifying drupal maintainers that you are working on a backdrop port of their project if you have chosen option or above do you agree to the yes post a link to your new backdrop project under your own github account once we have a chance to review your project we may provide feedback that s meant to be helpful if everything checks out you will be invited to the backdrop contrib group and will be able to transfer the project π | 1 |
4,327 | 21,779,668,534 | IssuesEvent | 2022-05-13 17:20:48 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | closed | npm audit found vulnerabilities | type: bug work: frontend status: blocked restricted: maintainers | ```
# npm audit report
ansi-html *
Severity: high
Uncontrolled Resource Consumption in ansi-html - https://github.com/advisories/GHSA-whgm-jr23-g3j9
fix available via `npm audit fix`
node_modules/ansi-html
webpack-hot-middleware 2.9.0 - 2.25.0
Depends on vulnerable versions of ansi-html
node_modules/webpack-hot-middleware
ansi-regex >2.1.1 <5.0.1
Severity: moderate
Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
fix available via `npm audit fix`
node_modules/ansi-align/node_modules/ansi-regex
node_modules/ansi-regex
node_modules/sveltedoc-parser/node_modules/ansi-regex
node_modules/wide-align/node_modules/ansi-regex
strip-ansi 4.0.0 - 5.2.0
Depends on vulnerable versions of ansi-regex
node_modules/ansi-align/node_modules/strip-ansi
node_modules/sveltedoc-parser/node_modules/string-width/node_modules/strip-ansi
node_modules/wide-align/node_modules/strip-ansi
string-width 2.1.0 - 4.1.0
Depends on vulnerable versions of strip-ansi
node_modules/ansi-align/node_modules/string-width
node_modules/sveltedoc-parser/node_modules/string-width
node_modules/wide-align/node_modules/string-width
ansi-align 3.0.0
Depends on vulnerable versions of string-width
node_modules/ansi-align
immer <9.0.6
Severity: critical
Prototype Pollution in immer - https://github.com/advisories/GHSA-33f9-j839-rf8h
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/immer
react-dev-utils 6.0.6-next.9b4009d7 - 12.0.0-next.37
Depends on vulnerable versions of immer
node_modules/react-dev-utils
@storybook/builder-webpack4 *
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
node_modules/@storybook/core-server
@storybook/builder-webpack5 *
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack5
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
node_modules/@storybook/core
@storybook/svelte >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
@storybook/addon-svelte-csf >=1.0.1
Depends on vulnerable versions of @storybook/svelte
node_modules/@storybook/addon-svelte-csf
json-schema <0.4.0
Severity: moderate
json-schema is vulnerable to Prototype Pollution - https://github.com/advisories/GHSA-896r-f27r-55mw
fix available via `npm audit fix`
node_modules/json-schema
jsprim 0.3.0 - 1.4.1 || 2.0.0 - 2.0.1
Depends on vulnerable versions of json-schema
node_modules/jsprim
nth-check <2.0.1
Severity: moderate
Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr
fix available via `npm audit fix`
node_modules/nth-check
prismjs <1.25.0
Severity: moderate
Regular Expression Denial of Service in prismjs - https://github.com/advisories/GHSA-hqhp-5p83-hx96
fix available via `npm audit fix`
node_modules/prismjs
refractor <=3.4.0 || 4.0.0 - 4.1.1
Depends on vulnerable versions of prismjs
node_modules/refractor
tmpl <1.0.5
Severity: moderate
Regular Expression Denial of Service in tmpl - https://github.com/advisories/GHSA-jgrx-mgxx-jf9v
fix available via `npm audit fix`
node_modules/tmpl
22 vulnerabilities (10 moderate, 2 high, 10 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
``` | True | npm audit found vulnerabilities - ```
# npm audit report
ansi-html *
Severity: high
Uncontrolled Resource Consumption in ansi-html - https://github.com/advisories/GHSA-whgm-jr23-g3j9
fix available via `npm audit fix`
node_modules/ansi-html
webpack-hot-middleware 2.9.0 - 2.25.0
Depends on vulnerable versions of ansi-html
node_modules/webpack-hot-middleware
ansi-regex >2.1.1 <5.0.1
Severity: moderate
Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
fix available via `npm audit fix`
node_modules/ansi-align/node_modules/ansi-regex
node_modules/ansi-regex
node_modules/sveltedoc-parser/node_modules/ansi-regex
node_modules/wide-align/node_modules/ansi-regex
strip-ansi 4.0.0 - 5.2.0
Depends on vulnerable versions of ansi-regex
node_modules/ansi-align/node_modules/strip-ansi
node_modules/sveltedoc-parser/node_modules/string-width/node_modules/strip-ansi
node_modules/wide-align/node_modules/strip-ansi
string-width 2.1.0 - 4.1.0
Depends on vulnerable versions of strip-ansi
node_modules/ansi-align/node_modules/string-width
node_modules/sveltedoc-parser/node_modules/string-width
node_modules/wide-align/node_modules/string-width
ansi-align 3.0.0
Depends on vulnerable versions of string-width
node_modules/ansi-align
immer <9.0.6
Severity: critical
Prototype Pollution in immer - https://github.com/advisories/GHSA-33f9-j839-rf8h
fix available via `npm audit fix --force`
Will install @storybook/addon-essentials@6.1.21, which is a breaking change
node_modules/immer
react-dev-utils 6.0.6-next.9b4009d7 - 12.0.0-next.37
Depends on vulnerable versions of immer
node_modules/react-dev-utils
@storybook/builder-webpack4 *
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack4
@storybook/addon-docs >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack4
node_modules/@storybook/addon-docs
@storybook/addon-essentials >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/addon-docs
node_modules/@storybook/addon-essentials
@storybook/core-server *
Depends on vulnerable versions of @storybook/builder-webpack4
node_modules/@storybook/core-server
@storybook/builder-webpack5 *
Depends on vulnerable versions of react-dev-utils
node_modules/@storybook/builder-webpack5
@storybook/core >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/builder-webpack5
node_modules/@storybook/core
@storybook/svelte >=6.2.0-alpha.0
Depends on vulnerable versions of @storybook/core
node_modules/@storybook/svelte
@storybook/addon-svelte-csf >=1.0.1
Depends on vulnerable versions of @storybook/svelte
node_modules/@storybook/addon-svelte-csf
json-schema <0.4.0
Severity: moderate
json-schema is vulnerable to Prototype Pollution - https://github.com/advisories/GHSA-896r-f27r-55mw
fix available via `npm audit fix`
node_modules/json-schema
jsprim 0.3.0 - 1.4.1 || 2.0.0 - 2.0.1
Depends on vulnerable versions of json-schema
node_modules/jsprim
nth-check <2.0.1
Severity: moderate
Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr
fix available via `npm audit fix`
node_modules/nth-check
prismjs <1.25.0
Severity: moderate
Regular Expression Denial of Service in prismjs - https://github.com/advisories/GHSA-hqhp-5p83-hx96
fix available via `npm audit fix`
node_modules/prismjs
refractor <=3.4.0 || 4.0.0 - 4.1.1
Depends on vulnerable versions of prismjs
node_modules/refractor
tmpl <1.0.5
Severity: moderate
Regular Expression Denial of Service in tmpl - https://github.com/advisories/GHSA-jgrx-mgxx-jf9v
fix available via `npm audit fix`
node_modules/tmpl
22 vulnerabilities (10 moderate, 2 high, 10 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
``` | main | npm audit found vulnerabilities npm audit report ansi html severity high uncontrolled resource consumption in ansi html fix available via npm audit fix node modules ansi html webpack hot middleware depends on vulnerable versions of ansi html node modules webpack hot middleware ansi regex severity moderate inefficient regular expression complexity in chalk ansi regex fix available via npm audit fix node modules ansi align node modules ansi regex node modules ansi regex node modules sveltedoc parser node modules ansi regex node modules wide align node modules ansi regex strip ansi depends on vulnerable versions of ansi regex node modules ansi align node modules strip ansi node modules sveltedoc parser node modules string width node modules strip ansi node modules wide align node modules strip ansi string width depends on vulnerable versions of strip ansi node modules ansi align node modules string width node modules sveltedoc parser node modules string width node modules wide align node modules string width ansi align depends on vulnerable versions of string width node modules ansi align immer severity critical prototype pollution in immer fix available via npm audit fix force will install storybook addon essentials which is a breaking change node modules immer react dev utils next next depends on vulnerable versions of immer node modules react dev utils storybook builder depends on vulnerable versions of react dev utils node modules storybook builder storybook addon docs alpha depends on vulnerable versions of storybook builder node modules storybook addon docs storybook addon essentials alpha depends on vulnerable versions of storybook addon docs node modules storybook addon essentials storybook core server depends on vulnerable versions of storybook builder node modules storybook core server storybook builder depends on vulnerable versions of react dev utils node modules storybook builder storybook core alpha depends on vulnerable versions of storybook builder node modules storybook core storybook svelte alpha depends on vulnerable versions of storybook core node modules storybook svelte storybook addon svelte csf depends on vulnerable versions of storybook svelte node modules storybook addon svelte csf json schema severity moderate json schema is vulnerable to prototype pollution fix available via npm audit fix node modules json schema jsprim depends on vulnerable versions of json schema node modules jsprim nth check severity moderate inefficient regular expression complexity in nth check fix available via npm audit fix node modules nth check prismjs severity moderate regular expression denial of service in prismjs fix available via npm audit fix node modules prismjs refractor depends on vulnerable versions of prismjs node modules refractor tmpl severity moderate regular expression denial of service in tmpl fix available via npm audit fix node modules tmpl vulnerabilities moderate high critical to address issues that do not require attention run npm audit fix to address all issues including breaking changes run npm audit fix force | 1 |
13,216 | 9,916,988,941 | IssuesEvent | 2019-06-28 21:54:54 | cityofaustin/atd-mobility-project-database | https://api.github.com/repos/cityofaustin/atd-mobility-project-database | closed | Get JD all the documents he needs for discover research | Impact: 4-None Project: Mobility Project Database Service: PM Type: Communication Workgroup: ATSD |
> Thank you for your patience with the saga that is municipal purchasing processes.Β We're thrilled to finally get your eyes on our ATD'sΒ Mobility Project Database project.Β
>
>
> Here are some documents to get you oriented:
>
> - [Project Brief](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1KQi6OWy4g_JXgU6LQSDcUJCXu9K75Me8JYXxGWtHHzo%2Fedit&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400808554&sdata=OwYmKC%2FdMY0LTC3VqOscu5byzI%2F0JZH9xKSKwV7EY0s%3D&reserved=0)Β - high-level project planΒ
> - [Interim Project Database](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400818548&sdata=UGVYt%2FY8X5fYTvAsCPe5peTf4n7nGuoUyEzixgCvP0E%3D&reserved=0)Β - This describes the Access application that we are using as the basis for the Knack application. I've added screenshots, a diagram of the data structure, and other resources there to the documentΒ but don't hesitate to let us know if you need any additional information. Nathan, cc'ed, built the application and knows all the things.
>
>
> I would love to complete this discovery engagement with:Β
>
> - A Zappfy proposal for implementing a proof-of-concept. This PoC would demonstrateΒ two critical pieces of functionality:Β
>
> - The ability to performΒ [this type ofΒ reporting](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.8o1k64p3kkdv&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400828542&sdata=ZxZyNgNbdjsF8exAMK3Kz1tRWpfzBNtIDz%2FvO93j%2BcE%3D&reserved=0). This does not have to be fully built in Knack. I'm actually very interested in the idea integrating with a freestanding BI platform such asΒ [PowerBI](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpowerbi.microsoft.com%2Fen-us%2F&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400828542&sdata=MQPzxuP6OMUODEVhMXnLSWZA5y1EYgVYwp%2F3oBASk5Y%3D&reserved=0)Β (available to us for free at the City) or Google Data Studio. Look forward to hearing your thoughts on that.Β π
> - Basic integration with aΒ spatial database[](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.fb3vjogwsid7&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400838536&sdata=G5oZG1fzGE8wb7Roz7Tdh9Sd50ojTCNfQBwzsU9MsfE%3D&reserved=0)Β [as described here](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.fb3vjogwsid7&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400838536&sdata=G5oZG1fzGE8wb7Roz7Tdh9Sd50ojTCNfQBwzsU9MsfE%3D&reserved=0). We have some solid GIS expertise on our team that could advise on approaches.Β
>
> - AnΒ high-level understanding of what a Knack implementation of the Mobility Project Database looks like
>
> - Level-of-effort/cost
> - Timeframe
> - Additional resources needed
> - Known functional limitations and/or risks
>
>
> Let me know what you're thinking, and what you'd suggest scheduling-wise. I'm looking at 4pm slots next week and it's not promising, but either 4pm the week of 7/8 or an early morning sooner than that. | 1.0 | Get JD all the documents he needs for discover research -
> Thank you for your patience with the saga that is municipal purchasing processes.Β We're thrilled to finally get your eyes on our ATD'sΒ Mobility Project Database project.Β
>
>
> Here are some documents to get you oriented:
>
> - [Project Brief](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1KQi6OWy4g_JXgU6LQSDcUJCXu9K75Me8JYXxGWtHHzo%2Fedit&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400808554&sdata=OwYmKC%2FdMY0LTC3VqOscu5byzI%2F0JZH9xKSKwV7EY0s%3D&reserved=0)Β - high-level project planΒ
> - [Interim Project Database](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400818548&sdata=UGVYt%2FY8X5fYTvAsCPe5peTf4n7nGuoUyEzixgCvP0E%3D&reserved=0)Β - This describes the Access application that we are using as the basis for the Knack application. I've added screenshots, a diagram of the data structure, and other resources there to the documentΒ but don't hesitate to let us know if you need any additional information. Nathan, cc'ed, built the application and knows all the things.
>
>
> I would love to complete this discovery engagement with:Β
>
> - A Zappfy proposal for implementing a proof-of-concept. This PoC would demonstrateΒ two critical pieces of functionality:Β
>
> - The ability to performΒ [this type ofΒ reporting](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.8o1k64p3kkdv&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400828542&sdata=ZxZyNgNbdjsF8exAMK3Kz1tRWpfzBNtIDz%2FvO93j%2BcE%3D&reserved=0). This does not have to be fully built in Knack. I'm actually very interested in the idea integrating with a freestanding BI platform such asΒ [PowerBI](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpowerbi.microsoft.com%2Fen-us%2F&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400828542&sdata=MQPzxuP6OMUODEVhMXnLSWZA5y1EYgVYwp%2F3oBASk5Y%3D&reserved=0)Β (available to us for free at the City) or Google Data Studio. Look forward to hearing your thoughts on that.Β π
> - Basic integration with aΒ spatial database[](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.fb3vjogwsid7&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400838536&sdata=G5oZG1fzGE8wb7Roz7Tdh9Sd50ojTCNfQBwzsU9MsfE%3D&reserved=0)Β [as described here](https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1wja5Hfnchu93j4w7ATYNKO_-5lWixEMyEkulGqIe2l8%2Fedit%23heading%3Dh.fb3vjogwsid7&data=02%7C01%7CAmenity.Applewhite%40austintexas.gov%7C854bf8d629a24e85804608d6fa95fb04%7C5c5e19f6a6ab4b45b1d0be4608a9a67f%7C0%7C0%7C636971919400838536&sdata=G5oZG1fzGE8wb7Roz7Tdh9Sd50ojTCNfQBwzsU9MsfE%3D&reserved=0). We have some solid GIS expertise on our team that could advise on approaches.Β
>
> - AnΒ high-level understanding of what a Knack implementation of the Mobility Project Database looks like
>
> - Level-of-effort/cost
> - Timeframe
> - Additional resources needed
> - Known functional limitations and/or risks
>
>
> Let me know what you're thinking, and what you'd suggest scheduling-wise. I'm looking at 4pm slots next week and it's not promising, but either 4pm the week of 7/8 or an early morning sooner than that. | non_main | get jd all the documents he needs for discover research thank you for your patience with the saga that is municipal purchasing processes Β we re thrilled to finally get your eyes on our atd sΒ mobility project database project Β here are some documents to get you oriented Β high level project planΒ Β this describes the access application that we are using as the basis for the knack application i ve added screenshots a diagram of the data structure and other resources there to the documentΒ but don t hesitate to let us know if you need any additional information nathan cc ed built the application and knows all the things i would love to complete this discovery engagement with Β a zappfy proposal for implementing a proof of concept this poc would demonstrateΒ two critical pieces of functionality Β the ability to performΒ this does not have to be fully built in knack i m actually very interested in the idea integrating with a freestanding bi platform such asΒ Β available to us for free at the city or google data studio look forward to hearing your thoughts on that Β π basic integration with aΒ spatial database Β we have some solid gis expertise on our team that could advise on approaches Β anΒ high level understanding of what a knack implementation of the mobility project database looks like level of effort cost timeframe additional resources needed known functional limitations and or risks let me know what you re thinking and what you d suggest scheduling wise i m looking at slots next week and it s not promising but either the week of or an early morning sooner than that | 0 |
187,842 | 14,433,089,806 | IssuesEvent | 2020-12-07 03:50:44 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | TheThingsNetwork/go-utils: influx/writer_test.go; 63 LoC | fresh medium test |
Found a possible issue in [TheThingsNetwork/go-utils](https://www.github.com/TheThingsNetwork/go-utils) at [influx/writer_test.go](https://github.com/TheThingsNetwork/go-utils/blob/b3493662e4bf22a6dd615f7b80a195afe52c6301/influx/writer_test.go#L67-L129)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable mw used in defer or goroutine at line 88
[Click here to see the code in its original context.](https://github.com/TheThingsNetwork/go-utils/blob/b3493662e4bf22a6dd615f7b80a195afe52c6301/influx/writer_test.go#L67-L129)
<details>
<summary>Click here to show the 63 line(s) of Go which triggered the analyzer.</summary>
```go
for _, mw := range []uint{
0, 1, 100,
} {
mock := newMockBatchPointWriter(a)
w := NewBatchingWriter(ttnlog.Get(), mock, WithScalingInterval(ScalingInterval), WithInstanceLimit(uint(mw)))
checkCh := make(chan struct{})
wg := &sync.WaitGroup{}
expected := make(map[*influxdb.Point]bool)
for i := 0; i < NumEntries; i++ {
p := &influxdb.Point{}
expected[p] = true
if i == 0 {
// one goroutine is spawned after the inital write, it should stay alive forever
err := w.Write(influxdb.BatchPointsConfig{}, p)
a.So(err, s.ShouldEqual, mock.results[p])
go func() {
defer leaktest.Check(t)()
checkCh <- struct{}{}
if mw < 0 {
<-checkCh
return
}
for {
select {
case <-time.After(ScalingInterval):
if mw == 0 {
a.So(w.active, s.ShouldEqual, 1)
}
if mw > 0 {
a.So(w.active, s.ShouldBeBetweenOrEqual, 1, mw+1)
}
case <-checkCh:
return
}
}
}()
// wait for leaktest to count active goroutines
<-checkCh
continue
}
wg.Add(1)
go func() {
err := w.Write(influxdb.BatchPointsConfig{}, p)
mock.RLock()
a.So(err, s.ShouldEqual, mock.results[p])
mock.RUnlock()
wg.Done()
}()
}
wg.Wait()
close(checkCh)
a.So(mock.results, s.ShouldHaveLength, len(expected))
for p := range expected {
a.So(mock.results, s.ShouldContainKey, p)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: b3493662e4bf22a6dd615f7b80a195afe52c6301
| 1.0 | TheThingsNetwork/go-utils: influx/writer_test.go; 63 LoC -
Found a possible issue in [TheThingsNetwork/go-utils](https://www.github.com/TheThingsNetwork/go-utils) at [influx/writer_test.go](https://github.com/TheThingsNetwork/go-utils/blob/b3493662e4bf22a6dd615f7b80a195afe52c6301/influx/writer_test.go#L67-L129)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable mw used in defer or goroutine at line 88
[Click here to see the code in its original context.](https://github.com/TheThingsNetwork/go-utils/blob/b3493662e4bf22a6dd615f7b80a195afe52c6301/influx/writer_test.go#L67-L129)
<details>
<summary>Click here to show the 63 line(s) of Go which triggered the analyzer.</summary>
```go
for _, mw := range []uint{
0, 1, 100,
} {
mock := newMockBatchPointWriter(a)
w := NewBatchingWriter(ttnlog.Get(), mock, WithScalingInterval(ScalingInterval), WithInstanceLimit(uint(mw)))
checkCh := make(chan struct{})
wg := &sync.WaitGroup{}
expected := make(map[*influxdb.Point]bool)
for i := 0; i < NumEntries; i++ {
p := &influxdb.Point{}
expected[p] = true
if i == 0 {
// one goroutine is spawned after the inital write, it should stay alive forever
err := w.Write(influxdb.BatchPointsConfig{}, p)
a.So(err, s.ShouldEqual, mock.results[p])
go func() {
defer leaktest.Check(t)()
checkCh <- struct{}{}
if mw < 0 {
<-checkCh
return
}
for {
select {
case <-time.After(ScalingInterval):
if mw == 0 {
a.So(w.active, s.ShouldEqual, 1)
}
if mw > 0 {
a.So(w.active, s.ShouldBeBetweenOrEqual, 1, mw+1)
}
case <-checkCh:
return
}
}
}()
// wait for leaktest to count active goroutines
<-checkCh
continue
}
wg.Add(1)
go func() {
err := w.Write(influxdb.BatchPointsConfig{}, p)
mock.RLock()
a.So(err, s.ShouldEqual, mock.results[p])
mock.RUnlock()
wg.Done()
}()
}
wg.Wait()
close(checkCh)
a.So(mock.results, s.ShouldHaveLength, len(expected))
for p := range expected {
a.So(mock.results, s.ShouldContainKey, p)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: b3493662e4bf22a6dd615f7b80a195afe52c6301
| non_main | thethingsnetwork go utils influx writer test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable mw used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for mw range uint mock newmockbatchpointwriter a w newbatchingwriter ttnlog get mock withscalinginterval scalinginterval withinstancelimit uint mw checkch make chan struct wg sync waitgroup expected make map bool for i i numentries i p influxdb point expected true if i one goroutine is spawned after the inital write it should stay alive forever err w write influxdb batchpointsconfig p a so err s shouldequal mock results go func defer leaktest check t checkch struct if mw checkch return for select case time after scalinginterval if mw a so w active s shouldequal if mw a so w active s shouldbebetweenorequal mw case checkch return wait for leaktest to count active goroutines checkch continue wg add go func err w write influxdb batchpointsconfig p mock rlock a so err s shouldequal mock results mock runlock wg done wg wait close checkch a so mock results s shouldhavelength len expected for p range expected a so mock results s shouldcontainkey p leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 0 |
47,583 | 7,332,901,215 | IssuesEvent | 2018-03-05 17:39:31 | docker/cli | https://api.github.com/repos/docker/cli | closed | CLI ref YAML generation script creating munged YAML | impact/documentation process/cherry-pick | Somehow the script is creating YAML with some of the letters missing from the extended description. See https://github.com/docker/docker.github.io/issues/5876#issuecomment-362043855. For some reason, the `Do` part of `Docker` is truncated in the extended description. It impacts at least the reference for `docker inspect` and not sure which others. Not sure which labels to put on this. | 1.0 | CLI ref YAML generation script creating munged YAML - Somehow the script is creating YAML with some of the letters missing from the extended description. See https://github.com/docker/docker.github.io/issues/5876#issuecomment-362043855. For some reason, the `Do` part of `Docker` is truncated in the extended description. It impacts at least the reference for `docker inspect` and not sure which others. Not sure which labels to put on this. | non_main | cli ref yaml generation script creating munged yaml somehow the script is creating yaml with some of the letters missing from the extended description see for some reason the do part of docker is truncated in the extended description it impacts at least the reference for docker inspect and not sure which others not sure which labels to put on this | 0 |
2,607 | 8,848,722,250 | IssuesEvent | 2019-01-08 08:10:11 | MarcusWolschon/osmeditor4android | https://api.github.com/repos/MarcusWolschon/osmeditor4android | opened | Support "wiki" attribute in preset link object | Enhancement Maintainability | JOSM now has a wiki attribute for map feature entries that cuts down massively on the number of href entries. | True | Support "wiki" attribute in preset link object - JOSM now has a wiki attribute for map feature entries that cuts down massively on the number of href entries. | main | support wiki attribute in preset link object josm now has a wiki attribute for map feature entries that cuts down massively on the number of href entries | 1 |
5,411 | 27,158,360,162 | IssuesEvent | 2023-02-17 09:48:48 | OpenRefine/OpenRefine | https://api.github.com/repos/OpenRefine/OpenRefine | opened | Fix licensing issues during maven test and packaging | enhancement maintainability maven dependencies CI/CD | There are a few warnings regarding license information for some dependencies (transitive as well).
We can handle this noise and be a good citizen of open source license information for our dependencies by using and providing more context through `license-maven-plugin:download-licenses`
Below are the current warnings sometimes exhibited depending on connectivity issues:
### To Reproduce
Steps to reproduce the behavior:
1. First, do `mvn test`
2. Then, notice WARNINGs which happens because of the `generate-sources` lifecycle event in maven which happens during test/packaging.
### Current Results
```
[INFO] --- license-maven-plugin:2.0.0:download-licenses (default) @ packaging ---
[WARNING] No license information available for: oro:oro:2.0.8
[WARNING] Unable to retrieve license from URL 'https://oss.oracle.com/licenses/CDDL+GPL-1.1' for dependency 'javax.servlet:javax.servlet-api:4.0.1': Connect to oss.oracle.com:443 [oss.oracle.com/138.1.117.31] failed: Read timed out
[WARNING] Unable to retrieve license from URL 'https://raw.githubusercontent.com/OpenRefine/OpenRefine/master/LICENSE.txt' for dependency 'org.openrefine:server:3.8-SNAPSHOT': The requested name is valid, but no data of the requested type was found (raw.githubusercontent.com)
[WARNING] There were 3 download errors - check the warnings above
```
### Expected Behavior
The maven plugin: `download-licenses` has several configuration options and we can fallout with ignoring the errors and hiding them through a config flag, but to be a good citizen of open source we should provide manual license information through a `licensesConfigFile` which we can simply store as `manual_licenses.xml` in the `/packaging` folder.
This will eliminate warnings during CI as well as locally for folks that experience connectivity issues occasionally (like me!).
It will also provide the right context and license information for the dependencies that are dual or triple licensed or that no longer are reachable via a URL.
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Versions<!-- (please complete the following information)-->
- Operating System: Windows 11
- Browser Version: n/a
- JRE or JDK Version: JDK 17
- OpenRefine: master branch
### Datasets
<!-- If you are allowed and are OK with making your data public, it would be awesome if you can include or attach the data causing the issue or a URL pointing to where the data is.
If you are concerned about keeping your data private, you can share it selectively by email to developers who work on the issue -->
### Additional context
I'm going to tackle this since I've done this before for another OSS project and I'm almost done with the basic configuration for a PR soon.
| True | Fix licensing issues during maven test and packaging - There are a few warnings regarding license information for some dependencies (transitive as well).
We can handle this noise and be a good citizen of open source license information for our dependencies by using and providing more context through `license-maven-plugin:download-licenses`
Below are the current warnings sometimes exhibited depending on connectivity issues:
### To Reproduce
Steps to reproduce the behavior:
1. First, do `mvn test`
2. Then, notice WARNINGs which happens because of the `generate-sources` lifecycle event in maven which happens during test/packaging.
### Current Results
```
[INFO] --- license-maven-plugin:2.0.0:download-licenses (default) @ packaging ---
[WARNING] No license information available for: oro:oro:2.0.8
[WARNING] Unable to retrieve license from URL 'https://oss.oracle.com/licenses/CDDL+GPL-1.1' for dependency 'javax.servlet:javax.servlet-api:4.0.1': Connect to oss.oracle.com:443 [oss.oracle.com/138.1.117.31] failed: Read timed out
[WARNING] Unable to retrieve license from URL 'https://raw.githubusercontent.com/OpenRefine/OpenRefine/master/LICENSE.txt' for dependency 'org.openrefine:server:3.8-SNAPSHOT': The requested name is valid, but no data of the requested type was found (raw.githubusercontent.com)
[WARNING] There were 3 download errors - check the warnings above
```
### Expected Behavior
The maven plugin: `download-licenses` has several configuration options and we can fallout with ignoring the errors and hiding them through a config flag, but to be a good citizen of open source we should provide manual license information through a `licensesConfigFile` which we can simply store as `manual_licenses.xml` in the `/packaging` folder.
This will eliminate warnings during CI as well as locally for folks that experience connectivity issues occasionally (like me!).
It will also provide the right context and license information for the dependencies that are dual or triple licensed or that no longer are reachable via a URL.
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Versions<!-- (please complete the following information)-->
- Operating System: Windows 11
- Browser Version: n/a
- JRE or JDK Version: JDK 17
- OpenRefine: master branch
### Datasets
<!-- If you are allowed and are OK with making your data public, it would be awesome if you can include or attach the data causing the issue or a URL pointing to where the data is.
If you are concerned about keeping your data private, you can share it selectively by email to developers who work on the issue -->
### Additional context
I'm going to tackle this since I've done this before for another OSS project and I'm almost done with the basic configuration for a PR soon.
| main | fix licensing issues during maven test and packaging there are a few warnings regarding license information for some dependencies transitive as well we can handle this noise and be a good citizen of open source license information for our dependencies by using and providing more context through license maven plugin download licenses below are the current warnings sometimes exhibited depending on connectivity issues to reproduce steps to reproduce the behavior first do mvn test then notice warnings which happens because of the generate sources lifecycle event in maven which happens during test packaging current results license maven plugin download licenses default packaging no license information available for oro oro unable to retrieve license from url for dependency javax servlet javax servlet api connect to oss oracle com failed read timed out unable to retrieve license from url for dependency org openrefine server snapshot the requested name is valid but no data of the requested type was found raw githubusercontent com there were download errors check the warnings above expected behavior the maven plugin download licenses has several configuration options and we can fallout with ignoring the errors and hiding them through a config flag but to be a good citizen of open source we should provide manual license information through a licensesconfigfile which we can simply store as manual licenses xml in the packaging folder this will eliminate warnings during ci as well as locally for folks that experience connectivity issues occasionally like me it will also provide the right context and license information for the dependencies that are dual or triple licensed or that no longer are reachable via a url screenshots versions operating system windows browser version n a jre or jdk version jdk openrefine master branch datasets if you are allowed and are ok with making your data public it would be awesome if you can include or attach the data causing the issue or a url pointing to where the data is if you are concerned about keeping your data private you can share it selectively by email to developers who work on the issue additional context i m going to tackle this since i ve done this before for another oss project and i m almost done with the basic configuration for a pr soon | 1 |
100,069 | 8,723,028,100 | IssuesEvent | 2018-12-09 18:06:02 | vladbbb/mathApp | https://api.github.com/repos/vladbbb/mathApp | closed | Test bug reports | medium priority test | Filling form, sending form, receiving report: with different kind inputs!
Related to #33
Estimated time: 4h | 1.0 | Test bug reports - Filling form, sending form, receiving report: with different kind inputs!
Related to #33
Estimated time: 4h | non_main | test bug reports filling form sending form receiving report with different kind inputs related to estimated time | 0 |
3,848 | 16,962,302,950 | IssuesEvent | 2021-06-29 06:31:52 | bromite/bromite | https://api.github.com/repos/bromite/bromite | closed | Add support for custom filters to be used with default filters | enhancement-without-maintainer | <!-- Welcome! Thanks for taking time to submit a feature request.
Have you searched the issue tracker? https://github.com/bromite/bromite/issues
Yes
Have you read the F.A.Q.s? https://github.com/bromite/bromite/blob/master/FAQ.md
Yes
Have you read the README? https://github.com/bromite/bromite/blob/master/README.md
Yes
Have you read the Wiki? https://github.com/bromite/bromite/wiki
Yes
If instead of a feature request you want to ask a question then please use the GitHub Discussions: https://github.com/bromite/bromite/discussions
-->
<!-- Do not submit feature requests for extensions support or adding a search engine. -->
### Is your feature request related to privacy?
Yes
<!-- Features that are not related to privacy are not considered. -->
### Is there a patch available for this feature somewhere?
I do not know
<!-- If yes then provide URL and license information. -->
### Describe the solution you would like
Ability to add custom filters like this so that we can use them with existing bromite filters.

<!-- A clear and concise description of what you want to happen.
Do not ask "I would like feature X which is available in browser Y"; such issues are closed immediately. -->
### Describe alternatives you have considered
Downloading the bromite filter database and adding it to them. But it is difficult to keep the filter database in sync with upstream then.
<!-- A clear and concise description of any alternative solutions or features you have considered. -->
| True | Add support for custom filters to be used with default filters - <!-- Welcome! Thanks for taking time to submit a feature request.
Have you searched the issue tracker? https://github.com/bromite/bromite/issues
Yes
Have you read the F.A.Q.s? https://github.com/bromite/bromite/blob/master/FAQ.md
Yes
Have you read the README? https://github.com/bromite/bromite/blob/master/README.md
Yes
Have you read the Wiki? https://github.com/bromite/bromite/wiki
Yes
If instead of a feature request you want to ask a question then please use the GitHub Discussions: https://github.com/bromite/bromite/discussions
-->
<!-- Do not submit feature requests for extensions support or adding a search engine. -->
### Is your feature request related to privacy?
Yes
<!-- Features that are not related to privacy are not considered. -->
### Is there a patch available for this feature somewhere?
I do not know
<!-- If yes then provide URL and license information. -->
### Describe the solution you would like
Ability to add custom filters like this so that we can use them with existing bromite filters.

<!-- A clear and concise description of what you want to happen.
Do not ask "I would like feature X which is available in browser Y"; such issues are closed immediately. -->
### Describe alternatives you have considered
Downloading the bromite filter database and adding it to them. But it is difficult to keep the filter database in sync with upstream then.
<!-- A clear and concise description of any alternative solutions or features you have considered. -->
| main | add support for custom filters to be used with default filters welcome thanks for taking time to submit a feature request have you searched the issue tracker yes have you read the f a q s yes have you read the readme yes have you read the wiki yes if instead of a feature request you want to ask a question then please use the github discussions is your feature request related to privacy yes is there a patch available for this feature somewhere i do not know describe the solution you would like ability to add custom filters like this so that we can use them with existing bromite filters a clear and concise description of what you want to happen do not ask i would like feature x which is available in browser y such issues are closed immediately describe alternatives you have considered downloading the bromite filter database and adding it to them but it is difficult to keep the filter database in sync with upstream then | 1 |
73,967 | 14,149,888,482 | IssuesEvent | 2020-11-11 02:00:27 | atomist/antlr | https://api.github.com/repos/atomist/antlr | closed | Code Inspection: Tslint on no-ac | code-inspection enhancement stale | ### array-type
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts:273`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts#L273): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts:295`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts#L295): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts:6416`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts#L6416): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts:6438`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts#L6438): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
### class-name
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:15962`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L15962): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16007`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16007): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16085`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16085): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16118`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16118): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18279`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18279): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18324`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18324): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18393`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18393): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18426`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18426): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18996`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18996): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22476`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22476): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22812`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22812): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22842`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22842): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22893`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22893): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22938`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22938): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22968`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22968): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23010`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23010): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23067`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23067): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23097`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23097): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23253): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23307`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23307): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23442`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23442): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23475`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23475): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23565`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23565): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23616`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23616): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23721`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23721): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23760`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23760): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23901`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23901): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23937`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23937): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:25116`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L25116): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:25179`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L25179): _(warn)_ Class name must be in pascal case
### comment-format
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:250`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L250): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L253): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:261`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L261): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:264`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L264): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:17`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L17): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:526`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L526): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:562`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L562): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:629`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L629): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:674`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L674): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:710`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L710): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:746`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L746): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:791`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L791): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:859`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L859): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:950`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L950): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1002`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1002): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1052`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1052): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1077`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1077): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1102`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1102): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1127`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1127): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1167`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1167): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1218`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1218): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1293`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1293): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1343`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1343): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1368`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1368): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1425`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1425): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1452`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1452): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1481`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1481): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1523`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1523): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1561`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1561): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1611`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1611): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1658`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1658): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1726`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1726): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1791`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1791): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1901`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1901): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1943`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1943): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1971`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1971): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2036`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2036): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2074`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2074): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2138`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2138): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2178`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2178): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2222`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2222): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2247`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2247): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2299`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2299): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2328`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2328): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2361`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2361): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2396`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2396): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2431`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2431): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2476`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2476): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2546`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2546): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2718`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2718): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2754`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2754): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2792`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2792): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2866`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2866): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2948`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2948): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2977`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2977): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3019`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3019): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3046`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3046): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3073`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3073): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3115`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3115): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3157`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3157): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3209`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3209): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3268`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3268): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3312`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3312): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3394`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3394): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3436`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3436): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3474`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3474): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3510`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3510): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3585`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3585): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3623`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3623): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3669`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3669): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3714`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3714): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3782`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3782): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3859`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3859): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3911`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3911): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3947`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3947): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3972`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3972): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3997`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3997): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4022`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4022): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4047`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4047): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4098`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4098): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4140`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4140): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4236`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4236): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4335`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4335): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4392`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4392): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4442`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4442): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4491`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4491): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4566`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4566): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4608`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4608): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4648`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4648): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4719`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4719): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4773`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4773): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4800`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4800): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4842`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4842): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4880`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4880): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4920`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4920): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4945`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4945): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4972`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4972): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5024`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5024): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5078`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5078): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5128`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5128): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5153`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5153): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5201`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5201): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5366`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5366): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5420`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5420): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5478`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5478): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5522`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5522): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5594`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5594): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5619`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5619): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5659`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5659): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5697`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5697): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5761`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5761): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5863`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5863): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5905`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5905): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5964`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5964): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6008`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6008): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6062`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6062): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6104`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6104): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6179`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6179): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6227`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6227): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6269`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6269): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6328`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6328): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6396`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6396): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6443`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6443): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6470`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6470): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6515`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6515): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6557`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6557): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6599`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6599): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6628`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6628): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6673`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6673): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6721`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6721): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6765`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6765): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6792`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6792): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6825`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6825): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6873`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6873): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6917`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6917): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6955`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6955): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6993`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6993): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7038`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7038): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7065`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7065): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7107`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7107): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7173`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7173): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7232`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7232): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7373`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7373): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7398`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7398): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7427`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7427): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7456`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7456): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7483`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7483): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7556`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7556): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7589`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7589): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7626`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7626): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7663`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7663): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7713`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7713): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7746`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7746): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7805`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7805): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7832`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7832): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7870`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7870): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7925`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7925): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7950`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7950): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7983`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7983): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8016`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8016): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8053`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8053): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8091`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8091): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8129`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8129): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8195`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8195): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8261`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8261): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8299`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8299): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8324`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8324): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8366`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8366): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8420`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8420): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8474`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8474): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8512`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8512): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8550`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8550): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8588`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8588): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8617`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8617): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8650`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8650): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8714`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8714): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8752`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8752): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8785`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8785): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8827`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8827): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8869`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8869): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8896`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8896): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8946`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8946): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8986`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8986): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9030`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9030): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9089`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9089): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9127`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9127): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9183`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9183): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9285`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9285): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9309`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9309): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9436`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9436): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9495`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9495): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9519`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9519): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9571`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9571): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9732`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9732): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9756`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9756): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9910`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9910): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10029`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10029): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10293`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10293): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10381`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10381): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10585`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10585): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10625`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10625): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10686`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10686): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10713`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10713): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10774`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10774): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10846`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10846): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10902`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10902): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10976`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10976): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11201`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11201): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11253): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11443`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11443): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11485`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11485): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11651`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11651): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11689`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11689): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11834`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11834): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11926`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11926): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11970`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11970): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12014`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12014): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12039`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12039): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12077`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12077): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12106`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12106): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12168`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12168): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12210`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12210): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12285`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12285): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12323`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12323): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12352`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12352): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12397`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12397): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12433`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12433): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12496`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12496): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12564`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12564): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12632`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12632): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12700`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12700): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12768`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12768): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12924`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12924): _(warn)_ comment must start with a space
_Body truncatedβ¦_
[atomist:code-inspection:no-ac=@atomist/atomist-sdm] | 1.0 | Code Inspection: Tslint on no-ac - ### array-type
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts:273`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts#L273): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts:295`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinLexer.ts#L295): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts:6416`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts#L6416): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
- [`lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts:6438`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/kotlin/antlr-gen/KotlinParser.ts#L6438): _(warn)_ Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
### class-name
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:15962`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L15962): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16007`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16007): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16085`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16085): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:16118`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L16118): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18279`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18279): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18324`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18324): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18393`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18393): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18426`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18426): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:18996`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L18996): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22476`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22476): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22812`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22812): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22842`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22842): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22893`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22893): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22938`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22938): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:22968`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L22968): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23010`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23010): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23067`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23067): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23097`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23097): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23253): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23307`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23307): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23442`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23442): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23475`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23475): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23565`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23565): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23616`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23616): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23721`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23721): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23760`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23760): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23901`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23901): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:23937`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L23937): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:25116`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L25116): _(warn)_ Class name must be in pascal case
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:25179`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L25179): _(warn)_ Class name must be in pascal case
### comment-format
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:250`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L250): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L253): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:261`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L261): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts:264`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Lexer.ts#L264): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:17`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L17): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:526`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L526): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:562`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L562): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:629`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L629): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:674`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L674): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:710`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L710): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:746`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L746): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:791`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L791): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:859`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L859): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:950`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L950): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1002`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1002): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1052`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1052): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1077`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1077): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1102`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1102): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1127`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1127): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1167`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1167): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1218`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1218): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1293`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1293): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1343`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1343): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1368`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1368): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1425`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1425): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1452`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1452): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1481`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1481): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1523`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1523): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1561`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1561): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1611`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1611): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1658`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1658): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1726`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1726): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1791`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1791): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1901`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1901): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1943`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1943): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:1971`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L1971): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2036`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2036): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2074`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2074): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2138`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2138): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2178`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2178): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2222`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2222): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2247`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2247): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2299`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2299): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2328`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2328): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2361`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2361): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2396`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2396): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2431`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2431): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2476`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2476): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2546`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2546): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2718`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2718): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2754`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2754): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2792`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2792): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2866`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2866): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2948`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2948): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:2977`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L2977): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3019`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3019): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3046`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3046): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3073`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3073): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3115`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3115): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3157`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3157): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3209`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3209): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3268`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3268): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3312`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3312): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3394`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3394): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3436`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3436): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3474`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3474): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3510`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3510): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3585`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3585): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3623`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3623): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3669`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3669): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3714`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3714): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3782`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3782): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3859`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3859): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3911`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3911): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3947`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3947): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3972`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3972): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:3997`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L3997): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4022`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4022): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4047`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4047): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4098`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4098): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4140`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4140): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4236`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4236): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4335`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4335): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4392`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4392): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4442`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4442): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4491`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4491): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4566`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4566): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4608`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4608): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4648`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4648): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4719`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4719): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4773`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4773): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4800`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4800): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4842`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4842): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4880`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4880): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4920`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4920): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4945`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4945): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:4972`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L4972): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5024`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5024): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5078`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5078): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5128`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5128): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5153`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5153): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5201`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5201): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5366`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5366): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5420`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5420): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5478`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5478): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5522`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5522): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5594`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5594): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5619`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5619): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5659`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5659): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5697`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5697): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5761`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5761): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5863`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5863): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5905`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5905): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:5964`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L5964): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6008`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6008): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6062`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6062): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6104`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6104): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6179`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6179): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6227`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6227): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6269`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6269): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6328`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6328): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6396`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6396): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6443`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6443): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6470`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6470): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6515`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6515): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6557`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6557): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6599`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6599): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6628`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6628): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6673`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6673): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6721`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6721): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6765`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6765): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6792`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6792): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6825`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6825): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6873`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6873): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6917`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6917): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6955`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6955): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:6993`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L6993): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7038`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7038): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7065`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7065): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7107`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7107): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7173`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7173): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7232`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7232): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7373`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7373): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7398`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7398): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7427`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7427): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7456`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7456): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7483`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7483): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7556`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7556): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7589`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7589): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7626`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7626): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7663`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7663): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7713`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7713): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7746`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7746): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7805`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7805): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7832`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7832): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7870`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7870): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7925`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7925): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7950`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7950): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:7983`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L7983): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8016`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8016): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8053`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8053): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8091`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8091): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8129`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8129): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8195`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8195): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8261`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8261): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8299`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8299): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8324`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8324): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8366`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8366): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8420`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8420): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8474`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8474): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8512`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8512): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8550`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8550): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8588`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8588): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8617`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8617): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8650`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8650): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8714`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8714): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8752`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8752): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8785`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8785): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8827`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8827): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8869`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8869): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8896`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8896): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8946`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8946): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:8986`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L8986): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9030`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9030): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9089`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9089): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9127`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9127): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9183`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9183): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9285`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9285): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9309`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9309): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9436`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9436): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9495`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9495): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9519`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9519): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9571`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9571): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9732`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9732): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9756`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9756): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:9910`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L9910): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10029`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10029): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10293`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10293): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10381`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10381): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10585`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10585): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10625`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10625): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10686`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10686): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10713`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10713): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10774`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10774): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10846`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10846): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10902`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10902): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:10976`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L10976): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11201`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11201): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11253`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11253): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11443`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11443): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11485`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11485): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11651`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11651): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11689`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11689): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11834`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11834): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11926`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11926): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:11970`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L11970): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12014`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12014): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12039`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12039): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12077`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12077): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12106`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12106): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12168`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12168): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12210`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12210): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12285`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12285): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12323`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12323): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12352`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12352): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12397`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12397): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12433`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12433): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12496`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12496): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12564`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12564): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12632`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12632): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12700`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12700): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12768`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12768): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12836`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12836): _(warn)_ comment must start with a space
- [`lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts:12924`](https://github.com/atomist/antlr/blob/f2d124898a768f615768fde848a5e1987a8bca90/lib/tree/ast/antlr/java/antlr-gen/Java9Parser.ts#L12924): _(warn)_ comment must start with a space
_Body truncatedβ¦_
[atomist:code-inspection:no-ac=@atomist/atomist-sdm] | non_main | code inspection tslint on no ac array type warn array type using t is forbidden for non simple types use array instead warn array type using t is forbidden for non simple types use array instead warn array type using t is forbidden for non simple types use array instead warn array type using t is forbidden for non simple types use array instead class name warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case warn class name must be in pascal case comment format warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space warn comment must start with a space body truncated⦠| 0 |
2 | 2,492,202,542 | IssuesEvent | 2015-01-04 15:45:19 | krico/jas | https://api.github.com/repos/krico/jas | closed | Modernize webapp project structure to have more granular javascript files | frontend maintainer | In short
* Use the assets/ directory
* One javascript file per controller/module/service/etc
* Use [gulp](http://gulpjs.com/) to concatenate, minify and others.
* Use [karma](http://karma-runner.github.io) for testing | True | Modernize webapp project structure to have more granular javascript files - In short
* Use the assets/ directory
* One javascript file per controller/module/service/etc
* Use [gulp](http://gulpjs.com/) to concatenate, minify and others.
* Use [karma](http://karma-runner.github.io) for testing | main | modernize webapp project structure to have more granular javascript files in short use the assets directory one javascript file per controller module service etc use to concatenate minify and others use for testing | 1 |
333,086 | 29,508,063,090 | IssuesEvent | 2023-06-03 15:09:52 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | reopened | Fix raw_ops.test_tensorflow_Equal | TensorFlow Frontend Sub Task Failing Test | | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|paddle|<a href="null" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
| 1.0 | Fix raw_ops.test_tensorflow_Equal - | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5113744240/jobs/9193291154" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|paddle|<a href="null" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
| non_main | fix raw ops test tensorflow equal tensorflow img src torch img src numpy img src jax img src paddle img src | 0 |
5,798 | 30,709,926,968 | IssuesEvent | 2023-07-27 09:04:16 | jupyter-naas/awesome-notebooks | https://api.github.com/repos/jupyter-naas/awesome-notebooks | closed | Clockify - Create time entries database for a user on workspace | templates maintainer | This notebook creates a time entries database on a specific timeframe, adding client, project and task name. It is usefull for organizations to track time entries and optimize their workflow.
| True | Clockify - Create time entries database for a user on workspace - This notebook creates a time entries database on a specific timeframe, adding client, project and task name. It is usefull for organizations to track time entries and optimize their workflow.
| main | clockify create time entries database for a user on workspace this notebook creates a time entries database on a specific timeframe adding client project and task name it is usefull for organizations to track time entries and optimize their workflow | 1 |
257,634 | 27,563,804,870 | IssuesEvent | 2023-03-08 01:07:44 | billmcchesney1/superagent | https://api.github.com/repos/billmcchesney1/superagent | opened | CVE-2021-44906 (High) detected in multiple libraries | security vulnerability | ## CVE-2021-44906 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>minimist-0.2.1.tgz</b>, <b>minimist-0.0.8.tgz</b>, <b>minimist-1.2.5.tgz</b></p></summary>
<p>
<details><summary><b>minimist-0.2.1.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz">https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/tap-parser/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- zuul-3.12.0.tgz (Root Library)
- tap-parser-0.7.0.tgz
- :x: **minimist-0.2.1.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-0.0.8.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mkdirp/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- mocha-3.5.3.tgz (Root Library)
- mkdirp-0.5.1.tgz
- :x: **minimist-0.0.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-1.2.5.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- core-7.12.10.tgz (Root Library)
- json5-2.1.3.tgz
- :x: **minimist-1.2.5.tgz** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Minimist <=1.2.5 is vulnerable to Prototype Pollution via file index.js, function setKey() (lines 69-95).
<p>Publish Date: 2022-03-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-44906>CVE-2021-44906</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-03-17</p>
<p>Fix Resolution (minimist): 0.2.2</p>
<p>Direct dependency fix Resolution (mocha): 6.2.3</p><p>Fix Resolution (minimist): 1.2.6</p>
<p>Direct dependency fix Resolution (@babel/core): 7.12.13</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | True | CVE-2021-44906 (High) detected in multiple libraries - ## CVE-2021-44906 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>minimist-0.2.1.tgz</b>, <b>minimist-0.0.8.tgz</b>, <b>minimist-1.2.5.tgz</b></p></summary>
<p>
<details><summary><b>minimist-0.2.1.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz">https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/tap-parser/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- zuul-3.12.0.tgz (Root Library)
- tap-parser-0.7.0.tgz
- :x: **minimist-0.2.1.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-0.0.8.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mkdirp/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- mocha-3.5.3.tgz (Root Library)
- mkdirp-0.5.1.tgz
- :x: **minimist-0.0.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-1.2.5.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- core-7.12.10.tgz (Root Library)
- json5-2.1.3.tgz
- :x: **minimist-1.2.5.tgz** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Minimist <=1.2.5 is vulnerable to Prototype Pollution via file index.js, function setKey() (lines 69-95).
<p>Publish Date: 2022-03-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-44906>CVE-2021-44906</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-03-17</p>
<p>Fix Resolution (minimist): 0.2.2</p>
<p>Direct dependency fix Resolution (mocha): 6.2.3</p><p>Fix Resolution (minimist): 1.2.6</p>
<p>Direct dependency fix Resolution (@babel/core): 7.12.13</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | non_main | cve high detected in multiple libraries cve high severity vulnerability vulnerable libraries minimist tgz minimist tgz minimist tgz minimist tgz parse argument options library home page a href path to dependency file package json path to vulnerable library node modules tap parser node modules minimist package json dependency hierarchy zuul tgz root library tap parser tgz x minimist tgz vulnerable library minimist tgz parse argument options library home page a href path to dependency file package json path to vulnerable library node modules mkdirp node modules minimist package json dependency hierarchy mocha tgz root library mkdirp tgz x minimist tgz vulnerable library minimist tgz parse argument options library home page a href path to dependency file package json path to vulnerable library node modules minimist package json dependency hierarchy core tgz root library tgz x minimist tgz vulnerable library found in base branch master vulnerability details minimist is vulnerable to prototype pollution via file index js function setkey lines publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution minimist direct dependency fix resolution mocha fix resolution minimist direct dependency fix resolution babel core rescue worker helmet automatic remediation is available for this issue | 0 |
1,373 | 5,949,763,880 | IssuesEvent | 2017-05-26 15:03:23 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | nmcli dns example does not run | affects_2.0 bug_report docs_report networking waiting_on_maintainer | ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
nmcli
##### ANSIBLE VERSION
```
ansible 2.0.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
n/a
##### OS / ENVIRONMENT
CentOS 7 / CentOS 7
##### SUMMARY
nmcli example for setting two dns servers is invalid syntax and does not run.
```
# To add two IPv4 DNS server addresses:
-nmcli: conn_name=my-eth1 dns4=["8.8.8.8", "8.8.4.4"] state=present
```
##### STEPS TO REPRODUCE
Create playbook based on example from http://docs.ansible.com/ansible/nmcli_module.html
```
---
- hosts: all
remote_user: root
tasks:
- nmcli: conn_name=eth0 dns4=["8.8.8.8", "8.8.4.4"] state=present
```
##### EXPECTED RESULTS
Task runs ok, dns servers get set
##### ACTUAL RESULTS
```
ERROR! this task 'nmcli' has extra params, which is only allowed in the following modules: command, shell, script, include, include_vars, add_host, group_by, set_fact, raw, meta
The error appears to have been in '/root/ansible_playbooks/common.yaml': line 5, column 5, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
tasks:
- nmcli: conn_name=eth0 dns4=["8.8.8.8", "8.8.4.4"] state=present
^ here
We could be wrong, but this one looks like it might be an issue with
unbalanced quotes. If starting a value with a quote, make sure the
line ends with the same set of quotes. For instance this arbitrary
example:
foo: "bad" "wolf"
Could be written as:
foo: '"bad" "wolf"'
```
| True | nmcli dns example does not run - ##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
nmcli
##### ANSIBLE VERSION
```
ansible 2.0.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
n/a
##### OS / ENVIRONMENT
CentOS 7 / CentOS 7
##### SUMMARY
nmcli example for setting two dns servers is invalid syntax and does not run.
```
# To add two IPv4 DNS server addresses:
-nmcli: conn_name=my-eth1 dns4=["8.8.8.8", "8.8.4.4"] state=present
```
##### STEPS TO REPRODUCE
Create playbook based on example from http://docs.ansible.com/ansible/nmcli_module.html
```
---
- hosts: all
remote_user: root
tasks:
- nmcli: conn_name=eth0 dns4=["8.8.8.8", "8.8.4.4"] state=present
```
##### EXPECTED RESULTS
Task runs ok, dns servers get set
##### ACTUAL RESULTS
```
ERROR! this task 'nmcli' has extra params, which is only allowed in the following modules: command, shell, script, include, include_vars, add_host, group_by, set_fact, raw, meta
The error appears to have been in '/root/ansible_playbooks/common.yaml': line 5, column 5, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
tasks:
- nmcli: conn_name=eth0 dns4=["8.8.8.8", "8.8.4.4"] state=present
^ here
We could be wrong, but this one looks like it might be an issue with
unbalanced quotes. If starting a value with a quote, make sure the
line ends with the same set of quotes. For instance this arbitrary
example:
foo: "bad" "wolf"
Could be written as:
foo: '"bad" "wolf"'
```
| main | nmcli dns example does not run issue type bug report component name nmcli ansible version ansible config file etc ansible ansible cfg configured module search path default w o overrides configuration n a os environment centos centos summary nmcli example for setting two dns servers is invalid syntax and does not run to add two dns server addresses nmcli conn name my state present steps to reproduce create playbook based on example from hosts all remote user root tasks nmcli conn name state present expected results task runs ok dns servers get set actual results error this task nmcli has extra params which is only allowed in the following modules command shell script include include vars add host group by set fact raw meta the error appears to have been in root ansible playbooks common yaml line column but may be elsewhere in the file depending on the exact syntax problem the offending line appears to be tasks nmcli conn name state present here we could be wrong but this one looks like it might be an issue with unbalanced quotes if starting a value with a quote make sure the line ends with the same set of quotes for instance this arbitrary example foo bad wolf could be written as foo bad wolf | 1 |
77,623 | 7,582,491,220 | IssuesEvent | 2018-04-25 04:37:47 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | There is something fishy with IE9 | Type: bug area-test | Spotted this failure http://chromegw.corp.google.com/i/client.dart/builders/dart2js-ie9-win7-all-5-6/builds/3793:
FAILED: dart2js-ie9 release_ia32 corelib/set_iterator_test
Expected: pass
Actual: fail
CommandOutput[dart2js]:
CommandOutput[ie9]:
stdout:
<h1> Running /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tests/corelib/set_iterator_test.dart </h1>
<script type="text/javascript" src="/root_dart/pkg/unittest/lib/test_controller.js">
</script>
<script onerror="externalError(null)" type="text/javascript" src="/root_build/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.js">
</script>
<script type="text/javascript" src="/root_dart/pkg/browser/lib/dart.js"></script>
<script type="text/javascript" src="/root_dart/pkg/browser/lib/interop.js"></script>
<pre>Expect.equals(expected: &lt;0&gt;, actual: &lt;2500&gt;) fails.</pre><pre>Error: Some tests failed.</pre><pre>FAIL</pre>
To retest, run: E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\tools\testing\bin\windows\dart.exe /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tools/testing/dart/http_server.dart -p 51271 -c 51272 --build-directory=E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\build\ReleaseIA32 --runtime=ie9
Command[0]: build\ReleaseIA32\dart-sdk\bin\dart2js.bat --package-root=build/ReleaseIA32/packages/ --out=E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/build/ReleaseIA32/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.js /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tests/corelib/set_iterator_test.dart
Took 0:00:03.042000
Command[1]: python E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\tools\testing\run_selenium.py --browser=ie9 --timeout=60 --out=http://127.0.0.1:51271/root_build/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.html?crossOriginPort=51272
Took 0:00:00.281000
Short reproduction command (experimental):
python tools/test.py -mrelease -t60 -rie9 -cdart2js --use-sdk corelib/set_iterator_test
| 1.0 | There is something fishy with IE9 - Spotted this failure http://chromegw.corp.google.com/i/client.dart/builders/dart2js-ie9-win7-all-5-6/builds/3793:
FAILED: dart2js-ie9 release_ia32 corelib/set_iterator_test
Expected: pass
Actual: fail
CommandOutput[dart2js]:
CommandOutput[ie9]:
stdout:
<h1> Running /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tests/corelib/set_iterator_test.dart </h1>
<script type="text/javascript" src="/root_dart/pkg/unittest/lib/test_controller.js">
</script>
<script onerror="externalError(null)" type="text/javascript" src="/root_build/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.js">
</script>
<script type="text/javascript" src="/root_dart/pkg/browser/lib/dart.js"></script>
<script type="text/javascript" src="/root_dart/pkg/browser/lib/interop.js"></script>
<pre>Expect.equals(expected: &lt;0&gt;, actual: &lt;2500&gt;) fails.</pre><pre>Error: Some tests failed.</pre><pre>FAIL</pre>
To retest, run: E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\tools\testing\bin\windows\dart.exe /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tools/testing/dart/http_server.dart -p 51271 -c 51272 --build-directory=E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\build\ReleaseIA32 --runtime=ie9
Command[0]: build\ReleaseIA32\dart-sdk\bin\dart2js.bat --package-root=build/ReleaseIA32/packages/ --out=E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/build/ReleaseIA32/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.js /E:/b/build/slave/dart2js-ie9-win7-all-5-6/build/dart/tests/corelib/set_iterator_test.dart
Took 0:00:03.042000
Command[1]: python E:\b\build\slave\dart2js-ie9-win7-all-5-6\build\dart\tools\testing\run_selenium.py --browser=ie9 --timeout=60 --out=http://127.0.0.1:51271/root_build/generated_tests/dart2js-ie9/tests_corelib_set_iterator_test/test.html?crossOriginPort=51272
Took 0:00:00.281000
Short reproduction command (experimental):
python tools/test.py -mrelease -t60 -rie9 -cdart2js --use-sdk corelib/set_iterator_test
| non_main | there is something fishy with spotted this failure failed release corelib set iterator test expected pass actual fail commandoutput commandoutput stdout nbsp nbsp lt gt running e b build slave all build dart tests corelib set iterator test dart lt gt nbsp nbsp lt script type quot text javascript quot src quot root dart pkg unittest lib test controller js quot gt nbsp nbsp lt script gt nbsp nbsp lt script onerror quot externalerror null quot type quot text javascript quot src quot root build generated tests tests corelib set iterator test test js quot gt nbsp nbsp lt script gt nbsp nbsp lt script type quot text javascript quot src quot root dart pkg browser lib dart js quot gt lt script gt nbsp nbsp lt script type quot text javascript quot src quot root dart pkg browser lib interop js quot gt lt script gt lt pre gt expect equals expected amp lt amp gt actual amp lt amp gt fails lt pre gt lt pre gt error some tests failed lt pre gt lt pre gt fail lt pre gt to retest run e b build slave all build dart tools testing bin windows dart exe e b build slave all build dart tools testing dart http server dart p c build directory e b build slave all build dart build runtime command build dart sdk bin bat package root build packages out e b build slave all build dart build generated tests tests corelib set iterator test test js e b build slave all build dart tests corelib set iterator test dart took command python e b build slave all build dart tools testing run selenium py browser timeout out took short reproduction command experimental nbsp nbsp nbsp nbsp python tools test py mrelease use sdk corelib set iterator test | 0 |
3,676 | 15,036,129,191 | IssuesEvent | 2021-02-02 14:55:06 | IITIDIDX597/sp_2021_team1 | https://api.github.com/repos/IITIDIDX597/sp_2021_team1 | opened | Insight into state of research at the lab | Epic: 5 Maintaining the system Story Week 3 | **Project Goal:** S Lab is a tailored integrative learning and collaboration platform for clinicians that combines the latest research and tacit knowledge gained from experience in a practical way, while at the same time foster deeper learning experiences in order to deliver better AbilityLab Patient care.
**Hill Statement:** Individual Clinicians can reference relevant, continuously evolving information for their patient's therapy needs to self-manage their approach & patient care plan development in a single platform.
**Sub-Hill Statements:**
1. The learning platform will be routinely updated with S Lab's own research advancements, as well as outside discoveries and best practices developed for rehabilitation treatments.
### **Story Details:**
As a: Administrator / Analyst
I want: clear reports of completed, current research at AbilityLab
So that: I can compare that against frequent searches, helping to prioritize research efforts and keep the system updated.
| True | Insight into state of research at the lab - **Project Goal:** S Lab is a tailored integrative learning and collaboration platform for clinicians that combines the latest research and tacit knowledge gained from experience in a practical way, while at the same time foster deeper learning experiences in order to deliver better AbilityLab Patient care.
**Hill Statement:** Individual Clinicians can reference relevant, continuously evolving information for their patient's therapy needs to self-manage their approach & patient care plan development in a single platform.
**Sub-Hill Statements:**
1. The learning platform will be routinely updated with S Lab's own research advancements, as well as outside discoveries and best practices developed for rehabilitation treatments.
### **Story Details:**
As a: Administrator / Analyst
I want: clear reports of completed, current research at AbilityLab
So that: I can compare that against frequent searches, helping to prioritize research efforts and keep the system updated.
| main | insight into state of research at the lab project goal s lab is a tailored integrative learning and collaboration platform for clinicians that combines the latest research and tacit knowledge gained from experience in a practical way while at the same time foster deeper learning experiences in order to deliver better abilitylab patient care hill statement individual clinicians can reference relevant continuously evolving information for their patient s therapy needs to self manage their approach patient care plan development in a single platform sub hill statements the learning platform will be routinely updated with s lab s own research advancements as well as outside discoveries and best practices developed for rehabilitation treatments story details as a administrator analyst i want clear reports of completed current research at abilitylab so that i can compare that against frequent searches helping to prioritize research efforts and keep the system updated | 1 |
24,881 | 11,103,426,312 | IssuesEvent | 2019-12-17 03:48:37 | jamijam/goof | https://api.github.com/repos/jamijam/goof | opened | WS-2019-0318 (Medium) detected in handlebars-4.0.11.tgz | security vulnerability | ## WS-2019-0318 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.0.11.tgz</b></p></summary>
<p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p>
<p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/goof/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/goof/node_modules/nyc/node_modules/handlebars/package.json</p>
<p>
Dependency Hierarchy:
- tap-11.1.5.tgz (Root Library)
- nyc-11.9.0.tgz
- istanbul-reports-1.4.0.tgz
- :x: **handlebars-4.0.11.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jamijam/goof/commit/bd7ca5a8ffa2018ef59c872c03837feddcfbe0d8">bd7ca5a8ffa2018ef59c872c03837feddcfbe0d8</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A Denial of Service vulnerability found in handlebars 4.x before 4.4.5.While processing specially-crafted templates, the parser may be forced into endless loop. Attackers may exhaust system resources.
<p>Publish Date: 2019-12-01
<p>URL: <a href=https://github.com/wycats/handlebars.js/commit/8d5530ee2c3ea9f0aee3fde310b9f36887d00b8b>WS-2019-0318</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.npmjs.com/advisories/1300">https://www.npmjs.com/advisories/1300</a></p>
<p>Release Date: 2019-12-01</p>
<p>Fix Resolution: handlebars - 4.4.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | WS-2019-0318 (Medium) detected in handlebars-4.0.11.tgz - ## WS-2019-0318 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.0.11.tgz</b></p></summary>
<p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p>
<p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/goof/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/goof/node_modules/nyc/node_modules/handlebars/package.json</p>
<p>
Dependency Hierarchy:
- tap-11.1.5.tgz (Root Library)
- nyc-11.9.0.tgz
- istanbul-reports-1.4.0.tgz
- :x: **handlebars-4.0.11.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jamijam/goof/commit/bd7ca5a8ffa2018ef59c872c03837feddcfbe0d8">bd7ca5a8ffa2018ef59c872c03837feddcfbe0d8</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A Denial of Service vulnerability found in handlebars 4.x before 4.4.5.While processing specially-crafted templates, the parser may be forced into endless loop. Attackers may exhaust system resources.
<p>Publish Date: 2019-12-01
<p>URL: <a href=https://github.com/wycats/handlebars.js/commit/8d5530ee2c3ea9f0aee3fde310b9f36887d00b8b>WS-2019-0318</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.npmjs.com/advisories/1300">https://www.npmjs.com/advisories/1300</a></p>
<p>Release Date: 2019-12-01</p>
<p>Fix Resolution: handlebars - 4.4.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_main | ws medium detected in handlebars tgz ws medium severity vulnerability vulnerable library handlebars tgz handlebars provides the power necessary to let you build semantic templates effectively with no frustration library home page a href path to dependency file tmp ws scm goof package json path to vulnerable library tmp ws scm goof node modules nyc node modules handlebars package json dependency hierarchy tap tgz root library nyc tgz istanbul reports tgz x handlebars tgz vulnerable library found in head commit a href vulnerability details a denial of service vulnerability found in handlebars x before while processing specially crafted templates the parser may be forced into endless loop attackers may exhaust system resources publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution handlebars step up your open source security game with whitesource | 0 |
285,239 | 31,142,886,619 | IssuesEvent | 2023-08-16 02:32:31 | GarySegal-Mend-Demo/WebGoat | https://api.github.com/repos/GarySegal-Mend-Demo/WebGoat | opened | underscore-min-1.10.2.js: 1 vulnerabilities (highest severity is: 7.2) | Mend: dependency security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>underscore-min-1.10.2.js</b></p></summary>
<p>JavaScript's functional programming helper library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js">https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js</a></p>
<p>Path to vulnerable library: /src/main/resources/webgoat/static/js/libs/underscore-min.js,/target/classes/webgoat/static/js/libs/underscore-min.js</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/GarySegal-Mend-Demo/WebGoat/commit/87421051d6f7cef363fd889e6918ec20bc253fb4">87421051d6f7cef363fd889e6918ec20bc253fb4</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (underscore-min version) | Remediation Possible** |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2021-23358](https://www.mend.io/vulnerability-database/CVE-2021-23358) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.2 | underscore-min-1.10.2.js | Direct | underscore - 1.12.1,1.13.0-2 | ❌ |
<p>**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation</p>
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2021-23358</summary>
### Vulnerable Library - <b>underscore-min-1.10.2.js</b></p>
<p>JavaScript's functional programming helper library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js">https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js</a></p>
<p>Path to vulnerable library: /src/main/resources/webgoat/static/js/libs/underscore-min.js,/target/classes/webgoat/static/js/libs/underscore-min.js</p>
<p>
Dependency Hierarchy:
- :x: **underscore-min-1.10.2.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/GarySegal-Mend-Demo/WebGoat/commit/87421051d6f7cef363fd889e6918ec20bc253fb4">87421051d6f7cef363fd889e6918ec20bc253fb4</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
The package underscore from 1.13.0-0 and before 1.13.0-2, from 1.3.2 and before 1.12.1 are vulnerable to Arbitrary Code Injection via the template function, particularly when a variable property is passed as an argument as it is not sanitized.
<p>Publish Date: 2021-03-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-23358>CVE-2021-23358</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.2</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: High
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23358</a></p>
<p>Release Date: 2021-03-29</p>
<p>Fix Resolution: underscore - 1.12.1,1.13.0-2</p>
</p>
<p></p>
</details> | True | underscore-min-1.10.2.js: 1 vulnerabilities (highest severity is: 7.2) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>underscore-min-1.10.2.js</b></p></summary>
<p>JavaScript's functional programming helper library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js">https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js</a></p>
<p>Path to vulnerable library: /src/main/resources/webgoat/static/js/libs/underscore-min.js,/target/classes/webgoat/static/js/libs/underscore-min.js</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/GarySegal-Mend-Demo/WebGoat/commit/87421051d6f7cef363fd889e6918ec20bc253fb4">87421051d6f7cef363fd889e6918ec20bc253fb4</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (underscore-min version) | Remediation Possible** |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2021-23358](https://www.mend.io/vulnerability-database/CVE-2021-23358) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.2 | underscore-min-1.10.2.js | Direct | underscore - 1.12.1,1.13.0-2 | ❌ |
<p>**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation</p>
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2021-23358</summary>
### Vulnerable Library - <b>underscore-min-1.10.2.js</b></p>
<p>JavaScript's functional programming helper library.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js">https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js</a></p>
<p>Path to vulnerable library: /src/main/resources/webgoat/static/js/libs/underscore-min.js,/target/classes/webgoat/static/js/libs/underscore-min.js</p>
<p>
Dependency Hierarchy:
- :x: **underscore-min-1.10.2.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/GarySegal-Mend-Demo/WebGoat/commit/87421051d6f7cef363fd889e6918ec20bc253fb4">87421051d6f7cef363fd889e6918ec20bc253fb4</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
The package underscore from 1.13.0-0 and before 1.13.0-2, from 1.3.2 and before 1.12.1 are vulnerable to Arbitrary Code Injection via the template function, particularly when a variable property is passed as an argument as it is not sanitized.
<p>Publish Date: 2021-03-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-23358>CVE-2021-23358</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.2</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: High
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23358</a></p>
<p>Release Date: 2021-03-29</p>
<p>Fix Resolution: underscore - 1.12.1,1.13.0-2</p>
</p>
<p></p>
</details> | non_main | underscore min js vulnerabilities highest severity is vulnerable library underscore min js javascript s functional programming helper library library home page a href path to vulnerable library src main resources webgoat static js libs underscore min js target classes webgoat static js libs underscore min js found in head commit a href vulnerabilities cve severity cvss dependency type fixed in underscore min version remediation possible high underscore min js direct underscore in some cases remediation pr cannot be created automatically for a vulnerability despite the availability of remediation details cve vulnerable library underscore min js javascript s functional programming helper library library home page a href path to vulnerable library src main resources webgoat static js libs underscore min js target classes webgoat static js libs underscore min js dependency hierarchy x underscore min js vulnerable library found in head commit a href found in base branch main vulnerability details the package underscore from and before from and before are vulnerable to arbitrary code injection via the template function particularly when a variable property is passed as an argument as it is not sanitized publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution underscore | 0 |
237,749 | 7,763,834,356 | IssuesEvent | 2018-06-01 18:00:29 | RTXteam/RTX | https://api.github.com/repos/RTXteam/RTX | opened | CypherError | bug high priority | Traceback (most recent call last):
File "BuildMasterKG.py", line 125, in <module>
running_time = timeit.timeit(lambda: run_function(), number=1)
File "/usr/lib/python3.5/timeit.py", line 213, in timeit
return Timer(stmt, setup, timer, globals).timeit(number)
File "/usr/lib/python3.5/timeit.py", line 178, in timeit
timing = self.inner(it, self.timer)
File "<timeit-src>", line 6, in inner
File "BuildMasterKG.py", line 125, in <lambda>
running_time = timeit.timeit(lambda: run_function(), number=1)
File "BuildMasterKG.py", line 107, in make_master_kg
ob.neo4j_push()
File "/mnt/data/orangeboard/RTX/code/reasoningtool/kg-construction/Orangeboard.py", line 551, in neo4j_push
self.neo4j_run_cypher_query(command)
File "/mnt/data/orangeboard/RTX/code/reasoningtool/kg-construction/Orangeboard.py", line 476, in neo4j_run_cypher_query
res = session.run(query, parameters)
File "/usr/local/lib/python3.5/dist-packages/neo4j/v1/api.py", line 340, in run
self._connection.fetch()
File "/usr/local/lib/python3.5/dist-packages/neo4j/bolt/connection.py", line 283, in fetch
return self._fetch()
File "/usr/local/lib/python3.5/dist-packages/neo4j/bolt/connection.py", line 323, in _fetch
response.on_failure(summary_metadata or {})
File "/usr/local/lib/python3.5/dist-packages/neo4j/v1/result.py", line 69, in on_failure
raise CypherError.hydrate(**metadata)
neo4j.exceptions.ClientError: There already exists an index for label 'Base' on property 'UUID'. A constraint cannot be created until the index has been dropped. | 1.0 | CypherError - Traceback (most recent call last):
File "BuildMasterKG.py", line 125, in <module>
running_time = timeit.timeit(lambda: run_function(), number=1)
File "/usr/lib/python3.5/timeit.py", line 213, in timeit
return Timer(stmt, setup, timer, globals).timeit(number)
File "/usr/lib/python3.5/timeit.py", line 178, in timeit
timing = self.inner(it, self.timer)
File "<timeit-src>", line 6, in inner
File "BuildMasterKG.py", line 125, in <lambda>
running_time = timeit.timeit(lambda: run_function(), number=1)
File "BuildMasterKG.py", line 107, in make_master_kg
ob.neo4j_push()
File "/mnt/data/orangeboard/RTX/code/reasoningtool/kg-construction/Orangeboard.py", line 551, in neo4j_push
self.neo4j_run_cypher_query(command)
File "/mnt/data/orangeboard/RTX/code/reasoningtool/kg-construction/Orangeboard.py", line 476, in neo4j_run_cypher_query
res = session.run(query, parameters)
File "/usr/local/lib/python3.5/dist-packages/neo4j/v1/api.py", line 340, in run
self._connection.fetch()
File "/usr/local/lib/python3.5/dist-packages/neo4j/bolt/connection.py", line 283, in fetch
return self._fetch()
File "/usr/local/lib/python3.5/dist-packages/neo4j/bolt/connection.py", line 323, in _fetch
response.on_failure(summary_metadata or {})
File "/usr/local/lib/python3.5/dist-packages/neo4j/v1/result.py", line 69, in on_failure
raise CypherError.hydrate(**metadata)
neo4j.exceptions.ClientError: There already exists an index for label 'Base' on property 'UUID'. A constraint cannot be created until the index has been dropped. | non_main | cyphererror traceback most recent call last file buildmasterkg py line in running time timeit timeit lambda run function number file usr lib timeit py line in timeit return timer stmt setup timer globals timeit number file usr lib timeit py line in timeit timing self inner it self timer file line in inner file buildmasterkg py line in running time timeit timeit lambda run function number file buildmasterkg py line in make master kg ob push file mnt data orangeboard rtx code reasoningtool kg construction orangeboard py line in push self run cypher query command file mnt data orangeboard rtx code reasoningtool kg construction orangeboard py line in run cypher query res session run query parameters file usr local lib dist packages api py line in run self connection fetch file usr local lib dist packages bolt connection py line in fetch return self fetch file usr local lib dist packages bolt connection py line in fetch response on failure summary metadata or file usr local lib dist packages result py line in on failure raise cyphererror hydrate metadata exceptions clienterror there already exists an index for label base on property uuid a constraint cannot be created until the index has been dropped | 0 |
987 | 4,755,149,974 | IssuesEvent | 2016-10-24 09:51:17 | tgstation/tgstation | https://api.github.com/repos/tgstation/tgstation | closed | Weather datums are added to the list in two different locations | Maintainability - Hinders improvements - | See
https://github.com/tgstation/tgstation/blob/master/code/controllers/subsystem/weather.dm#L36-L38
`existing_weather |= new W`
and
https://github.com/tgstation/tgstation/blob/master/code/datums/weather/weather.dm#L45
`SSweather.existing_weather |= src`
Mainly just a maintainability issue methinks, just wondering weather (kek) or not it was intentional | True | Weather datums are added to the list in two different locations - See
https://github.com/tgstation/tgstation/blob/master/code/controllers/subsystem/weather.dm#L36-L38
`existing_weather |= new W`
and
https://github.com/tgstation/tgstation/blob/master/code/datums/weather/weather.dm#L45
`SSweather.existing_weather |= src`
Mainly just a maintainability issue methinks, just wondering weather (kek) or not it was intentional | main | weather datums are added to the list in two different locations see existing weather new w and ssweather existing weather src mainly just a maintainability issue methinks just wondering weather kek or not it was intentional | 1 |
669,371 | 22,622,237,536 | IssuesEvent | 2022-06-30 07:35:07 | kubernetes/website | https://api.github.com/repos/kubernetes/website | closed | Task / tutorial prerequisites mention Katacoda | help wanted kind/bug priority/backlog language/en triage/accepted | This applies to more than this page, but as KataCode is no longer available references to it should/could be removed. | 1.0 | Task / tutorial prerequisites mention Katacoda - This applies to more than this page, but as KataCode is no longer available references to it should/could be removed. | non_main | task tutorial prerequisites mention katacoda this applies to more than this page but as katacode is no longer available references to it should could be removed | 0 |
68,172 | 14,913,012,451 | IssuesEvent | 2021-01-22 13:33:12 | Joystream/joystream | https://api.github.com/repos/Joystream/joystream | closed | update handle validation method to limit to: `^[a-z0-9_]+$` | security | regex package from crates.io doesn't compile to wasm, so need alternative or roll our own. | True | update handle validation method to limit to: `^[a-z0-9_]+$` - regex package from crates.io doesn't compile to wasm, so need alternative or roll our own. | non_main | update handle validation method to limit to regex package from crates io doesn t compile to wasm so need alternative or roll our own | 0 |
3,997 | 18,526,091,089 | IssuesEvent | 2021-10-20 20:41:42 | carbon-design-system/carbon | https://api.github.com/repos/carbon-design-system/carbon | closed | [Feature Request]: To disable the options in MultiSelect | type: enhancement π‘ status: waiting for maintainer response π¬ | ### Summary
We would like to disable the option(s) in MultiSelect because in the beginning, the options is valid, but afterward, it becomes invalid. But we don't want to remove the invalid options directly because of user experience concerns.
### Justification
As above.
### Desired UX and success metrics
We want something like below.

### Required functionality
_No response_
### Specific timeline issues / requests
As soon as possible. Thanks.
### Available extra resources
_No response_
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md) | True | [Feature Request]: To disable the options in MultiSelect - ### Summary
We would like to disable the option(s) in MultiSelect because in the beginning, the options is valid, but afterward, it becomes invalid. But we don't want to remove the invalid options directly because of user experience concerns.
### Justification
As above.
### Desired UX and success metrics
We want something like below.

### Required functionality
_No response_
### Specific timeline issues / requests
As soon as possible. Thanks.
### Available extra resources
_No response_
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md) | main | to disable the options in multiselect summary we would like to disable the option s in multiselect because in the beginning the options is valid but afterward it becomes invalid but we don t want to remove the invalid options directly because of user experience concerns justification as above desired ux and success metrics we want something like below required functionality no response specific timeline issues requests as soon as possible thanks available extra resources no response code of conduct i agree to follow this project s | 1 |
12,353 | 14,614,560,469 | IssuesEvent | 2020-12-22 10:05:44 | KiwiHawk/SeaBlock | https://api.github.com/repos/KiwiHawk/SeaBlock | closed | Default Bob's Tech setting Science Pack colors update to false | mod compatibility | SCT ignores this setting. Default it to False.
If SCT is installed, overwrite it to False and hide. Unless SCT will start respecting it? | True | Default Bob's Tech setting Science Pack colors update to false - SCT ignores this setting. Default it to False.
If SCT is installed, overwrite it to False and hide. Unless SCT will start respecting it? | non_main | default bob s tech setting science pack colors update to false sct ignores this setting default it to false if sct is installed overwrite it to false and hide unless sct will start respecting it | 0 |
3,322 | 12,882,873,782 | IssuesEvent | 2020-07-12 19:04:13 | aar3/tik | https://api.github.com/repos/aar3/tik | closed | change reducer shape | maintainability technical | #### Issue
reducers currently have a flat shape
#### Acceptance Criteria
reducers are properly modeled via app UX | True | change reducer shape - #### Issue
reducers currently have a flat shape
#### Acceptance Criteria
reducers are properly modeled via app UX | main | change reducer shape issue reducers currently have a flat shape acceptance criteria reducers are properly modeled via app ux | 1 |
2,083 | 7,065,100,221 | IssuesEvent | 2018-01-06 15:58:38 | reactiveui/ReactiveUI | https://api.github.com/repos/reactiveui/ReactiveUI | closed | Add git hash to nuget package / assembly info | Hacktoberfest consumer-experience help wanted maintainer-experience proposal |
**Do you want to request a *feature* or report a *bug*?**
FEATURE
**What is the current behavior?**
Not easy to cross reference the CI build number ie ``alpha-102`` to the specific git hash
**What is the expected behavior?**
The assembly informational version should have the git hash embedded as described here
https://stackoverflow.com/questions/15141338/embed-git-commit-hash-in-a-net-dll
**What is the motivation / use case for changing the behavior?**
easy to check if upgrading is a good idea by reviewing the git log
| True | Add git hash to nuget package / assembly info -
**Do you want to request a *feature* or report a *bug*?**
FEATURE
**What is the current behavior?**
Not easy to cross reference the CI build number ie ``alpha-102`` to the specific git hash
**What is the expected behavior?**
The assembly informational version should have the git hash embedded as described here
https://stackoverflow.com/questions/15141338/embed-git-commit-hash-in-a-net-dll
**What is the motivation / use case for changing the behavior?**
easy to check if upgrading is a good idea by reviewing the git log
| main | add git hash to nuget package assembly info do you want to request a feature or report a bug feature what is the current behavior not easy to cross reference the ci build number ie alpha to the specific git hash what is the expected behavior the assembly informational version should have the git hash embedded as described here what is the motivation use case for changing the behavior easy to check if upgrading is a good idea by reviewing the git log | 1 |
169,534 | 26,818,058,892 | IssuesEvent | 2023-02-02 07:09:49 | flutter/flutter | https://api.github.com/repos/flutter/flutter | closed | Toggle buttons faint inner border / anti-aliasing | waiting for customer response framework engine f: material design has reproducible steps P4 found in release: 1.20 | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Build a ToggleButtons widget with the fill color the same as the outside border.
code to build the widget:
```dart
ToggleButtons(
fillColor: Colors.grey,
borderColor: Colors.grey,
selectedBorderColor: Colors.grey,
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('First'),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('Second'),
),
],
onPressed: (i) {},
isSelected: [false, true],
)
```
2. look closely, and see a faint outline
**Expected results:** <!-- what did you want to see? -->
- If the outline color, and the fill color are the same, there should be no faint white outline. but should fill seamlessly.
**Actual results:** <!-- what did you see? -->
- color does not actually matter.
- the border is painted in a way that these faint lines always present.
- note the vertical divider border also has faint outlines over the top and bottom borders.


<details>
<summary>Logs</summary>
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[β] Flutter (Channel beta, v1.15.17, on Mac OS X 10.15.4 19E266, locale en-US)
β’ Flutter version 1.15.17 at /Users/tyler/development/flutter
β’ Framework revision 2294d75bfa (5 weeks ago), 2020-03-07 00:28:38 +0900
β’ Engine revision 5aff311948
β’ Dart version 2.8.0 (build 2.8.0-dev.12.0 9983424a3c)
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
β’ Android SDK at /Users/tyler/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-29, build-tools 29.0.2
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.4)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.4, Build version 11E146
β’ CocoaPods version 1.8.4
[β] Chrome - develop for the web
β’ Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 43.0.1
β’ Dart plugin version 191.8593
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] IntelliJ IDEA Ultimate Edition (version 2019.3.4)
β’ IntelliJ at /Applications/IntelliJ IDEA.app
β’ Flutter plugin version 45.0.2
β’ Dart plugin version 193.6911.31
[β] VS Code (version 1.41.1)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 3.8.0
[β] Connected device (4 available)
β’ AOSP on IA Emulator β’ emulator-5554 β’ android-x86 β’ Android 9 (API 28) (emulator)
β’ iPhone 8 β’ 7C1F14C5-D20E-4199-9A03-BC010C61F63A β’ ios β’ com.apple.CoreSimulator.SimRuntime.iOS-13-2 (simulator)
β’ Chrome β’ chrome β’ web-javascript β’ Google Chrome 80.0.3987.163
β’ Web Server β’ web-server β’ web-javascript β’ Flutter Tools
β’ No issues found!
```
</details>
| 1.0 | Toggle buttons faint inner border / anti-aliasing - <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Build a ToggleButtons widget with the fill color the same as the outside border.
code to build the widget:
```dart
ToggleButtons(
fillColor: Colors.grey,
borderColor: Colors.grey,
selectedBorderColor: Colors.grey,
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('First'),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('Second'),
),
],
onPressed: (i) {},
isSelected: [false, true],
)
```
2. look closely, and see a faint outline
**Expected results:** <!-- what did you want to see? -->
- If the outline color, and the fill color are the same, there should be no faint white outline. but should fill seamlessly.
**Actual results:** <!-- what did you see? -->
- color does not actually matter.
- the border is painted in a way that these faint lines always present.
- note the vertical divider border also has faint outlines over the top and bottom borders.


<details>
<summary>Logs</summary>
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[β] Flutter (Channel beta, v1.15.17, on Mac OS X 10.15.4 19E266, locale en-US)
β’ Flutter version 1.15.17 at /Users/tyler/development/flutter
β’ Framework revision 2294d75bfa (5 weeks ago), 2020-03-07 00:28:38 +0900
β’ Engine revision 5aff311948
β’ Dart version 2.8.0 (build 2.8.0-dev.12.0 9983424a3c)
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
β’ Android SDK at /Users/tyler/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-29, build-tools 29.0.2
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.4)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.4, Build version 11E146
β’ CocoaPods version 1.8.4
[β] Chrome - develop for the web
β’ Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 43.0.1
β’ Dart plugin version 191.8593
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] IntelliJ IDEA Ultimate Edition (version 2019.3.4)
β’ IntelliJ at /Applications/IntelliJ IDEA.app
β’ Flutter plugin version 45.0.2
β’ Dart plugin version 193.6911.31
[β] VS Code (version 1.41.1)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 3.8.0
[β] Connected device (4 available)
β’ AOSP on IA Emulator β’ emulator-5554 β’ android-x86 β’ Android 9 (API 28) (emulator)
β’ iPhone 8 β’ 7C1F14C5-D20E-4199-9A03-BC010C61F63A β’ ios β’ com.apple.CoreSimulator.SimRuntime.iOS-13-2 (simulator)
β’ Chrome β’ chrome β’ web-javascript β’ Google Chrome 80.0.3987.163
β’ Web Server β’ web-server β’ web-javascript β’ Flutter Tools
β’ No issues found!
```
</details>
| non_main | toggle buttons faint inner border anti aliasing thank you for using flutter if you are looking for support please check out our documentation or consider asking a question on stack overflow if you have found a bug or if our documentation doesn t have an answer to what you re looking for then fill our the template below please read our guide to filing a bug first steps to reproduce build a togglebuttons widget with the fill color the same as the outside border code to build the widget dart togglebuttons fillcolor colors grey bordercolor colors grey selectedbordercolor colors grey children padding padding const edgeinsets all child text first padding padding const edgeinsets all child text second onpressed i isselected look closely and see a faint outline expected results if the outline color and the fill color are the same there should be no faint white outline but should fill seamlessly actual results color does not actually matter the border is painted in a way that these faint lines always present note the vertical divider border also has faint outlines over the top and bottom borders logs flutter channel beta on mac os x locale en us β’ flutter version at users tyler development flutter β’ framework revision weeks ago β’ engine revision β’ dart version build dev android toolchain develop for android devices android sdk version β’ android sdk at users tyler library android sdk β’ android ndk location not configured optional useful for native profiling support β’ platform android build tools β’ java binary at applications android studio app contents jre jdk contents home bin java β’ java version openjdk runtime environment build release β’ all android licenses accepted xcode develop for ios and macos xcode β’ xcode at applications xcode app contents developer β’ xcode build version β’ cocoapods version chrome develop for the web β’ chrome at applications google chrome app contents macos google chrome android studio version β’ android studio at applications android studio app contents β’ flutter plugin version β’ dart plugin version β’ java version openjdk runtime environment build release intellij idea ultimate edition version β’ intellij at applications intellij idea app β’ flutter plugin version β’ dart plugin version vs code version β’ vs code at applications visual studio code app contents β’ flutter extension version connected device available β’ aosp on ia emulator β’ emulator β’ android β’ android api emulator β’ iphone β’ β’ ios β’ com apple coresimulator simruntime ios simulator β’ chrome β’ chrome β’ web javascript β’ google chrome β’ web server β’ web server β’ web javascript β’ flutter tools β’ no issues found | 0 |
613,507 | 19,092,304,133 | IssuesEvent | 2021-11-29 13:26:03 | apache/airflow | https://api.github.com/repos/apache/airflow | closed | ti.duration is None inside the on_success callback if running dag completely | kind:bug priority:medium area:core | **Apache Airflow version**: 1.10.9
**Environment**: puckel/docker-airflow:1.10.9
**Others**: I'm using docker-compose.yml like this https://github.com/puckel/docker-airflow/blob/master/docker-compose-CeleryExecutor.yml
**What happened**:
If I run the dag using the "Trigger dag" button, or if it is run on schedule - the `duration` property of `context["ti"]` is None. If I trigger each task manually via UI - everything works as expected.
<!-- (please include exact error messages if you can) -->
```
{logging_mixin.py:112} INFO - None
{taskinstance.py:1030} ERROR - Failed when executing success callback
{taskinstance.py:1031} ERROR - unsupported type for timedelta seconds component: NoneType
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1028, in _run_raw_task
task.on_success_callback(context)
File "/usr/local/airflow/dags/pipeline.py", line 32, in send_notification
message += f", duration {str(timedelta(seconds=ti.duration)).split('.')[0]}"
TypeError: unsupported type for timedelta seconds component: NoneType
```
**What you expected to happen**:
I expect `context["ti"].duration` to have value for each successful task run
**How to reproduce it**:
My code is as simple as this:
```python
from datetime import timedelta
from airflow import DAG
from airflow.operators.dummy_operator import DummyOperator
def send_notification(context):
ti = context["ti"]
print(ti.duration)
task_state = ti.state
message = f"[{task_state}] - Task `{ti.task_id}`"
if task_state == "success":
message += f", duration {str(timedelta(seconds=ti.duration)).split('.')[0]}"
print(message)
DAG_DEFAULT_ARGS = {
...
'provide_context': True,
"on_success_callback": send_notification,
"on_failure_callback": send_notification,
"on_retry_callback": send_notification,
}
with DAG("test", schedule_interval="* * * * *", default_args=DAG_DEFAULT_ARGS) as dag:
start_task = DummyOperator(
task_id='start',
dag=dag,
)
end_task = DummyOperator(
task_id='end',
dag=dag,
)
start_task >> end_task
```
**Anything else we need to know**: It happens each time the dag is triggered completely and does not happen if I trigger each task manually via UI
| 1.0 | ti.duration is None inside the on_success callback if running dag completely - **Apache Airflow version**: 1.10.9
**Environment**: puckel/docker-airflow:1.10.9
**Others**: I'm using docker-compose.yml like this https://github.com/puckel/docker-airflow/blob/master/docker-compose-CeleryExecutor.yml
**What happened**:
If I run the dag using the "Trigger dag" button, or if it is run on schedule - the `duration` property of `context["ti"]` is None. If I trigger each task manually via UI - everything works as expected.
<!-- (please include exact error messages if you can) -->
```
{logging_mixin.py:112} INFO - None
{taskinstance.py:1030} ERROR - Failed when executing success callback
{taskinstance.py:1031} ERROR - unsupported type for timedelta seconds component: NoneType
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1028, in _run_raw_task
task.on_success_callback(context)
File "/usr/local/airflow/dags/pipeline.py", line 32, in send_notification
message += f", duration {str(timedelta(seconds=ti.duration)).split('.')[0]}"
TypeError: unsupported type for timedelta seconds component: NoneType
```
**What you expected to happen**:
I expect `context["ti"].duration` to have value for each successful task run
**How to reproduce it**:
My code is as simple as this:
```python
from datetime import timedelta
from airflow import DAG
from airflow.operators.dummy_operator import DummyOperator
def send_notification(context):
ti = context["ti"]
print(ti.duration)
task_state = ti.state
message = f"[{task_state}] - Task `{ti.task_id}`"
if task_state == "success":
message += f", duration {str(timedelta(seconds=ti.duration)).split('.')[0]}"
print(message)
DAG_DEFAULT_ARGS = {
...
'provide_context': True,
"on_success_callback": send_notification,
"on_failure_callback": send_notification,
"on_retry_callback": send_notification,
}
with DAG("test", schedule_interval="* * * * *", default_args=DAG_DEFAULT_ARGS) as dag:
start_task = DummyOperator(
task_id='start',
dag=dag,
)
end_task = DummyOperator(
task_id='end',
dag=dag,
)
start_task >> end_task
```
**Anything else we need to know**: It happens each time the dag is triggered completely and does not happen if I trigger each task manually via UI
| non_main | ti duration is none inside the on success callback if running dag completely apache airflow version environment puckel docker airflow others i m using docker compose yml like this what happened if i run the dag using the trigger dag button or if it is run on schedule the duration property of context is none if i trigger each task manually via ui everything works as expected logging mixin py info none taskinstance py error failed when executing success callback taskinstance py error unsupported type for timedelta seconds component nonetype traceback most recent call last file usr local lib site packages airflow models taskinstance py line in run raw task task on success callback context file usr local airflow dags pipeline py line in send notification message f duration str timedelta seconds ti duration split typeerror unsupported type for timedelta seconds component nonetype what you expected to happen i expect context duration to have value for each successful task run how to reproduce it my code is as simple as this python from datetime import timedelta from airflow import dag from airflow operators dummy operator import dummyoperator def send notification context ti context print ti duration task state ti state message f task ti task id if task state success message f duration str timedelta seconds ti duration split print message dag default args provide context true on success callback send notification on failure callback send notification on retry callback send notification with dag test schedule interval default args dag default args as dag start task dummyoperator task id start dag dag end task dummyoperator task id end dag dag start task end task anything else we need to know it happens each time the dag is triggered completely and does not happen if i trigger each task manually via ui | 0 |
530 | 3,925,715,902 | IssuesEvent | 2016-04-22 20:05:55 | heiglandreas/authLdap | https://api.github.com/repos/heiglandreas/authLdap | closed | bug in authLdap_show_password_fields | bug maintainer reply expected | There are some issues with hiding the password fields for a user who is authenticated using the authLdap plugin.
Here is my updated authLdap_show_password_fields function:
```
function authLdap_show_password_fields($return, $user)
{
if (!(isset($user) && $user->ID)) {
return true;
}
if (get_user_meta($user->ID, 'authLDAP')) {
return false;
}
return $return;
}
```
One other change is needed for the add_filter at the bottom of authLdap.php:
```
add_filter('show_password_fields', 'authLdap_show_password_fields', 10, 2);
```
| True | bug in authLdap_show_password_fields - There are some issues with hiding the password fields for a user who is authenticated using the authLdap plugin.
Here is my updated authLdap_show_password_fields function:
```
function authLdap_show_password_fields($return, $user)
{
if (!(isset($user) && $user->ID)) {
return true;
}
if (get_user_meta($user->ID, 'authLDAP')) {
return false;
}
return $return;
}
```
One other change is needed for the add_filter at the bottom of authLdap.php:
```
add_filter('show_password_fields', 'authLdap_show_password_fields', 10, 2);
```
| main | bug in authldap show password fields there are some issues with hiding the password fields for a user who is authenticated using the authldap plugin here is my updated authldap show password fields function function authldap show password fields return user if isset user user id return true if get user meta user id authldap return false return return one other change is needed for the add filter at the bottom of authldap php add filter show password fields authldap show password fields | 1 |
1,184 | 5,100,523,451 | IssuesEvent | 2017-01-04 12:32:12 | betaflight/betaflight | https://api.github.com/repos/betaflight/betaflight | closed | Revolt on 3.1 blackbox does not work | For Target Maintainer | Build 827 blackbox on a raceflight revolt does not work at all. | True | Revolt on 3.1 blackbox does not work - Build 827 blackbox on a raceflight revolt does not work at all. | main | revolt on blackbox does not work build blackbox on a raceflight revolt does not work at all | 1 |
125,122 | 17,835,445,853 | IssuesEvent | 2021-09-03 00:02:57 | tim-wsdemo/NG2 | https://api.github.com/repos/tim-wsdemo/NG2 | opened | CVE-2020-7598 (Medium) detected in multiple libraries | security vulnerability | ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>minimist-0.0.8.tgz</b>, <b>minimist-0.0.10.tgz</b>, <b>minimist-1.2.0.tgz</b></p></summary>
<p>
<details><summary><b>minimist-0.0.8.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz</a></p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- mkdirp-0.5.1.tgz
- :x: **minimist-0.0.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-0.0.10.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz</a></p>
<p>Path to dependency file: NG2/package.json</p>
<p>Path to vulnerable library: NG2/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- optimist-0.6.1.tgz
- :x: **minimist-0.0.10.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- forever-monitor-2.0.0.tgz
- chokidar-2.1.8.tgz
- fsevents-1.2.9.tgz
- node-pre-gyp-0.12.0.tgz
- rc-1.2.8.tgz
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/tim-wsdemo/NG2/commit/940ebc05c6b1d34afe46d8e9e0d4bde533d2b556">940ebc05c6b1d34afe46d8e9e0d4bde533d2b556</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"0.0.8","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;mkdirp:0.5.1;minimist:0.0.8","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"},{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"0.0.10","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;optimist:0.6.1;minimist:0.0.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"},{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"1.2.0","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;forever-monitor:2.0.0;chokidar:2.1.8;fsevents:1.2.9;node-pre-gyp:0.12.0;rc:1.2.8;minimist:1.2.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-7598","vulnerabilityDetails":"minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a \"constructor\" or \"__proto__\" payload.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598","cvss3Severity":"medium","cvss3Score":"5.6","cvss3Metrics":{"A":"Low","AC":"High","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | CVE-2020-7598 (Medium) detected in multiple libraries - ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>minimist-0.0.8.tgz</b>, <b>minimist-0.0.10.tgz</b>, <b>minimist-1.2.0.tgz</b></p></summary>
<p>
<details><summary><b>minimist-0.0.8.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz</a></p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- mkdirp-0.5.1.tgz
- :x: **minimist-0.0.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-0.0.10.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz">https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz</a></p>
<p>Path to dependency file: NG2/package.json</p>
<p>Path to vulnerable library: NG2/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- optimist-0.6.1.tgz
- :x: **minimist-0.0.10.tgz** (Vulnerable Library)
</details>
<details><summary><b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>
Dependency Hierarchy:
- forever-2.0.0.tgz (Root Library)
- forever-monitor-2.0.0.tgz
- chokidar-2.1.8.tgz
- fsevents-1.2.9.tgz
- node-pre-gyp-0.12.0.tgz
- rc-1.2.8.tgz
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/tim-wsdemo/NG2/commit/940ebc05c6b1d34afe46d8e9e0d4bde533d2b556">940ebc05c6b1d34afe46d8e9e0d4bde533d2b556</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"0.0.8","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;mkdirp:0.5.1;minimist:0.0.8","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"},{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"0.0.10","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;optimist:0.6.1;minimist:0.0.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"},{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"1.2.0","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"forever:2.0.0;forever-monitor:2.0.0;chokidar:2.1.8;fsevents:1.2.9;node-pre-gyp:0.12.0;rc:1.2.8;minimist:1.2.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-7598","vulnerabilityDetails":"minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a \"constructor\" or \"__proto__\" payload.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598","cvss3Severity":"medium","cvss3Score":"5.6","cvss3Metrics":{"A":"Low","AC":"High","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_main | cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries minimist tgz minimist tgz minimist tgz minimist tgz parse argument options library home page a href dependency hierarchy forever tgz root library mkdirp tgz x minimist tgz vulnerable library minimist tgz parse argument options library home page a href path to dependency file package json path to vulnerable library node modules minimist package json dependency hierarchy forever tgz root library optimist tgz x minimist tgz vulnerable library minimist tgz parse argument options library home page a href dependency hierarchy forever tgz root library forever monitor tgz chokidar tgz fsevents tgz node pre gyp tgz rc tgz x minimist tgz vulnerable library found in head commit a href found in base branch master vulnerability details minimist before could be tricked into adding or modifying properties of object prototype using a constructor or proto payload publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution minimist isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree forever mkdirp minimist isminimumfixversionavailable true minimumfixversion minimist packagetype javascript node js packagename minimist packageversion packagefilepaths istransitivedependency true dependencytree forever optimist minimist isminimumfixversionavailable true minimumfixversion minimist packagetype javascript node js packagename minimist packageversion packagefilepaths istransitivedependency true dependencytree forever forever monitor chokidar fsevents node pre gyp rc minimist isminimumfixversionavailable true minimumfixversion minimist basebranches vulnerabilityidentifier cve vulnerabilitydetails minimist before could be tricked into adding or modifying properties of object prototype using a constructor or proto payload vulnerabilityurl | 0 |
4,738 | 24,456,799,596 | IssuesEvent | 2022-10-07 07:33:54 | NaluKit/nalu | https://api.github.com/repos/NaluKit/nalu | closed | Remove annotation >>BuildWithNalu<< as it is not used | maintainance | It looks like the annotation `BuildWithNalu`is not used inside the whole framework.
* check if the class is used
* in case not ==> remove class | True | Remove annotation >>BuildWithNalu<< as it is not used - It looks like the annotation `BuildWithNalu`is not used inside the whole framework.
* check if the class is used
* in case not ==> remove class | main | remove annotation buildwithnalu as it is not used it looks like the annotation buildwithnalu is not used inside the whole framework check if the class is used in case not remove class | 1 |
762,912 | 26,736,311,465 | IssuesEvent | 2023-01-30 09:43:30 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.google.com - see bug description | priority-critical browser-focus-geckoview engine-gecko | <!-- @browser: Firefox Mobile 109.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 13; Mobile; rv:109.0) Gecko/109.0 Firefox/109.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/117512 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.google.com/
**Browser / Version**: Firefox Mobile 109.0
**Operating System**: Android 13
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: Unable to view ANY website in Landscape mode in FF Focus (Samsung S22 Ultra)
**Steps to Reproduce**:
FF Focus is not working in Landscape mode on samsung S22 Ultra. Test on multiple websites including Google.com
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230112150232</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2023/1/62efabfa-c7fd-479a-b11f-03e372f251ab)
_From [webcompat.com](https://webcompat.com/) with β€οΈ_ | 1.0 | www.google.com - see bug description - <!-- @browser: Firefox Mobile 109.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 13; Mobile; rv:109.0) Gecko/109.0 Firefox/109.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/117512 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.google.com/
**Browser / Version**: Firefox Mobile 109.0
**Operating System**: Android 13
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: Unable to view ANY website in Landscape mode in FF Focus (Samsung S22 Ultra)
**Steps to Reproduce**:
FF Focus is not working in Landscape mode on samsung S22 Ultra. Test on multiple websites including Google.com
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230112150232</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2023/1/62efabfa-c7fd-479a-b11f-03e372f251ab)
_From [webcompat.com](https://webcompat.com/) with β€οΈ_ | non_main | see bug description url browser version firefox mobile operating system android tested another browser yes chrome problem type something else description unable to view any website in landscape mode in ff focus samsung ultra steps to reproduce ff focus is not working in landscape mode on samsung ultra test on multiple websites including google com browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with β€οΈ | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.