Skip to content

chore: switch to version 2.3.6 after the release #2682

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

Merged
merged 1 commit into from
Apr 3, 2025
Merged
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
2 changes: 1 addition & 1 deletion arduino-ide-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arduino-ide-extension",
"version": "2.3.5",
"version": "2.3.6",
"description": "An extension for Theia building the Arduino IDE",
"license": "AGPL-3.0-or-later",
"scripts": {
4 changes: 2 additions & 2 deletions electron-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "electron-app",
"version": "2.3.5",
"version": "2.3.6",
"license": "AGPL-3.0-or-later",
"main": "./src-gen/backend/electron-main.js",
"dependencies": {
@@ -19,7 +19,7 @@
"@theia/preferences": "1.57.0",
"@theia/terminal": "1.57.0",
"@theia/workspace": "1.57.0",
"arduino-ide-extension": "2.3.5"
"arduino-ide-extension": "2.3.6"
},
"devDependencies": {
"@theia/cli": "1.57.0",
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arduino-ide",
"version": "2.3.5",
"version": "2.3.6",
"description": "Arduino IDE",
"repository": "https://github.com/arduino/arduino-ide.git",
"author": "Arduino SA",

Unchanged files with check annotations Beta

'arduino/board/succesfullyUninstalledPlatform',
'Successfully uninstalled platform {0}:{1}',
item.name,
item.installedVersion!

Check warning on line 86 in arduino-ide-extension/src/browser/boards/boards-list-widget.ts

GitHub Actions / check

Forbidden non-null assertion

Check warning on line 86 in arduino-ide-extension/src/browser/boards/boards-list-widget.ts

GitHub Actions / check

Forbidden non-null assertion
),
{ timeout: 3000 }
);
unregisterSubmenu(menuPath, this.menuRegistry)
),
...Array.from(commands.keys()).map((commandId, i) => {
const { label } = commands.get(commandId)!;

Check warning on line 115 in arduino-ide-extension/src/browser/contributions/boards-data-menu-updater.ts

GitHub Actions / check

Forbidden non-null assertion

Check warning on line 115 in arduino-ide-extension/src/browser/contributions/boards-data-menu-updater.ts

GitHub Actions / check

Forbidden non-null assertion
this.menuRegistry.registerMenuAction(menuPath, {
commandId,
order: String(i).padStart(4),
return undefined;
}
protected async run(commandId: string): Promise<any> {

Check warning on line 229 in arduino-ide-extension/src/browser/contributions/edit-contributions.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 229 in arduino-ide-extension/src/browser/contributions/edit-contributions.ts

GitHub Actions / check

Unexpected any. Specify a different type
const editor = await this.current();
if (editor) {
const action = editor.getAction(commandId);
fqbn,
});
if (user.length) {
(user as any).unshift(

Check warning on line 329 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 329 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type
nls.localize(
'arduino/examples/customLibrary',
'Examples from Custom Libraries'
);
}
if (name && fqbn && current.length) {
(current as any).unshift(

Check warning on line 337 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 337 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type
nls.localize('arduino/examples/for', 'Examples for {0}', name)
);
}
if (any.length) {
(any as any).unshift(

Check warning on line 342 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 342 in arduino-ide-extension/src/browser/contributions/examples.ts

GitHub Actions / check

Unexpected any. Specify a different type
nls.localize('arduino/examples/forAny', 'Examples for any board')
);
}
const userMenuPath = [...includeLibMenuPath, '3_contributed'];
const { user, rest } = LibraryPackage.groupByLocation(libraries);
if (rest.length) {
(rest as any).unshift(

Check warning on line 114 in arduino-ide-extension/src/browser/contributions/include-library.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 114 in arduino-ide-extension/src/browser/contributions/include-library.ts

GitHub Actions / check

Unexpected any. Specify a different type
nls.localize('arduino/library/arduinoLibraries', 'Arduino libraries')
);
}
if (user.length) {
(user as any).unshift(

Check warning on line 119 in arduino-ide-extension/src/browser/contributions/include-library.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 119 in arduino-ide-extension/src/browser/contributions/include-library.ts

GitHub Actions / check

Unexpected any. Specify a different type
nls.localize(
'arduino/library/contributedLibraries',
'Contributed libraries'
});
registry.registerCommand(UploadCertificate.Commands.OPEN_CERT_CONTEXT, {
execute: async (args: any) => {

Check warning on line 86 in arduino-ide-extension/src/browser/contributions/upload-certificate.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 86 in arduino-ide-extension/src/browser/contributions/upload-certificate.ts

GitHub Actions / check

Unexpected any. Specify a different type
this.contextMenuRenderer.render({
menuPath: ArduinoMenus.ROOT_CERTIFICATES__CONTEXT,
anchor: {
});
}
watch(uri: URI, opts: WatchOptions): Disposable {

Check warning on line 79 in arduino-ide-extension/src/browser/create/create-fs-provider.ts

GitHub Actions / check

'uri' is defined but never used. Allowed unused args must match /^_/u

Check warning on line 79 in arduino-ide-extension/src/browser/create/create-fs-provider.ts

GitHub Actions / check

'uri' is defined but never used. Allowed unused args must match /^_/u
return Disposable.NULL;
}