Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Add breaking changelog entry
  • Loading branch information
msujew committed Feb 11, 2025
commit 39359eaa6c9ebf567bec01d46fe27ef1c666c457
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

- [Previous Changelogs](https://github.com/eclipse-theia/theia/tree/master/doc/changelogs/)

## 1.59.0

<a name="breaking_changes_1.59.0">[Breaking Changes:](#breaking_changes_1.59.0)</a>

- [core] Adjusted the binding of named `ILogger` injections. These no longer have to be bound explicitly.
If you encounter errors such as `Error: Ambiguous match found for serviceIdentifier: Symbol(ILogger)`, remove your bindings for the `ILogger` symbol.

## 1.58.0 - 01/30/2025

- [ai] added 'required' property to tool call parameters [#14673](https://github.com/eclipse-theia/theia/pull/14673)
Expand Down Expand Up @@ -33,7 +40,7 @@
- [core] added support for dragging files in browser [#14756](https://github.com/eclipse-theia/theia/pull/14756)
- [core] fixed dragging file from outside the workspace [#14746](https://github.com/eclipse-theia/theia/pull/14746)
- [core] fixed override of default key bindings [#14668](https://github.com/eclipse-theia/theia/pull/14668)
- [core] fixed workbench.action.files.newUntitledFile [#0](https://github.com/eclipse-theia/theia/pull/0)
- [core] fixed `workbench.action.files.newUntitledFile` command [#14754](https://github.com/eclipse-theia/theia/pull/14754)
- [core] fixed z-index overlay issue in dock panels [#14695](https://github.com/eclipse-theia/theia/pull/14695)
- [core] updated build scripts to use npm instead of yarn to build Theia [#14481](https://github.com/eclipse-theia/theia/pull/14481) - Contributed on behalf of STMicroelectronics
- [core] updated keytar and drivelist [#14306](https://github.com/eclipse-theia/theia/pull/14306)
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/node/logger-cli-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class LogLevelCliContribution implements CliContribution {
}

if (args['log-file'] !== undefined) {
let filename: string = args['log-file'] as string;
let filename = args['log-file'] as string;
try {
filename = path.resolve(filename);
try {
Expand All @@ -111,7 +111,7 @@ export class LogLevelCliContribution implements CliContribution {
const oldFilename = `${filename}.${stat.ctime.toISOString().replace(/:/g, '-')}.old`;
await fs.rename(filename, oldFilename);
}
} catch (err) {
} catch {
// File does not exist, just continue to create it
}
await fs.writeFile(filename, '');
Expand Down
Loading