Skip to content

Commit 82fe2d4

Browse files
Releasing2.12.0 (#1783)
Co-authored-by: jadahiya-MSFT <[email protected]>
1 parent 5d4be40 commit 82fe2d4

12 files changed

+26
-58
lines changed

apps/teams-test-app/index_cdn.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<body>
1616
<noscript>You need to enable JavaScript to run this app.</noscript>
1717
<script
18-
src="https://res.cdn.office.net/teams-js/2.11.0/js/MicrosoftTeams.min.js"
19-
integrity="sha384-eCh6qbZkXfEZapUgP+aGo0x6qEpGiryOoYXrQr6BLrtZ988BjkbaVyRh1rQef3q9"
18+
src="https://res.cdn.office.net/teams-js/2.12.0/js/MicrosoftTeams.min.js"
19+
integrity="sha384-H8/uiTqHq6b1eqm04U0wlhoD92qH4Ibgxrj4QLh8F5iomB4eqTdvi5dzPZkyKNxz"
2020
crossorigin="anonymous"
2121
></script>
2222
<div id="root"></div>

apps/teams-test-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"author": "Microsoft Teams",
55
"description": "Teams Test App utilizing Teams JavaScript client SDK to test Hosts",
6-
"version": "2.11.0",
6+
"version": "2.12.0",
77
"scripts": {
88
"build": "pnpm build:bundle",
99
"build:bundle": "pnpm lint && webpack",

change/@microsoft-teams-js-277568ef-041e-4cc5-8169-6c0f16f39cef.json

-7
This file was deleted.

change/@microsoft-teams-js-605a9adb-a799-4b74-be77-6ff1aabdf372.json

-7
This file was deleted.

change/@microsoft-teams-js-623bd4b5-7341-4b40-8392-62413766d29a.json

-7
This file was deleted.

change/@microsoft-teams-js-6fa795d7-0fc0-4847-8537-676a2be140ee.json

-7
This file was deleted.

change/@microsoft-teams-js-a26c1e08-e775-4b10-9284-03bd7bc8c64c.json

-7
This file was deleted.

change/@microsoft-teams-js-eb9caea7-2288-488f-b152-71a2a872e637.json

-7
This file was deleted.

change/@microsoft-teams-js-fdf3465b-f6f4-4631-b88c-9bcf27caf0ec.json

-7
This file was deleted.

packages/teams-js/CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
# Change Log - @microsoft/teams-js
22

3-
This log was last generated on Wed, 03 May 2023 18:17:38 GMT and should not be manually modified.
3+
This log was last generated on Wed, 07 Jun 2023 19:21:01 GMT and should not be manually modified.
44

55
<!-- Start content -->
66

7+
## 2.12.0
8+
9+
Wed, 07 Jun 2023 19:21:01 GMT
10+
11+
### Minor changes
12+
13+
- Embedded apps no longer incorrectly get their parameters wrapped in an array
14+
- Added `secondaryBrowser` capability and its open API to enable browsing experience for Apps
15+
- Deleted unnecessary 'export' from helper functions and deleted unused and unnecessary functions in `dialog` capability.
16+
- Updated `video.registerForVideoFrame` to support both media stream and shared frame
17+
- Added `closeSearch` to `search` capability
18+
19+
### Patches
20+
21+
- Added default value for Adaptive Card version to support adaptive card dialogs in Teams V1
22+
- Fixed exports in `video` capability
23+
724
## 2.11.0
825

926
Wed, 03 May 2023 18:17:38 GMT

packages/teams-js/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To install the stable [version](https://learn.microsoft.com/javascript/api/overv
2424

2525
### Production
2626

27-
You can reference these files directly [from here](https://res.cdn.office.net/teams-js/2.11.0/js/MicrosoftTeams.min.js) or point your package manager at them.
27+
You can reference these files directly [from here](https://res.cdn.office.net/teams-js/2.12.0/js/MicrosoftTeams.min.js) or point your package manager at them.
2828

2929
## Usage
3030

@@ -45,13 +45,13 @@ Reference the library inside of your `.html` page using:
4545
```html
4646
<!-- Microsoft Teams JavaScript API (via CDN) -->
4747
<script
48-
src="https://res.cdn.office.net/teams-js/2.11.0/js/MicrosoftTeams.min.js"
49-
integrity="sha384-eCh6qbZkXfEZapUgP+aGo0x6qEpGiryOoYXrQr6BLrtZ988BjkbaVyRh1rQef3q9"
48+
src="https://res.cdn.office.net/teams-js/2.12.0/js/MicrosoftTeams.min.js"
49+
integrity="sha384-H8/uiTqHq6b1eqm04U0wlhoD92qH4Ibgxrj4QLh8F5iomB4eqTdvi5dzPZkyKNxz"
5050
crossorigin="anonymous"
5151
></script>
5252

5353
<!-- Microsoft Teams JavaScript API (via npm) -->
54-
<script src="node_modules/@microsoft/teams-js@2.11.0/dist/MicrosoftTeams.min.js"></script>
54+
<script src="node_modules/@microsoft/teams-js@2.12.0/dist/MicrosoftTeams.min.js"></script>
5555

5656
<!-- Microsoft Teams JavaScript API (via local) -->
5757
<script src="MicrosoftTeams.min.js"></script>

packages/teams-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@microsoft/teams-js",
33
"author": "Microsoft Teams",
4-
"version": "2.11.0",
4+
"version": "2.12.0",
55
"description": "Microsoft Client SDK for building app for Microsoft hosts",
66
"repository": {
77
"directory": "packages/teams-js",

0 commit comments

Comments
 (0)