Skip to content

Commit

Permalink
Releasing 2.24.0 (#2350)
Browse files Browse the repository at this point in the history
* Releasing 2.24.0

* authenticate to ISS Feed (#2349)

* Updated CHANGELOG

* Merged in main

* Merged in main

---------

Co-authored-by: Jeff Klouda <93734408+jekloudaMSFT@users.noreply.github.com>
  • Loading branch information
jadahiya-MSFT and jekloudaMSFT committed Jun 7, 2024
1 parent 77dc7d6 commit 3df5d71
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 66 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.23.0/js/MicrosoftTeams.min.js"
integrity="sha384-08XJvrutoSVYTA8PQeUgetTKn8B7JE73C5BdAfWnHZ5WnSFFQO6g1FGmSqxsrAzb"
src="https://res.cdn.office.net/teams-js/2.24.0/js/MicrosoftTeams.min.js"
integrity="sha384-79NK4sbfVpgLoDFqyfj18/S1Uj8jhLBeRGvKO1Cqw5634RznExQ90myY/qV/0gsN"
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.23.0",
"version": "2.24.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.

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

This log was last generated on Tue, 07 May 2024 20:54:35 GMT and should not be manually modified.
This log was last generated on Thu, 06 Jun 2024 17:06:18 GMT and should not be manually modified.

<!-- Start content -->

## 2.24.0

Thu, 06 Jun 2024 17:06:18 GMT

### Minor changes

- Added a new page property (isBackgroundLoad) for app context. This will be an indicator that the app is being loaded in the background.
- Added `uuid` parameter to `MessageRequest` and `MessageResponse` interfaces
- Updated `app.lifecycle.registerBeforeSuspendOrTerminateHandler` to be asynchronous, and updated `app.lifecycle.registerOnResumeHandler` to accept a new Handler type, changing `contentUrl` from `string` to `URL` object.

### Patches

- Made fix to function only used for testing

## 2.23.0

Tue, 07 May 2024 20:54:35 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.23.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.24.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.23.0/js/MicrosoftTeams.min.js"
integrity="sha384-08XJvrutoSVYTA8PQeUgetTKn8B7JE73C5BdAfWnHZ5WnSFFQO6g1FGmSqxsrAzb"
src="https://res.cdn.office.net/teams-js/2.24.0/js/MicrosoftTeams.min.js"
integrity="sha384-79NK4sbfVpgLoDFqyfj18/S1Uj8jhLBeRGvKO1Cqw5634RznExQ90myY/qV/0gsN"
crossorigin="anonymous"
></script>

<!-- Microsoft Teams JavaScript API (via npm) -->
<script src="node_modules/@microsoft/teams-js@2.23.0/dist/MicrosoftTeams.min.js"></script>
<script src="node_modules/@microsoft/teams-js@2.24.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.23.0",
"version": "2.24.0",
"description": "Microsoft Client SDK for building app for Microsoft hosts",
"repository": {
"directory": "packages/teams-js",
Expand Down
2 changes: 1 addition & 1 deletion tools/yaml-templates/android-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ steps:
- task: MavenAuthenticate@0
displayName: 'Authenticate machine'
inputs:
artifactsFeeds: 'LensSDKAndroidIA20'
artifactsFeeds: 'ISS_PublicPackages,LensSDKAndroidIA20'

- task: Bash@3
displayName: 'Run Android E2E Tests'
Expand Down

0 comments on commit 3df5d71

Please sign in to comment.