Skip to content

Commit

Permalink
feat: new features added (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesan-Chandran authored Jul 19, 2024
1 parent 77b9621 commit d81c927
Show file tree
Hide file tree
Showing 97 changed files with 13,857 additions and 4,652 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
"semi": "warn"
},
"ignorePatterns": [
"out",
Expand Down
28 changes: 28 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Pull Request

### Description
Please include a summary of the changes and context. List any dependencies that are required for this change.

**Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)

### Types of Changes

- [ ] Documentation
- [ ] Development
- [ ] Bug Fix
- [ ] New Feature(s)
- [ ] Package Upgrade
- [ ] Others
- [ ] Version control
- [ ] Testing
- [ ] Release

### Checklist
- [ ] My code follows the style guidelines of this project
- [ ] Commit message follows our guidelines ([Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/))
- [ ] I have ran the lint locally before submission
- [ ] I have performed a self-review of my code
- [ ] I have made corresponding changes to the documentation


**Linked Issue** : [#Issue_Number](Issue_Link)
11 changes: 11 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: npm
directory: "/"
schedule:
interval: "weekly"
8 changes: 8 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@
"npm: watch-tests"
],
"problemMatcher": []
},
{
"type": "npm",
"script": "compile",
"group": "build",
"problemMatcher": [],
"label": "npm: compile",
"detail": "webpack --mode development --progress --watch"
}
]
}
42 changes: 34 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,46 @@

All notable changes to the "Fetch Client" extension will be documented in this file.

## v1.4.0 - October, 2022
### 🎉 New Features
- Import Postman collection (Postman Collection v2.1).
- OAuth2 added for request authorization.
- Pre-requests and conditions are added for Request execution.
- Tests and Variables are moved to PostFetch section.
- Types genreation added for JSON response.
- Added auto refresh in the request tabs when variables are modified.
- Added log for request and response in the output window.
- Added "View Log" button in the sidebar panel to open the log output window.
- Display the variables value when hovering over them.
- Import .env file in the Variable section.
- System variables are added to generate random dynamic data.
- The item in side bar will be focused when changing the request tab.
- Added show more option for larger response in the test case output.
- Added isJson(), regex, notContains options in the test.
- Added support for nested variables.
- "New Request" shortcut icon added in the Collection/Folder.
- Word wrap option added for response section.

### 🐛 Bug Fixes
- import from Curl ([#5](https://github.com/Ganesan-Chandran/vscode-fetch-client/issues/5)).

### Requirements
- Minimum required version of VSCode is v1.66.0

## v1.3.0 - September, 2022
### New Features
### 🎉 New Features
- Added the settings in the "Run All" Collection.
- Support for multiple iterations in "Run All" Collection.
- Can add delay between requests and iterations.
- Run the requests in sequential or parallel mode for multiple iterations.

### Bug Fixes
### 🐛 Bug Fixes

- import from Curl ([#5](https://github.com/Ganesan-Chandran/vscode-fetch-client/issues/5)).
- Not able to Duplicate the item in the folder.

## v1.2.0 - July, 2022
### New Features
### 🎉 New Features
- Support nested folder to the Collection.
- Run curl request (Under collection in the side bar).
- Import curl request (Under collection in the side bar) ([#5](https://github.com/Ganesan-Chandran/vscode-fetch-client/issues/5)).
Expand All @@ -25,12 +51,12 @@ All notable changes to the "Fetch Client" extension will be documented in this f
- File option added in Form in the request body.
- Full screen mode is added for resonse section.

### Bug Fixes
### 🐛 Bug Fixes

- Bearer Token as a variable does not work due to max length restriction ([#4](https://github.com/Ganesan-Chandran/vscode-fetch-client/issues/4)).

## v1.1.0 - June, 2022
### New Features
### 🎉 New Features
- Folder added to the Collection.
- Set environment variable from json response, headers and cookies.
- Support AWS Signature auth type.
Expand All @@ -43,15 +69,15 @@ All notable changes to the "Fetch Client" extension will be documented in this f
- Right click for context menu in Sidebar (History, Collection and Variable).
- Menu items added (Manage Cookies, View Error Log and Extension Settings)

### Bug Fixes
### 🐛 Bug Fixes

\-

### Requirements
- Minimum required version of VSCode is v1.65.0

## v1.0.0 - May, 2022
### New Features
### 🎉 New Features
- UI Customization and support VSCode Themes.
- Test Rest API request with GET, POST, PUT, PATCH, DELETE, HEAD and OPTIONS methods.
- Various authentications which are Basic Auth, Bearer Token and API Key.
Expand All @@ -65,6 +91,6 @@ All notable changes to the "Fetch Client" extension will be documented in this f
- Export/Import the Fecth Client's collections and environment variables.
- Add documentation/feedback for each request.

### Bug Fixes
### 🐛 Bug Fixes

\-
17 changes: 16 additions & 1 deletion icons/code.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions icons/dots.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions icons/plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d81c927

Please sign in to comment.