The expectation is that every Promise chain will have at least one .catch() action to handle exceptions in the chain.
Similarly, in modern (ES7) JavaScript using async and await, the expectation is that there will be at least one try/catch clause to handle exceptions in the async code.
In the past, the requirement to handle Promise exceptions was relaxed and allowed to fail silently. Now, if you don’t handle exceptions, you will get the warning you’ve seen. In other words “allowing no exception handling” has been deprecated.
If you get that warning, you should refactor the code to include one of the above exception handling methods.