Skip to content

Commit d6dabb2

Browse files
Merge branch 'master' into invalid-text-check
2 parents bc8dbc0 + c5e57fd commit d6dabb2

File tree

31 files changed

+765
-507
lines changed

31 files changed

+765
-507
lines changed

.circleci/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,18 +223,27 @@ jobs:
223223
- aws-s3/sync:
224224
from: ~/react-widgets/packages/node_modules/@webex/widget-space/dist
225225
to: s3://${AWS_BUCKET}/widget-space/alpha
226+
- aws-s3/sync:
227+
from: ~/react-widgets/packages/node_modules/@webex/widget-space/dist
228+
to: s3://${AWS_BUCKET}/widget-space/latest
226229
- aws-s3/sync:
227230
from: ~/react-widgets/packages/node_modules/@webex/widget-space/dist
228231
to: s3://${AWS_BUCKET}/widget-space/archives/${VERSION_NUMBER}
229232
- aws-s3/sync:
230233
from: ~/react-widgets/packages/node_modules/@webex/widget-recents/dist
231234
to: s3://${AWS_BUCKET}/widget-recents/alpha
235+
- aws-s3/sync:
236+
from: ~/react-widgets/packages/node_modules/@webex/widget-recents/dist
237+
to: s3://${AWS_BUCKET}/widget-recents/latest
232238
- aws-s3/sync:
233239
from: ~/react-widgets/packages/node_modules/@webex/widget-recents/dist
234240
to: s3://${AWS_BUCKET}/widget-recents/archives/${VERSION_NUMBER}
235241
- aws-s3/sync:
236242
from: ~/react-widgets/packages/node_modules/@webex/widget-demo/dist
237243
to: s3://${AWS_BUCKET}/widget-demo/alpha
244+
- aws-s3/sync:
245+
from: ~/react-widgets/packages/node_modules/@webex/widget-demo/dist
246+
to: s3://${AWS_BUCKET}/widget-demo/latest
238247
- aws-s3/sync:
239248
from: ~/react-widgets/packages/node_modules/@webex/widget-demo/dist
240249
to: s3://${AWS_BUCKET}/widget-demo/archives/${VERSION_NUMBER}

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ module.exports = {
1616
'import/order': ['error', {
1717
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
1818
'newlines-between': 'always-and-inside-groups'
19-
}]
19+
}],
20+
'react/jsx-no-bind': 'warn'
2021
}
2122
}

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.41.0](https://github.com/webex/react-widgets/compare/v0.40.0...v0.41.0) (2021-10-06)
6+
7+
8+
### Tests
9+
10+
* **wdio:** add missed v4->v7 changes ([5886e58](https://github.com/webex/react-widgets/commit/5886e58))
11+
12+
13+
14+
## [0.40.0](https://github.com/webex/react-widgets/compare/v0.39.0...v0.40.0) (2021-10-06)
15+
16+
17+
### Features
18+
19+
* **space-widget:** add optional props for showSubmitButton and sendMessageOnReturnKey ([db2e226](https://github.com/webex/react-widgets/commit/db2e226))
20+
21+
22+
23+
## [0.39.0](https://github.com/webex/react-widgets/compare/v0.38.0...v0.39.0) (2021-10-04)
24+
25+
26+
### Bug Fixes
27+
28+
* add internal-plugin-support for uploading logs ([4d64ed2](https://github.com/webex/react-widgets/commit/4d64ed2))
29+
* correctly listen to meetings related events ([8d542b7](https://github.com/webex/react-widgets/commit/8d542b7))
30+
* update sdk and correct lock issues ([54344d7](https://github.com/webex/react-widgets/commit/54344d7))
31+
* use correct locus properties instead of old locus object ([27d75f6](https://github.com/webex/react-widgets/commit/27d75f6))
32+
33+
34+
### Tests
35+
36+
* update tests ([51ad68b](https://github.com/webex/react-widgets/commit/51ad68b))
37+
38+
39+
540
## [0.38.0](https://github.com/webex/react-widgets/compare/v0.37.0...v0.38.0) (2021-09-17)
641

742

0 commit comments

Comments
 (0)