Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update version to 1.1.2 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
joechung-msft authored Feb 25, 2022
1 parent 8c5d6af commit 111ec87
Show file tree
Hide file tree
Showing 10 changed files with 207 additions and 200 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode-test
node_modules
out
17 changes: 5 additions & 12 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,17 @@
*--------------------------------------------------------------------------------------------*/

module.exports = {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/array-type": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-object-literal-type-assertion": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-use-before-define": "off"
"@typescript-eslint/no-non-null-assertion": "off"
}
};
8 changes: 1 addition & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"prettier.requireConfig": true,
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"cSpell.words": [
"azureextensionui"
],
"typescript.tsdk": "node_modules\\typescript\\lib",
"eslint.validate": [
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
]
}
4 changes: 3 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
out/test/**
out/**/*.map
src/**
.eslintignore
.eslintrc.js
.gitattributes
.gitignore
.npmrc
NOTES.md
tsconfig.json
vsc-extension-quickstart.md
webpack.config.js
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to the "vscode-logicapps" extension will be documented in th

## [Unreleased]

## [1.1.2] - 2022-02-25
### Changed
- Update designer version to 2.20214.1.1

## [1.1.1] - 2022-01-28
### Changed
- Update designer version to 2.20117.1.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Use the Azure Logic Apps extension for VS Code to quickly create, debug, and man

## Requirements

You must have Visual Studio Code 1.31.0 (January 2019) or later to install the extension.
You must have Visual Studio Code 1.64.0 (January 2022) or later to install the extension.

All you need is an Azure Subscription to get started. If you don't have one, [click here](https://azure.microsoft.com/en-us/free/) for a free subscription.

Expand Down
341 changes: 176 additions & 165 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "vscode-logicapps",
"displayName": "Azure Logic Apps (Consumption)",
"description": "%extension.description%",
"version": "1.1.1",
"version": "1.1.2",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
"engines": {
"vscode": "^1.31.0"
"vscode": "^1.64.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -746,25 +746,25 @@
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.9",
"@types/node": "^14.18.12",
"@types/request-promise-native": "^1.0.18",
"@types/vscode": "^1.31.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"eslint-utils": "^3.0.0",
"mocha": "^9.2.0",
"mocha": "^9.2.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"vsce": "^2.6.5",
"vscode-test": "^1.6.1",
"webpack": "^5.67.0",
"vsce": "^2.6.7",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"azure-arm-logic": "^6.0.0",
"azure-arm-resource": "^3.0.0-preview",
"fs-extra": "^10.0.0",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

export class Constants {
public static DesignerVersion = "2.20117.1.2";
public static DesignerVersion = "2.20214.1.1";

public static SubscriptionContextValue = "azureextensionui.azureSubscription";

Expand Down
2 changes: 1 addition & 1 deletion src/test/runTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

const path = require("path");
const { runTests } = require("vscode-test");
const { runTests } = require("@vscode/test-electron");

async function main() {
try {
Expand Down

0 comments on commit 111ec87

Please sign in to comment.