Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bunyan] remove '@theia/bunyan' extension #6651

Merged
merged 2 commits into from
Dec 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ cache:
- examples/browser/node_modules
- examples/electron/node_modules
- node_modules
- packages/bunyan/node_modules
- packages/callhierarchy/node_modules
- packages/console/node_modules
- packages/core/node_modules
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## v0.14.0

- [bunyan] removed [`@theia/bunyan`](https://github.com/eclipse-theia/theia/tree/b92a5673de1e9d1bdc85e6200486b92394200579/packages/bunyan) extension [#6651](https://github.com/eclipse-theia/theia/pull/6651)

## v0.13.0

- [console] added filtering support based on severity [#6486](https://github.com/eclipse-theia/theia/pull/6486)
Expand Down Expand Up @@ -68,7 +72,7 @@ Breaking changes:
allowing them to break out and manipulate shared data as cookies, local storage or even start service workers
for the main window as well as for each other. Now each webview will be deployed on own origin by default.
- Webview origin pattern can be configured with `THEIA_WEBVIEW_EXTERNAL_ENDPOINT` env variable. The default value is `{{uuid}}.webview.{{hostname}}`.
Here `{{uuid}}` and `{{hostname}}` are placeholders which get replaced at runtime with proper webview uuid
Here `{{uuid}}` and `{{hostname}}` are placeholders which get replaced at runtime with proper webview uuid
and [hostname](https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname) correspondingly.
- To switch to un-secure mode as before configure `THEIA_WEBVIEW_EXTERNAL_ENDPOINT` with `{{hostname}}` as a value.
You can also drop `{{uuid}}.` prefix, in this case, webviews still will be able to access each other but not the main window.
Expand Down
1 change: 0 additions & 1 deletion dev-packages/application-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"@theia/compression-webpack-plugin": "^3.0.0",
"@types/fs-extra": "^4.0.2",
"babel-loader": "^8.0.6",
"bunyan": "^1.8.10",
"circular-dependency-plugin": "^5.0.0",
"copy-webpack-plugin": "^4.5.0",
"css-loader": "^0.28.1",
Expand Down
9 changes: 0 additions & 9 deletions packages/bunyan/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions packages/bunyan/compile.tsconfig.json

This file was deleted.

47 changes: 0 additions & 47 deletions packages/bunyan/package.json

This file was deleted.

23 changes: 0 additions & 23 deletions packages/bunyan/src/node/bunyan-backend-module.ts

This file was deleted.

221 changes: 0 additions & 221 deletions packages/bunyan/src/node/bunyan-logger-server.ts

This file was deleted.

21 changes: 0 additions & 21 deletions packages/bunyan/src/package.spec.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"@primer/octicons-react": "^9.0.0",
"@theia/application-package": "^0.13.0",
"@types/body-parser": "^1.16.4",
"@types/bunyan": "^1.8.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^4.0.2",
"@types/lodash.debounce": "4.0.3",
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@
"@theia/editorconfig/lib/*": [
"packages/editorconfig/src/*"
],
"@theia/bunyan/lib/*": [
"packages/bunyan/src/*"
],
"@theia/console/lib/*": [
"packages/console/src/*"
],
Expand Down
Loading