Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f661669
build: add cicd pipeline (#7)
blackchoey Apr 9, 2024
fcb15b5
build: move update version logic to workflow (#8)
blackchoey Apr 9, 2024
274c40e
build: Run CI on multiple python version (#38)
blackchoey Apr 30, 2024
4053b6a
Merge branch 'Azure:main' into main
blackchoey May 6, 2024
9213d64
Merge branch 'Azure:main' into main
blackchoey Jul 17, 2024
e6b30ef
Merge branch 'Azure:main' into main
blackchoey Sep 11, 2024
ac58b53
Merge branch 'Azure:main' into main
frankqianms Oct 10, 2024
ae37879
feat: enable openapi spec from url in api register (#74)
frankqianms Oct 16, 2024
c79e74d
test: update test case to setup live test pipeline (#76)
frankqianms Oct 28, 2024
431f152
refactor: add example (#77)
frankqianms Nov 7, 2024
3033efe
refactor: add @filename.json examples (#78)
frankqianms Nov 12, 2024
3dd0faf
refactor: add error handling (#79)
frankqianms Nov 20, 2024
9accd87
feat: support APIM/APIC sync (#80)
blackchoey Dec 3, 2024
6637b97
feat: resolve feedback and fix examples (#82)
blackchoey Dec 4, 2024
6614ef3
feat: amazon api gateway sync (#81)
frankqianms Dec 5, 2024
c2037a9
feat: add import amazon-api-gateway cmd (#83)
frankqianms Dec 12, 2024
472231f
fix: use older version API (#84)
blackchoey Dec 12, 2024
58016fd
feat: rename command and param names (#85)
blackchoey Dec 18, 2024
94f6719
test: add test case for sync cmd `apic integration create apim` and `…
frankqianms Dec 27, 2024
1d508f4
fix: workaround for urllib3 package (#88)
frankqianms Dec 27, 2024
4febe76
Revert "fix: workaround for urllib3 package (#88)" (#90)
frankqianms Jan 7, 2025
82117df
build: 1.2.0 beta 1 release
frankqianms Jan 10, 2025
b24de0a
build: remove CI and CD files
frankqianms Jan 10, 2025
e8a0ae1
doc: improve history
frankqianms Jan 13, 2025
3cbd6cb
fix: set extention version to be preview
frankqianms Jan 13, 2025
d2cf45b
refactor: integration examples and bad example for `apic update` (#91)
frankqianms Jan 13, 2025
e27473b
Merge branch 'dev' into v1.2.0b1
frankqianms Jan 13, 2025
23c543c
chore: update log
frankqianms Jan 13, 2025
856e997
test: add import-aws case and modify region
frankqianms Jan 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/apic-extension/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
Release History
===============

1.2.0b1
++++++++++++++++++

**New Features:**

* Added new command ``az apic integration create`` to manage integrations in Azure API Center.
* Added ``az apic integration create apim`` to manage Azure API Management integrations as an API source.
* Added ``az apic integration create aws`` to manage Amazon API Gateway as an API source.
* Added new command ``az apic import aws`` to import an API from an Amazon API Gateway instance.
* Added url option for ``--api-location`` parameter in ``az apic api register`` command.

**Updates:**

* Added examples for using ``@filename`` syntax in several commands' help documentations.
* Improved error messages for the ``az apic api register`` command.

**Fixes:**

* Corrected the example for ``az apic update`` command.
* Fixed an expired link in ``az apic api definition import-specification`` command's help documentation.

1.1.0
++++++++++++++++++

Expand Down
4 changes: 4 additions & 0 deletions src/apic-extension/azext_apic_extension/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@
text: |
az apic api register -g api-center-test -n contosoeuap --api-location "examples/cli-examples/spec-examples/openai.json" --environment-id public
az apic api register -g api-center-test -n contosoeuap --api-location "examples/cli-examples/spec-examples/openai.yml" --environment-id public
- name: Register api by providing spec url.
text: |
az apic api register -g api-center-test -n contosoeuap --api-location "https://petstore.swagger.io/v2/swagger.json" --environment-id public
az apic api register -g api-center-test -n contosoeuap --api-location "https://petstore.swagger.io/v2/swagger.yaml" --environment-id public
"""
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from .__cmd_group import *
from ._create import *
from ._delete import *
from ._import import *
from ._import_from_apim import *
from ._list import *
from ._show import *
Expand Down
Loading
Loading