Skip to content

Commit 2f9b00b

Browse files
committed
Do not raise an exception when checking PlatformIO Core for updates and the Internet is off-line // Resolve platformio#2398
1 parent ad10ea3 commit 2f9b00b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## 2.3.2 (2021-??-??)
44

55
- Added a new setting ``platformio-ide.pioHomeServerHttpHost`` to set a custom host for PlatformIO Home (useful for dockerized environments) (issue [#2465](https://github.com/platformio/platformio-vscode-ide/issues/2465))
6+
- Updated PlatformIO Core installer to v1.0.2 ([changes](https://github.com/platformio/platformio-core-installer/releases/tag/v1.0.2)):
7+
* Do not raise an exception when checking PlatformIO Core for updates and the Internet is off-line (issue [#2398](https://github.com/platformio/platformio-vscode-ide/issues/2398))
68

79
## 2.3.1 (2021-03-23)
810

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -621,24 +621,24 @@
621621
"vscode:package": "webpack --mode production && vsce package"
622622
},
623623
"devDependencies": {
624-
"@babel/core": "~7.13.10",
624+
"@babel/core": "~7.13.15",
625625
"@types/node": "~12",
626626
"@types/vscode": "~1.44.0",
627627
"babel-eslint": "~10.1.0",
628628
"babel-loader": "~8.2.2",
629629
"babel-plugin-transform-class-properties": "~6.24.1",
630630
"babel-preset-env": "~1.7.0",
631-
"eslint": "~7.22.0",
631+
"eslint": "~7.24.0",
632632
"eslint-import-resolver-webpack": "~0.13.0",
633633
"eslint-plugin-import": "~2.22.1",
634634
"prettier": "~2.2.1",
635-
"vsce": "~1.87.0",
636-
"webpack": "~5.27.2",
637-
"webpack-cli": "~4.5.0"
635+
"vsce": "~1.87.1",
636+
"webpack": "~5.32.0",
637+
"webpack-cli": "~4.6.0"
638638
},
639639
"dependencies": {
640640
"fs-plus": "~3.1.1",
641-
"platformio-node-helpers": "~9.2.0",
641+
"platformio-node-helpers": "~9.2.2",
642642
"platformio-vscode-debug": "~1.3.1"
643643
},
644644
"extensionDependencies": [

0 commit comments

Comments
 (0)