Skip to content

Commit

Permalink
Version 1.3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-zal committed Jul 18, 2023
2 parents ccba8d8 + 341bf1b commit bd9f8e5
Show file tree
Hide file tree
Showing 42 changed files with 5,207 additions and 3,179 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = tab
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.yml]
indent_style = space
indent_size = 2
25 changes: 15 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "script"
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"integromat"
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {}
}
"rules": {
"semi": [2, "always"],
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-non-null-assertion": 0
}
}
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
target-branch: 'development'
commit-message:
prefix: 'build'
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ node_modules
.idea/workspace.xml
.idea/inspectionProfiles/Project_Default.xml
.DS_Store
local
local
out
65 changes: 36 additions & 29 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,39 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Language Server",
"port": 6009
},
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test"
]
}
]
}
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Language Server",
"port": 6009
},
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: compile"

}
]
}
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
3 changes: 3 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
.vscode/**
.vscode-test/**
.github/**
test/**
local
.gitignore
jsconfig.json
vsc-extension-quickstart.md
.eslintrc.json
**/*.ts
**/tsconfig.json
33 changes: 29 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# Change Log
Change Log
==========

1.3.22
------

### Fixed

- Module deletion
- Attempts to upload files not belonging to extension
- Error in case of parameters defined as rpc://

# Changes

- Temporary directory is removed on the end of extension lifecycle
- Prevent to remove empty JSON lines by autoformat
- Update `vm2` library to `3.9.19`
- Error handling improvement
- Remove `mkdirp` library - refactorize to build-in function
- Refactorize `request`, `request-promise` library to `axios`
- Update `jsonc-parser` library from `v2` to `v3`
- Update `jimp` library from `0.10.3` to `0.22.8`

### Removed

- Connection template "Digest auth"

## 1.3.19

Expand Down Expand Up @@ -76,7 +101,7 @@

### Updated

- Using Update instead of Publish on Web Hooks​​
- Using Update instead of Publish on Web Hooks
- Fixed Top Level string RPC calls in JSONCs
- Fixed Export Command

Expand Down Expand Up @@ -314,7 +339,7 @@

### Modified

- Updated API
- Updated API
- POST/PUT swap

## 1.0.11
Expand Down Expand Up @@ -469,4 +494,4 @@

## 1.0.0

Initial release
Initial release
Loading

0 comments on commit bd9f8e5

Please sign in to comment.