Skip to content

Commit

Permalink
2.33.0 Prerelease (#2673)
Browse files Browse the repository at this point in the history
Result of `node tools/cli/prerelease.js` command
  • Loading branch information
TrevorJoelHarris authored Jan 9, 2025
1 parent 9d97f75 commit f1fe3da
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 37 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.32.0/js/MicrosoftTeams.min.js"
integrity="sha384-TOLACGjmwQohHyLubBrUeaUjuqYYAxJsVKufxV6VWXWEQepFpamUASNMMIhgJmoW"
src="https://res.cdn.office.net/teams-js/2.33.0/js/MicrosoftTeams.min.js"
integrity="sha384-hCfPVLNt9JPTceReb/qZGZR7IbUaPeoExYnER2H//kiykKfhcVEMVQiCR0eAtCCs"
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.32.0",
"version": "2.33.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.

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

This log was last generated on Fri, 13 Dec 2024 20:07:32 GMT and should not be manually modified.
This log was last generated on Thu, 09 Jan 2025 16:42:36 GMT and should not be manually modified.

<!-- Start content -->

## 2.33.0

Thu, 09 Jan 2025 16:42:36 GMT

### Minor changes

- Added `customTelemetry` capability under `copilot` to send app loading data to the host.

### Patches

- Explicitly use browser implementation of `debug` package to resolve polyfill issue.
- Moved uuidObject.ts from internal to public folder in preparation for exporting it.

## 2.32.0

Fri, 13 Dec 2024 20:07:32 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.32.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.33.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.32.0/js/MicrosoftTeams.min.js"
integrity="sha384-TOLACGjmwQohHyLubBrUeaUjuqYYAxJsVKufxV6VWXWEQepFpamUASNMMIhgJmoW"
src="https://res.cdn.office.net/teams-js/2.33.0/js/MicrosoftTeams.min.js"
integrity="sha384-hCfPVLNt9JPTceReb/qZGZR7IbUaPeoExYnER2H//kiykKfhcVEMVQiCR0eAtCCs"
crossorigin="anonymous"
></script>

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

0 comments on commit f1fe3da

Please sign in to comment.