Skip to content

Commit

Permalink
Merge pull request #136 from microsoft/main
Browse files Browse the repository at this point in the history
build: merge main branch to dev
  • Loading branch information
wenytang-ms authored Apr 15, 2024
2 parents b912daf + 57df0ef commit 3236dd2
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
node-version: lts/*

- uses: jossef/action-set-json-field@v1
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release == 'true' }}
if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.release == 'true' || github.ref == 'refs/heads/main') }}
with:
file: ./package.json
field: aiKey
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Build visx
run: |
npm install
npx @vscode/vsce package --no-dependencies
npx @vscode/vsce package --no-dependencies --githubBranch ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
- uses: actions/upload-artifact@v3
with:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.3.0

The 0.3.0 release of the Azure API Center extension for Visual Studio Code introduces new functionality to detect breaking changes between two OpenAPI specification documents and improves API discoverability by adding the ability to search for an API in the tree view.

### Features

- Search for APIs within an API Center from the tree view.
- Detect breaking changes between two OpenAPI specification documents. Breaking changes are shown in the `Problems` view and directly within the editor.

## 0.2.0

The 0.2.0 release of the Azure API Center extension for Visual Studio Code introduces new functionality to register APIs with API Center and shift-left API design conformance checks into Visual Studio Code as you build out APIs. It also includes bug fixes for APIs imported from Azure API Management to ensure APIs titles are properly displayed and interactable using the tree view.
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Shift-left API design conformance checks into Visual Studio Code with integrated

![linting](./media/integrated-lint.png)

Ensure that new API versions don't break API consumers with breaking change detection support, powered by Optic.

![Breaking Change Detection](./media/breaking-change.png)

### Discover

Find the right API, fast from your organization's hand-crafted API catalog with API Center.
Expand Down
Binary file added media/breaking-change.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "apidev",
"displayName": "Azure API Center",
"description": "Build, discover, and consume APIs.",
"version": "0.2.0",
"version": "0.3.0",
"icon": "media/api-center-icon.png",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -259,7 +259,7 @@
},
{
"command": "azure-api-center.cleanupSearchResult",
"whne": "never"
"when": "never"
}
]
},
Expand Down

0 comments on commit 3236dd2

Please sign in to comment.