Skip to content

Commit

Permalink
Releasing 2.19.0 (#2119)
Browse files Browse the repository at this point in the history
* Releasing2.19.0

* Updated CHANGELOG

---------

Co-authored-by: jadahiya-MSFT <jadahiya-MSFT@users.noreply.github.com>
  • Loading branch information
jadahiya-MSFT and jadahiya-MSFT committed Jan 10, 2024
1 parent edef8cc commit 461df35
Show file tree
Hide file tree
Showing 25 changed files with 33 additions and 149 deletions.
4 changes: 2 additions & 2 deletions apps/teams-test-app/index_cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script
src="https://res.cdn.office.net/teams-js/2.18.0/js/MicrosoftTeams.min.js"
integrity="sha384-g8DoRkiR0ECQ9rwKIgY8GjQ5h0d2jp1347CmU/IRlyUHPjJZiFWEOYc+hFtT9MGL"
src="https://res.cdn.office.net/teams-js/2.19.0/js/MicrosoftTeams.min.js"
integrity="sha384-h+MoYshcGDPMLlXjHLt2dSgsgYyWQ+yHd4Ob13htDsu8trGPea8Vooa8+tLtRzU7"
crossorigin="anonymous"
></script>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion apps/teams-test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"author": "Microsoft Teams",
"description": "Teams Test App utilizing Teams JavaScript client SDK to test Hosts",
"version": "2.18.0",
"version": "2.19.0",
"scripts": {
"build": "pnpm build:bundle",
"build:bundle": "pnpm lint && webpack",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

26 changes: 25 additions & 1 deletion packages/teams-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
# Change Log - @microsoft/teams-js

This log was last generated on Thu, 30 Nov 2023 23:24:44 GMT and should not be manually modified.
This log was last generated on Wed, 10 Jan 2024 19:55:18 GMT and should not be manually modified.

<!-- Start content -->

## 2.19.0

Wed, 10 Jan 2024 19:55:18 GMT

### Minor changes

- Changed target TypeScript platform to ES2015 (aka ES6) from ES5
- Removed `cardActionsConfig` property from `externalAppCardActions.processActionSubmit` API
- Added `externalAppAuthentication` and `externalAppCardActions` 1P internal-only capabilities
- Added `size` property to internal `FilePreviewParameters` interface
- Added timeout notifications (2 seconds) to video frame processing in `videoEffectsEx` capability
- Added new feature to acquire list of valid origins from a CDN endpoint
- Updated the external app capabilities interfaces
- Added a new optional parameter, `shareOptions` to `meeting.shareAppContentToStage`. Apps can choose between collaborative and screen sharing for the protocol used when sharing an app to stage.
- Added support for drag and dropping files from third party storage providers using the `thirdPartyCloudStorage` capability
- Marked `composeExtension` property on `IQueryMessageExtensionResponse` as optional and added additional input validation on `externalAppAuthentication` and `externalAppCardActions` APIs
- Made `composeExtension` a required field on `IQueryMessageExtensionResponse`

### Patches

- Added support for `sharing` capability in default runtime for Teams mobile platform
- Updated runtime capabilities for webStorage to avoid duplicate entry
- Removed `app` and `app.lifecycle` from runtime.

## 2.18.0

Thu, 30 Nov 2023 23:24:44 GMT
Expand Down
8 changes: 4 additions & 4 deletions packages/teams-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To install the stable [version](https://learn.microsoft.com/javascript/api/overv

### Production

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

## Usage

Expand All @@ -45,13 +45,13 @@ Reference the library inside of your `.html` page using:
```html
<!-- Microsoft Teams JavaScript API (via CDN) -->
<script
src="https://res.cdn.office.net/teams-js/2.18.0/js/MicrosoftTeams.min.js"
integrity="sha384-g8DoRkiR0ECQ9rwKIgY8GjQ5h0d2jp1347CmU/IRlyUHPjJZiFWEOYc+hFtT9MGL"
src="https://res.cdn.office.net/teams-js/2.19.0/js/MicrosoftTeams.min.js"
integrity="sha384-h+MoYshcGDPMLlXjHLt2dSgsgYyWQ+yHd4Ob13htDsu8trGPea8Vooa8+tLtRzU7"
crossorigin="anonymous"
></script>

<!-- Microsoft Teams JavaScript API (via npm) -->
<script src="node_modules/@microsoft/teams-js@2.18.0/dist/MicrosoftTeams.min.js"></script>
<script src="node_modules/@microsoft/teams-js@2.19.0/dist/MicrosoftTeams.min.js"></script>

<!-- Microsoft Teams JavaScript API (via local) -->
<script src="MicrosoftTeams.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion packages/teams-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microsoft/teams-js",
"author": "Microsoft Teams",
"version": "2.18.0",
"version": "2.19.0",
"description": "Microsoft Client SDK for building app for Microsoft hosts",
"repository": {
"directory": "packages/teams-js",
Expand Down

0 comments on commit 461df35

Please sign in to comment.