Skip to content

Commit 1edbfd7

Browse files
committed
Bump to webchat@main and rename packages
1 parent 93043a9 commit 1edbfd7

12 files changed

Lines changed: 1608 additions & 4222 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // []) as $L | (.devDependencies // {}) | to_entries | map(select(.key as $K | $L | contains([$K]) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
4444
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // []) as $L | (.dependencies // {}) | to_entries | map(select(.key as $K | $L | contains([$K]) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install --save-exact $PACKAGES_TO_BUMP || true",
4545
"bump:packages": "npm run bump --workspaces",
46-
"bump:samples": "cd samples && npm run bump --workspaces",
46+
"bump:samples": "cd samples && npm run bump",
4747
"docker": "npm run docker:up",
4848
"docker:down": "docker compose -f docker-compose-wsl2.yml down --rmi all",
4949
"docker:up": "docker compose -f docker-compose-wsl2.yml down && docker compose -f docker-compose-wsl2.yml up --build --scale chrome=4",

samples/04.api/e.piping-to-redux/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-customization-piping-to-redux",
2+
"name": "@msinternal/sample-customization-piping-to-redux",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/04.api/e.piping-to-redux/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -25,8 +28,7 @@
2528
]
2629
},
2730
"dependencies": {
28-
"botframework-webchat": "4.18.0",
29-
"punycode": "2.3.1",
31+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
3032
"react": "16.8.6",
3133
"react-dom": "16.8.6",
3234
"react-redux": "7.2.9",

samples/04.api/f.selectable-activity/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-customization-selectable-activity",
2+
"name": "@msinternal/sample-customization-selectable-activity",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/04.api/f.selectable-activity/",
@@ -11,6 +11,12 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
17+
"botframework-webchat-api": [
18+
"main"
19+
],
1420
"react": [
1521
"16.8.6",
1622
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,8 +27,8 @@
2127
]
2228
},
2329
"dependencies": {
24-
"botframework-webchat": "4.18.0",
25-
"botframework-webchat-api": "4.18.0",
30+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
31+
"botframework-webchat-api": "4.18.1-main.20250804.93043a9",
2632
"react": "16.8.6",
2733
"react-dom": "16.8.6"
2834
},

samples/04.api/g.chat-send-history/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-chat-send-history",
2+
"name": "@msinternal/sample-chat-send-history",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/04.api/g.chat-send-history/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,8 +24,7 @@
2124
]
2225
},
2326
"dependencies": {
24-
"botframework-webchat": "4.18.0",
25-
"punycode": "2.3.1",
27+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2628
"react": "16.8.6",
2729
"react-dom": "16.8.6",
2830
"use-state-with-ref": "0.1.0"

samples/04.api/h.clear-after-idle/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-clear-after-idle",
2+
"name": "@msinternal/sample-clear-after-idle",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/04.api/h.clear-after-idle/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,7 +24,7 @@
2124
]
2225
},
2326
"dependencies": {
24-
"botframework-webchat": "4.18.0",
27+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2528
"classnames": "2.5.1",
2629
"react": "16.8.6",
2730
"react-dom": "16.8.6"

samples/06.recomposing-ui/a.minimizable-web-chat/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-customization-minimizable-web-chat",
2+
"name": "@msinternal/sample-customization-minimizable-web-chat",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/06.recomposing-ui/a.minimizable-web-chat/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,7 +24,7 @@
2124
]
2225
},
2326
"dependencies": {
24-
"botframework-webchat": "4.18.0",
27+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2528
"classnames": "2.5.1",
2629
"react": "16.8.6",
2730
"react-dom": "16.8.6"

samples/06.recomposing-ui/b.speech-ui/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "sample-customization-speech-ui",
3-
"version": "0.0.0-0",
2+
"name": "@msinternal/sample-customization-speech-ui",
3+
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/06.recomposing-ui/b.speech-ui/",
66
"scripts": {
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -25,7 +28,7 @@
2528
]
2629
},
2730
"dependencies": {
28-
"botframework-webchat": "4.18.0",
31+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2932
"classnames": "2.5.1",
3033
"react": "16.8.6",
3134
"react-dom": "16.8.6",

samples/06.recomposing-ui/c.smart-display/package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "sample-customization-smart-display",
3-
"version": "0.0.0-0",
2+
"name": "@msinternal/sample-customization-smart-display",
3+
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/06.recomposing-ui/c.smart-display/",
66
"scripts": {
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -25,12 +28,12 @@
2528
]
2629
},
2730
"dependencies": {
28-
"botframework-webchat": "4.18.0",
31+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2932
"classnames": "2.5.1",
3033
"punycode": "2.3.1",
3134
"react": "16.8.6",
3235
"react-dom": "16.8.6",
33-
"react-film": "3.1.0",
36+
"react-film": "4.0.0",
3437
"react-redux": "7.2.9",
3538
"redux": "5.0.1"
3639
},

samples/06.recomposing-ui/d.plain-ui/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-customization-plain-ui",
2+
"name": "@msinternal/sample-customization-plain-ui",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/06.recomposing-ui/d.plain-ui/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,7 +24,7 @@
2124
]
2225
},
2326
"dependencies": {
24-
"botframework-webchat": "4.18.0",
27+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2528
"react": "16.8.6",
2629
"react-dom": "16.8.6"
2730
},

samples/06.recomposing-ui/e.extending-ui/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-customization-extending-ui",
2+
"name": "@msinternal/sample-customization-extending-ui",
33
"version": "0.1.0",
44
"private": true,
55
"homepage": "https://microsoft.github.io/BotFramework-WebChat/06.recomposing-ui/e.extending-ui/",
@@ -11,6 +11,9 @@
1111
"start": "npm run build -- --servedir=./public"
1212
},
1313
"pinDependencies": {
14+
"botframework-webchat": [
15+
"main"
16+
],
1417
"react": [
1518
"16.8.6",
1619
"using react@16.8.6 to make sure this is the minimum supported version"
@@ -21,7 +24,7 @@
2124
]
2225
},
2326
"dependencies": {
24-
"botframework-webchat": "4.18.0",
27+
"botframework-webchat": "4.18.1-main.20250804.93043a9",
2528
"react": "16.8.6",
2629
"react-dom": "16.8.6"
2730
},

0 commit comments

Comments
 (0)