Skip to content

Commit

Permalink
Releasing2.2.0 (#1286)
Browse files Browse the repository at this point in the history
Co-authored-by: jadahiya-MSFT <jadahiya-MSFT@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and jadahiya-MSFT committed Aug 3, 2022
1 parent e3aa7ff commit 97b134c
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 86 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.1.0/js/MicrosoftTeams.min.js"
integrity="sha384-OEWKU/EjpwI1kJsgIcTi+paZNbXiqihK8zg6Dg2cbyjoEaC674oCQMy00ie4caKi"
src="https://res.cdn.office.net/teams-js/2.2.0/js/MicrosoftTeams.min.js"
integrity="sha384-yBjE++eHeBPzIg+IKl9OHFqMbSdrzY2S/LW3qeitc5vqXewEYRWegByWzBN/chRh"
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.1.0",
"version": "2.2.0",
"scripts": {
"build": "yarn build:bundle",
"build:bundle": "yarn 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.

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

This log was last generated on Fri, 22 Jul 2022 16:36:44 GMT and should not be manually modified.
This log was last generated on Wed, 03 Aug 2022 19:21:51 GMT and should not be manually modified.

<!-- Start content -->

## 2.2.0

Wed, 03 Aug 2022 19:21:51 GMT

### Minor changes

- Added an optional error object to `ISpeakingState` interface to align `registerSpeakingStateChangeHandler` API with other API error handling.
- Added `ActionInfo` object to the `Context` interface. This is used to pass information about an action that was taken on content from the host to the application.
- Split single `CloudStorageProviderFile` action API into 3 action APIs

### Patches

- Added clarifying comment to `dialog.submit` to indicate the dialog is closed when `submit` is called.
- Updated reference documentation links for deprecated global `Context` interface to work with typedoc system.
- Added `FrameContexts.task` to `openChat` and `openGroupChat` in chat.ts
- Added `@beta` tags to new content action-related interfaces.
- Exported publicly documented global interfaces to enable use outside the SDK.

## 2.1.0

Fri, 22 Jul 2022 16:36: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://docs.microsoft.com/javascript/api/overvi

### Production

You can reference these files directly [from here](https://res.cdn.office.net/teams-js/2.1.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.2.0/js/MicrosoftTeams.min.js) or point your package manager at them.

## Usage

Expand All @@ -45,13 +45,13 @@ Reference the SDK inside of your `.html` page using:
```html
<!-- Microsoft Teams JavaScript API (via CDN) -->
<script
src="https://res.cdn.office.net/teams-js/2.1.0/js/MicrosoftTeams.min.js"
integrity="sha384-OEWKU/EjpwI1kJsgIcTi+paZNbXiqihK8zg6Dg2cbyjoEaC674oCQMy00ie4caKi"
src="https://res.cdn.office.net/teams-js/2.2.0/js/MicrosoftTeams.min.js"
integrity="sha384-yBjE++eHeBPzIg+IKl9OHFqMbSdrzY2S/LW3qeitc5vqXewEYRWegByWzBN/chRh"
crossorigin="anonymous"
></script>

<!-- Microsoft Teams JavaScript API (via npm) -->
<script src="node_modules/@microsoft/teams-js@2.1.0/dist/MicrosoftTeams.min.js"></script>
<script src="node_modules/@microsoft/teams-js@2.2.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.1.0",
"version": "2.2.0",
"description": "Microsoft Client SDK for building app for Microsoft hosts",
"repository": {
"directory": "packages/teams-js",
Expand Down

0 comments on commit 97b134c

Please sign in to comment.