Skip to content

Commit 76e4f87

Browse files
Releasing 2.15.0 (#1913)
* Releasing2.15.0 * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: jadahiya-MSFT <[email protected]>
1 parent 5b9be17 commit 76e4f87

17 files changed

+28
-93
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.14.0/js/MicrosoftTeams.min.js"
19-
integrity="sha384-+DItxkmrHBjTqyGZe60m2HxjR/eDhdYpaTux8gT9/YqHSMxASoTe+Y66GvNEMT8k"
18+
src="https://res.cdn.office.net/teams-js/2.15.0/js/MicrosoftTeams.min.js"
19+
integrity="sha384-fTDbgjG+RKtC2IyKV3r1o0xdxY4oV1v53uPHwPJTmTddvDm2ats9JWRAbtouZx4C"
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.14.0",
6+
"version": "2.15.0",
77
"scripts": {
88
"build": "pnpm build:bundle",
99
"build:bundle": "pnpm lint && webpack",

change/@microsoft-teams-js-160c4fe1-6197-4ca0-b2da-23878826bebe.json

-7
This file was deleted.

change/@microsoft-teams-js-1ca9663b-733f-4143-80b8-7dfa2ffbebe0.json

-7
This file was deleted.

change/@microsoft-teams-js-366e2b27-1f0c-4e02-a0e0-b7236f076835.json

-7
This file was deleted.

change/@microsoft-teams-js-6a495705-6f79-4d54-9a4c-ba9a154c0406.json

-7
This file was deleted.

change/@microsoft-teams-js-7edb88fb-c70a-4a3c-a006-20d9bae87fd6.json

-7
This file was deleted.

change/@microsoft-teams-js-af7d5389-9795-4d64-8917-672139b9b1e7.json

-7
This file was deleted.

change/@microsoft-teams-js-b3109727-ff31-4dcb-bafc-b21748d8ce7b.json

-7
This file was deleted.

change/@microsoft-teams-js-bbc2d237-0493-4993-a622-1e2121db3775.json

-7
This file was deleted.

change/@microsoft-teams-js-cc1d35f9-c5f8-4d2b-9161-2d3c53d6d593.json

-7
This file was deleted.

change/@microsoft-teams-js-d4042098-142c-4713-8226-3d5b8f2ced29.json

-7
This file was deleted.

change/@microsoft-teams-js-f0a3858b-d453-42bf-9bbc-255012803b04.json

-7
This file was deleted.

change/@microsoft-teams-js-f73124e4-b3fd-4cb2-89d4-e382d5346294.json

-7
This file was deleted.

packages/teams-js/CHANGELOG.md

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

3-
This log was last generated on Wed, 02 Aug 2023 14:49:19 GMT and should not be manually modified.
3+
This log was last generated on Wed, 06 Sep 2023 20:30:49 GMT and should not be manually modified.
44

55
<!-- Start content -->
66

7+
## 2.15.0
8+
9+
Wed, 06 Sep 2023 20:30:49 GMT
10+
11+
### Minor changes
12+
13+
- Removed `appNotification` capability and collateral
14+
- Added `clipboard` capability, allowing access to the system clipboard programmatically
15+
- Added MacOS support
16+
17+
### Patches
18+
19+
- Added macOS to mobile list as macOS is also frameless.
20+
- Replaced `window` references with `ssrSafeWindow`
21+
- Added logging to help investigate dropped messages from hosts or embedded apps.
22+
- Added telemetry for video frame processing
23+
- Fixed issue that resulted in dropping first few frames when using the video capability
24+
- Added `surfaceHub` to the list of host client types that send authenticate requests to the host instead of opening an auth window
25+
726
## 2.14.0
827

928
Wed, 02 Aug 2023 14:49:19 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.14.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.15.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.14.0/js/MicrosoftTeams.min.js"
49-
integrity="sha384-+DItxkmrHBjTqyGZe60m2HxjR/eDhdYpaTux8gT9/YqHSMxASoTe+Y66GvNEMT8k"
48+
src="https://res.cdn.office.net/teams-js/2.15.0/js/MicrosoftTeams.min.js"
49+
integrity="sha384-fTDbgjG+RKtC2IyKV3r1o0xdxY4oV1v53uPHwPJTmTddvDm2ats9JWRAbtouZx4C"
5050
crossorigin="anonymous"
5151
></script>
5252

5353
<!-- Microsoft Teams JavaScript API (via npm) -->
54-
<script src="node_modules/@microsoft/teams-js@2.14.0/dist/MicrosoftTeams.min.js"></script>
54+
<script src="node_modules/@microsoft/teams-js@2.15.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.14.0",
4+
"version": "2.15.0",
55
"description": "Microsoft Client SDK for building app for Microsoft hosts",
66
"repository": {
77
"directory": "packages/teams-js",

0 commit comments

Comments
 (0)