Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ProxyAgent-NodeJS/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions ProxyAgent-Python/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions adaptive-card-notification/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions bot-sso/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions coffee-agent/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"version": "1.0.0",
"manifestVersion": "1.28",
"manifestVersion": "1.29",
"id": "${{TEAMS_APP_ID}}",
"name": {
"short": "CoffeeAgent${{APP_NAME_SUFFIX}}",
Expand Down
4 changes: 2 additions & 2 deletions copilot-connector-app/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions data-analyst-agent-v2/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"version": "1.0.0",
"manifestVersion": "1.28",
"manifestVersion": "1.29",
"id": "${{TEAMS_APP_ID}}",
"name": {
"short": "data-analyst-v2-${{APP_NAME_SUFFIX}}",
Expand Down
9 changes: 7 additions & 2 deletions data-analyst-agent-v2/tsup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { copyFileSync, mkdirSync, readdirSync } = require('fs');
const { copyFileSync, mkdirSync, readdirSync, existsSync } = require('fs');
const { join } = require('path');

/** @type {import('tsup').Options} */
Expand All @@ -19,7 +19,12 @@ module.exports = {
const distDataDir = join(__dirname, 'dist', 'data');

mkdirSync(distDataDir, { recursive: true });


if (!existsSync(srcDataDir)) {
console.warn('src/data directory not found, skipping static file copy');
return;
}

const files = readdirSync(srcDataDir);
for (const file of files) {
if (file.endsWith('.sql') || file.endsWith('.jsonl') || file.endsWith('.md') || file.endsWith('.db')) {
Expand Down
4 changes: 2 additions & 2 deletions developer-assist-dashboard/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions graph-toolkit-contact-exporter/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions graph-toolkit-one-productivity-hub/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions hello-world-in-meeting/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions hello-world-tab-docker/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions hello-world-tab-with-backend/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions large-scale-notification/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions live-share-dice-roller/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"version": "1.0.1",
"manifestVersion": "1.28",
"manifestVersion": "1.29",
"id": "${{TEAMS_APP_ID}}",
"name": {
"short": "DiceRollerLiveShare${{APP_NAME_SUFFIX}}",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions sso-enabled-tab-via-apim-proxy/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions stocks-update-notification-bot/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions team-central-dashboard/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions todo-list-SPFx/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"id": "${{TEAMS_APP_ID}}",
"version": "1.0.0",
"developer": {
Expand Down
4 changes: 2 additions & 2 deletions todo-list-with-Azure-backend-M365/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import addFormats from "ajv-formats";
import { Result } from "../resultType";
import { detectProjectType } from "../projectDetector";

const LATEST_MANIFEST_VERSION = "1.28.0";
const LATEST_MANIFEST_VERSION = "1.29.0";
const MANIFEST_PREVIEW_VERSION = "devPreview";

async function fetchSchema(schemaUrl: string): Promise<Record<string, unknown> | null> {
Expand Down
4 changes: 2 additions & 2 deletions validation-tool/test/data/manifest-valid.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.28/MicrosoftTeams.schema.json",
"manifestVersion": "1.28",
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.29/MicrosoftTeams.schema.json",
"manifestVersion": "1.29",
"version": "1.0.0",
"id": "${{TEAMS_APP_ID}}",
"developer": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ describe('validateTeamsAppManifest()', () => {
expect(result.name).toEqual("Teams App Manifest");
expect(result.failed.length).toBe(0);
expect(result.passed.length).toBe(1);
expect(result.warning[0]).toEqual("Manifest version(1.12) is NOT aligned with Microsoft 365 Agents Toolkit(1.28.0).");
expect(result.warning[0]).toEqual("Manifest version(1.12) is NOT aligned with Microsoft 365 Agents Toolkit(1.29.0).");
});
});
Loading