Hi, currently, our Code Editor is based on theia 1.38.0 and we have a class CustomWebSocketConnectionProvider that extends WebSocketConnectionProvider. As part of the class, we are overriding the functions createWebsocket and createWebSocketUrl. When we launch our Code Editor, the overridden functions are getting called with theia 1.38.0.
However, When we upgrade theia to 1.42.1, the createWebsocket and createWebSocketUrl of CustomWebSocketConnectionProvider class are not getting called. Fyi, we have few other classes which have custom logic. I think CustomWebSocketConnectionProvider is first part in entire workflow where it is not able to execute our custom functionality of the classes which is causing the socket connection to fail.
This is how we are binding:
bind(CustomWebSocketConnectionProvider).toSelf().inSingletonScope();
rebind(WebSocketConnectionProvider).toService(CustomWebSocketConnectionProvider);
I see that one of breaking changes after 1.38.0 is upgrade of inversify library. Do I need to change something in the above code or am I missing something else ?