Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(release): merge dev into main branch #11147

Merged
merged 41 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
1140597
ci: fix lint pr error
wenytang-ms Mar 14, 2024
e17ffd4
Merge pull request #11083 from OfficeDev/wenyt/lint-pr
wenytang-ms Mar 14, 2024
b0b95c1
perf: add auth support for custom api (#11084)
KennethBWSong Mar 15, 2024
c867a5e
docs: show detailed error message in custom api template (#11093)
KennethBWSong Mar 15, 2024
d78c2b5
test: fix dashboard testing (#11088)
ayachensiyuan Mar 15, 2024
846264f
perf(spec-parser): add bearer token auth support (#11098)
SLdragon Mar 15, 2024
6d1c81c
refactor: string update (#11076)
yuqizhou77 Mar 15, 2024
d1a09e2
feat: the UI part of supporting AAD auth for API message extension (#…
huimiu Mar 15, 2024
eb7a951
fix: cli broken linnk (#11101)
jayzhang Mar 18, 2024
70bf02f
fix: hide e2e scaffold case for office addin (#11102)
jayzhang Mar 18, 2024
313c2a3
perf(sme): update to support local debug for api key (#11023)
SLdragon Mar 18, 2024
88ba4be
perf(spec-parser): add isRequired support for command params (#11106)
SLdragon Mar 18, 2024
e90f2bd
docs: add vs ttk related images for getting started usage (#11105)
Alive-Fish Mar 18, 2024
c63dc0c
feat: the UI part for the API Plugin template (#11104)
huimiu Mar 18, 2024
ddd4135
docs: update README.md for the Bot ME template (#11103)
huimiu Mar 18, 2024
fb5afed
docs: update readme and fix bug for custom api (#11108)
KennethBWSong Mar 18, 2024
521f1e2
test: fix sample connector validation (#11112)
ayachensiyuan Mar 19, 2024
78ab44b
perf(spec-parser): add api count in list result for telemetry (#11110)
SLdragon Mar 19, 2024
e00bf86
fix: spfx post request body limit (#11095)
yuqizhou77 Mar 19, 2024
467e961
docs: fix typo in readme (#11116)
KennethBWSong Mar 19, 2024
71a542d
test: change devtunnel client id (#11115)
ayachensiyuan Mar 19, 2024
46de7ac
feat: api me with aad auth template (#11092)
huimiu Mar 19, 2024
5edc378
docs: add some images for vs (#11117)
Alive-Fish Mar 19, 2024
c3c3e07
fix: custom copilot templates (#11122)
kuojianlu Mar 19, 2024
fb0cb34
refactor: return result after submission, avoid blocking other lifecy…
nliu-ms Mar 19, 2024
bf6ab2a
fix: cli flickering
anchenyi Mar 19, 2024
90dcd29
style: clean imports
anchenyi Mar 19, 2024
1f667a0
refactor: copilot plugin add API (#11128)
yuqizhou77 Mar 19, 2024
adbffcd
fix: validation error when AAD manifest does not contain accessToken …
blackchoey Mar 19, 2024
2a327dc
fix: telemetry (#11133)
yuqizhou77 Mar 19, 2024
ce4dd71
perf(spec-parser): update api key support (#11125)
SLdragon Mar 20, 2024
f049365
docs: change csharp readme for multiple profiles (#11118)
Alive-Fish Mar 20, 2024
c6110f2
test: change devtunnel client id (#11137)
ayachensiyuan Mar 20, 2024
f7afb04
fix: unit test and prompt output
anchenyi Mar 20, 2024
b6ae6ef
fix: add unit test
anchenyi Mar 20, 2024
ebe586f
fix: adjust unit test
anchenyi Mar 20, 2024
77f2c4a
style: format
anchenyi Mar 20, 2024
2f5decf
Merge pull request #11130 from OfficeDev/anchenyi/fix_cli_bug
anchenyi Mar 20, 2024
68c4dec
Merge branch 'dev' into siglud/shadow-main-after-publish
Siglud Mar 21, 2024
dddffdc
fix: fix ut error
Siglud Mar 21, 2024
150ebf1
Merge pull request #11143 from Siglud/siglud/shadow-main-after-publish
eriolchan Mar 21, 2024
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
5 changes: 0 additions & 5 deletions .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,6 @@ jobs:
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
- name: Add Pull Request Reviewer
uses: AveryCameronUofR/[email protected]
with:
reviewers: "MuyangAmigo"
token: ${{ secrets.GITHUB_TOKEN }}
- name: check origin or remote
id: remote
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rerun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
if: ${{ github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
env:
AZURE_CLIENT_ID: ${{ secrets.TEST_AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.TEST_AZURE_CLIENT_SECRET }}
AZURE_TENANT_ID: ${{ secrets.TEST_TENANT_ID }}
DEVTUNNEL_CLIENT_ID: ${{ secrets.TEST_CLEAN_CLIENT_ID }}
DEVTUNNEL_CLIENT_SECRET: ${{ secrets.TEST_CLEAN_CLIENT_SECRET }}
DEVTUNNEL_TENANT_ID: ${{ secrets.TEST_CLEAN_TENANT_ID }}
steps:
- name: wait for 60s
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
- name: clean devtunnel
run: |
curl -sL https://aka.ms/DevTunnelCliInstall | bash
~/bin/devtunnel user login --sp-tenant-id ${{env.AZURE_TENANT_ID}} --sp-client-id ${{env.AZURE_CLIENT_ID}} --sp-secret ${{env.AZURE_CLIENT_SECRET}}
~/bin/devtunnel user login --sp-tenant-id ${{env.DEVTUNNEL_TENANT_ID}} --sp-client-id ${{env.DEVTUNNEL_CLIENT_ID}} --sp-secret ${{env.DEVTUNNEL_CLIENT_SECRET}}
~/bin/devtunnel delete-all -f

- name: re-run failed jobs
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/ui-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
ADO_TOKEN: ${{ secrets.ADO_PAT }}
AUTO_TEST_PLAN_ID: ${{ github.event.inputs.source-testplan-id }}
TARGET_TEST_PLAN_NAME: ${{ github.event.inputs.target-testplan-name }}
AZURE_CLIENT_ID: ${{ secrets.TEST_AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.TEST_AZURE_CLIENT_SECRET }}
AZURE_TENANT_ID: ${{ secrets.TEST_TENANT_ID }}
DEVTUNNEL_CLIENT_ID: ${{ secrets.TEST_CLEAN_CLIENT_ID }}
DEVTUNNEL_CLIENT_SECRET: ${{ secrets.TEST_CLEAN_CLIENT_SECRET }}
DEVTUNNEL_TENANT_ID: ${{ secrets.TEST_CLEAN_TENANT_ID }}

steps:
- name: Init GitHub CLI
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- name: clean devtunnel
run: |
curl -sL https://aka.ms/DevTunnelCliInstall | bash
~/bin/devtunnel user login --sp-tenant-id ${{env.AZURE_TENANT_ID}} --sp-client-id ${{env.AZURE_CLIENT_ID}} --sp-secret ${{env.AZURE_CLIENT_SECRET}}
~/bin/devtunnel user login --sp-tenant-id ${{env.DEVTUNNEL_TENANT_ID}} --sp-client-id ${{env.DEVTUNNEL_CLIENT_ID}} --sp-secret ${{env.DEVTUNNEL_CLIENT_SECRET}}
~/bin/devtunnel delete-all -f

outputs:
Expand All @@ -198,8 +198,9 @@ jobs:
CLEAN_CLIENT_ID: ${{ secrets.TEST_CLEAN_CLIENT_ID }}
CLEAN_TENANT_ID: ${{ secrets.TEST_CLEAN_TENANT_ID }}

AZURE_CLIENT_ID: ${{ secrets.TEST_AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.TEST_AZURE_CLIENT_SECRET }}
DEVTUNNEL_CLIENT_ID: ${{ secrets.TEST_CLEAN_CLIENT_ID }}
DEVTUNNEL_CLIENT_SECRET: ${{ secrets.TEST_CLEAN_CLIENT_SECRET }}
DEVTUNNEL_TENANT_ID: ${{ secrets.TEST_CLEAN_TENANT_ID }}

M365_ACCOUNT_PASSWORD: ${{ secrets.TEST_M365_PASSWORD }}
M365_USERNAME: "[email protected]"
Expand Down Expand Up @@ -270,7 +271,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
curl -sL https://aka.ms/DevTunnelCliInstall | bash
~/bin/devtunnel user login --sp-tenant-id ${{env.AZURE_TENANT_ID}} --sp-client-id ${{env.AZURE_CLIENT_ID}} --sp-secret ${{env.AZURE_CLIENT_SECRET}}
~/bin/devtunnel user login --sp-tenant-id ${{env.DEVTUNNEL_TENANT_ID}} --sp-client-id ${{env.DEVTUNNEL_CLIENT_ID}} --sp-secret ${{env.DEVTUNNEL_CLIENT_SECRET}}

- name: Install devtunnel (windows)
if: matrix.os == 'windows-latest'
Expand All @@ -280,7 +281,7 @@ jobs:
$currentDirectory = (Get-Location).Path
$executablePath = Join-Path $currentDirectory "devtunnel.exe"
[System.Environment]::SetEnvironmentVariable("Path", "$currentPath;$executablePath", [System.EnvironmentVariableTarget]::Machine)
./devtunnel user login --sp-tenant-id ${{env.AZURE_TENANT_ID}} --sp-client-id ${{env.AZURE_CLIENT_ID}} --sp-secret ${{env.AZURE_CLIENT_SECRET}}
./devtunnel user login --sp-tenant-id ${{env.DEVTUNNEL_TENANT_ID}} --sp-client-id ${{env.DEVTUNNEL_CLIENT_ID}} --sp-secret ${{env.DEVTUNNEL_CLIENT_SECRET}}

- name: Downgrade PowerShell (win)
if: matrix.os == 'windows-latest'
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/visualstudio/debug/debug-button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ Telemetry collection is on by default. To opt out, please add the global option

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

## Extensibility Model

Teams Toolkit CLI depends on [fx-core](/packages/fx-core) and [api](/packages/api) packages. [fx-core](/packages/fx-core) is designed to be extensible. See [EXTENSIBILITY.md](/packages/api/EXTENSIBILITY.md) for more information.

## Contributing

Expand Down
2 changes: 2 additions & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.14",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "7.3.3",
"@types/keytar": "^4.4.2",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.0.4",
Expand Down Expand Up @@ -113,6 +114,7 @@
"express": "^4.18.2",
"figures": "^3.2.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.21",
"node-machine-id": "^1.1.12",
"open": "^8.2.1",
Expand Down
Loading
Loading