Skip to content

Commit 572c1ac

Browse files
Release 2.37.9 merge to main (#2810)
* Prelease of version 2.37.0 (#2795) * Prelease of version 2.37.0 * Remove unnecessary line. * comment out npm release step (#2798) * try IsolatedThreads option (#2800) * release fixes (#2802) * Revert "comment out npm release step (#2798)" (#2799) This reverts commit 8ededf4. * Added changefile missing. --------- Co-authored-by: Jeff Klouda <[email protected]>
1 parent 11216be commit 572c1ac

File tree

9 files changed

+68
-67
lines changed

9 files changed

+68
-67
lines changed

apps/teams-test-app/index_cdn.html

Lines changed: 2 additions & 2 deletions
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.36.0/js/MicrosoftTeams.min.js"
19-
integrity="sha384-Vg2zZJuta2CG1wHGm8f5belcapTREs0cxiGzaMgVWI/apjFxwHqOgYOon/OqPXP7"
18+
src="https://res.cdn.office.net/teams-js/2.37.0/js/MicrosoftTeams.min.js"
19+
integrity="sha384-+OMQ/6mqZshXOsxUMXFX4gtF5cMsJTNH6ldUO3QThAsuQyv7R0ZpnpJmvrsPwzf4"
2020
crossorigin="anonymous"
2121
></script>
2222
<div id="root"></div>

apps/teams-test-app/package.json

Lines changed: 1 addition & 1 deletion
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.36.0",
6+
"version": "2.37.0",
77
"scripts": {
88
"build": "pnpm build:bundle",
99
"build:bundle": "pnpm validate-test-schema && pnpm lint && webpack",
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "none",
3-
"comment": "Released 2.36.0",
3+
"comment": "Released 2.37.0.",
44
"packageName": "@microsoft/teams-js",
5-
"email": "baljesingh@microsoft.com",
5+
"email": "[email protected].com",
66
"dependentChangeType": "none"
77
}

change/@microsoft-teams-js-3bf442f2-393a-43fd-9d52-d09851ea25d4.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/teams-js/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# Change Log - @microsoft/teams-js
22

3-
This log was last generated on Tue, 01 Apr 2025 18:17:07 GMT and should not be manually modified.
3+
This log was last generated on Fri, 02 May 2025 19:11:28 GMT and should not be manually modified.
44

55
<!-- Start content -->
66

7+
## 2.37.0
8+
9+
Fri, 02 May 2025 19:11:28 GMT
10+
11+
### Minor changes
12+
13+
- Added `forceRefresh` optional argument in `getEligibilityInfo` API.
14+
715
## 2.36.0
816

917
Tue, 01 Apr 2025 18:17:07 GMT

packages/teams-js/README.md

Lines changed: 4 additions & 4 deletions
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.36.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.37.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.36.0/js/MicrosoftTeams.min.js"
49-
integrity="sha384-Vg2zZJuta2CG1wHGm8f5belcapTREs0cxiGzaMgVWI/apjFxwHqOgYOon/OqPXP7"
48+
src="https://res.cdn.office.net/teams-js/2.37.0/js/MicrosoftTeams.min.js"
49+
integrity="sha384-+OMQ/6mqZshXOsxUMXFX4gtF5cMsJTNH6ldUO3QThAsuQyv7R0ZpnpJmvrsPwzf4"
5050
crossorigin="anonymous"
5151
></script>
5252

5353
<!-- Microsoft Teams JavaScript API (via npm) -->
54-
<script src="node_modules/@microsoft/teams-js@2.36.0/dist/MicrosoftTeams.min.js"></script>
54+
<script src="node_modules/@microsoft/teams-js@2.37.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

Lines changed: 1 addition & 1 deletion
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.36.0",
4+
"version": "2.37.0",
55
"description": "Microsoft Client SDK for building app for Microsoft hosts",
66
"repository": {
77
"directory": "packages/teams-js",

pnpm-lock.yaml

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/releases/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resources:
1717
ref: refs/tags/release
1818

1919
extends:
20-
template: v1/Office.Unofficial.PipelineTemplate.yml@OfficePipelineTemplates
20+
template: v1/Office.Official.PipelineTemplate.yml@OfficePipelineTemplates
2121
parameters:
2222
pool:
2323
name: Azure-Pipelines-1ESPT-ExDShared

0 commit comments

Comments
 (0)