From 33b237f73fc1f65c42d0bc9c01dabcd32bad8094 Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Thu, 18 Jul 2019 16:26:28 +0000 Subject: [PATCH] GH-5743 `activationEvents` is required for plugins Fixes theia-ide/theia#5743 Signed-off-by: Akos Kitta --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ab557a257a3b..fe1ad73c7fb7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ Breaking changes: - [plugin] removed member `processOptions` from `AbstractHostedInstanceManager` as it is not initialized or used - [plugin] added basic support of activation events [#5622](https://github.com/theia-ide/theia/pull/5622) - `HostedPluginSupport` is refactored to support multiple `PluginManagerExt` properly + - Theia plugins should declare the `"activationEvents": ["*"]` entry in the root of the `package.json`. Otherwise, they won't start at app startup. See [#5743](https://github.com/theia-ide/theia/issues/5743) for more details. - [plugin] added support of `workspaceContains` activation events [#5649](https://github.com/theia-ide/theia/pull/5649) - [plugin] activate dependencies before activating a plugin [#5661](https://github.com/theia-ide/theia/pull/5661)