Skip to content

Commit

Permalink
Prep for Release 2.29.0 (#2539)
Browse files Browse the repository at this point in the history
* release changes

* nit changefile

* Resetting to release 2.29.0 branch

* Fixed CDN hash bug in path of preRelease script (#2540)

* release related changes

* nit change file

---------

Co-authored-by: Jay Dahiya (from Dev Box) <jadahiya@microsoft.com>
Co-authored-by: jadahiya-MSFT <95651173+jadahiya-MSFT@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 4, 2024
1 parent a4f65a0 commit 021fec6
Show file tree
Hide file tree
Showing 21 changed files with 35 additions and 111 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.28.0/js/MicrosoftTeams.min.js"
integrity="sha384-gT2igbByugSUPXBgDA+rtfKk4JMSCfG+3DKSivyLqF2Riv4vTLqaC/tFpySw0eIM"
src="https://res.cdn.office.net/teams-js/2.29.0/js/MicrosoftTeams.min.js"
integrity="sha384-HCj4C0CvWvv0xKWpolDpLs3Q2f8+k4AUwYACBrszhvquzHsIUz1ZB6z1KLIQTnSW"
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.28.0",
"version": "2.29.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.

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

This log was last generated on Tue, 03 Sep 2024 22:19:52 GMT and should not be manually modified.
This log was last generated on Thu, 03 Oct 2024 22:51:48 GMT and should not be manually modified.

<!-- Start content -->

## 2.29.0

Thu, 03 Oct 2024 22:51:48 GMT

### Minor changes

- Added support for `externalAppAuthenticationForCEA` capability
- Added support for `externalAppCardActionsForCEA` capability.
- Added logging for current teamsjs instance and timestamps
- Added a Rollup built bundle of Teams-JS
- Added three properties to `ICallDetails`, `originalCallerInfo`, `dialedEntityInfo`, and `callId`, created a new type `ICallParticipantIdentifiers`, and deprecated the `originalCaller` and `dialedEntity` properties
- Updated `pages.navigateToApp` to now optionally accept a more type-safe input object
- Added logging for version on startup

### Patches

- Updated logging for messages to be clearer
- Added `edgeapi.svc.cloud.microsoft` to valid domains list
- Updated internal app id validation
- Unified common data models for external card actions into `externalAppCardActions` namespace.
- Updated types for `externalAppCardActionsForCEA` capability.

## 2.28.0

Tue, 03 Sep 2024 22:19:52 GMT
Expand Down Expand Up @@ -346,7 +368,7 @@ Fri, 03 Mar 2023 19:57:31 GMT

- Updated documentation for `dialog` and `tasks` capabilities
- Elaborated on various areas of `authentication` documentation
- Added @beta tags to `registerBeforeUnloadHandler` and `registerOnLoadHandler` APIs.
- Added @beta tags to `registerBeforeUnloadHandler` and `registerOnLoadHandler` APIs.

## 2.8.0

Expand All @@ -361,7 +383,7 @@ Wed, 01 Feb 2023 23:22:55 GMT

### Patches

- Added @beta tags to `registerBeforeUnloadHandler` and `registerOnLoadHandler` APIs.
- Added @beta tags to `registerBeforeUnloadHandler` and `registerOnLoadHandler` APIs.
- Updated typedoc version and fixed doc issues raised by it
- Added documentation for `dialog.submit`
- Changed user facing documentation associated with `meeting.ts`
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.28.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.29.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.28.0/js/MicrosoftTeams.min.js"
integrity="sha384-gT2igbByugSUPXBgDA+rtfKk4JMSCfG+3DKSivyLqF2Riv4vTLqaC/tFpySw0eIM"
src="https://res.cdn.office.net/teams-js/2.29.0/js/MicrosoftTeams.min.js"
integrity="sha384-HCj4C0CvWvv0xKWpolDpLs3Q2f8+k4AUwYACBrszhvquzHsIUz1ZB6z1KLIQTnSW"
crossorigin="anonymous"
></script>

<!-- Microsoft Teams JavaScript API (via npm) -->
<script src="node_modules/@microsoft/teams-js@2.28.0/dist/MicrosoftTeams.min.js"></script>
<script src="node_modules/@microsoft/teams-js@2.29.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.28.0",
"version": "2.29.0",
"description": "Microsoft Client SDK for building app for Microsoft hosts",
"repository": {
"directory": "packages/teams-js",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/cli/preRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const execShellCommand = async (cmd) => {
};

const buildAndGetIntegrityHash = async () => {
const relativePathToManifestJson = '../../packages/teams-js/dist/MicrosoftTeams-manifest.json';
const relativePathToManifestJson = '../../packages/teams-js/dist/umd/MicrosoftTeams-manifest.json';
const absolutePathToManifestJson = path.resolve(__dirname, relativePathToManifestJson);

console.log('Building @microsoft/teams-js');
Expand Down

0 comments on commit 021fec6

Please sign in to comment.