-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Upstream Catchup] Merge RC:master to develop_pwa #1152
Conversation
RocketChat#24630) * Fix time fields and add wrap up * fix lint * Regression: Fix missing hold time and wrap up time missing * On cancel wrapup close room * Fix lint * Fix wrong code * Oh boy I need more sleep * Cherrypick fix
…Import (RocketChat#24585) * Add setting to control avatar rotation * Fix users' and rooms' mentions, fix setUserAvatar error on import * Remove unrelated changes * Fix missing username on imported messages * Reverted some changes * Fixed mentions * Removed duplicated code * Fix RocketChat#23808 Co-authored-by: Pierre Lehnen <[email protected]>
* Update Apps-Engine * Update Apps-Engine
* updated links in readme * changed link to point to playlist * added email link * README: add missing verb Co-authored-by: Debdut Chakraborty <[email protected]>
Merge master into develop & Set version to 4.6.0-develop
Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.7 to 1.5.10. - [Release notes](https://github.com/unshiftio/url-parse/releases) - [Commits](unshiftio/url-parse@1.5.7...1.5.10) --- updated-dependencies: - dependency-name: url-parse dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#24666) Bumps [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) from 8.2.3 to 8.5.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws) --- updated-dependencies: - dependency-name: "@types/ws" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#24667) Bumps [ts-node](https://github.com/TypeStrong/ts-node) from 10.5.0 to 10.6.0. - [Release notes](https://github.com/TypeStrong/ts-node/releases) - [Commits](TypeStrong/ts-node@v10.5.0...v10.6.0) --- updated-dependencies: - dependency-name: ts-node dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…Chat#24574) Bumps [@types/mock-require](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mock-require) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mock-require) --- updated-dependencies: - dependency-name: "@types/mock-require" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@bhardwajaditya can you look at the build failure please? thanks... Also, can you cleanup please by closing any of the catchup merge PRs that are no longer needed or valid? |
@Shailesh351 please make a note here about adding the properties we might need to pass the lint checks.... thanks. |
@bhardwajaditya The build issue is because of but missing in https://github.com/WideChat/Rocket.Chat/blob/develop_pwa/client/views/omnichannel/triggers/TriggersForm.stories.js |
@bhardwajaditya still working on this one? |
…into develop_pwa-catchup-596881e
@bhardwajaditya please find the root cause of the latest failures because, as you suggest, these tests were added by us, and maybe this is an indication that we have lost something in the merge. |
@bhardwajaditya Any luck with this? Is there a chance we can wrap this one up soon? Thanks.... |
@ear-dev on it |
@ear-dev this is fixed after removing the action |
@bhardwajaditya I tested this against our testbot and everything is passing, so looks good to me. Nice job! thanks.... @Shailesh351 is there anything you would like to look at before we consider merging this? |
@Shailesh351 do we think this is ready to merge? It might be a good time to do it I think. At that point you will need to catchup with in the sns_logging_master branch |
@Shailesh351 have you had a chance to look at this yet? Just checking.... thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bhardwajaditya @ear-dev I found some issues which are just lost changes while fixing merge conflicts.
- In the
login.page.js
file belowwarningAlert
fn is removed, which is being used intests/cypress/integration/00b-login-offline.js
loginPage.warningAlert.should('be.visible');
get warningAlert() {
return browser.element('.alert-warning');
}
-
In
.github/pr-title-checker-config.json
“Upstream Catchup” is not there. I remember we added it.
10d5384 -
We lost
acc-ecr-push
in the.github/workflows/build_and_test.yml
, which pushes builds to our docker
acc-ecr-push:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/develop_pwa' && github.event_name == 'push' }}
needs: test
-
In the
app/lib/server/functions/insertMessage.js
we had check for message object and we added one propertypushm: Boolean,
in it. This check was moved to another fileapp/lib/server/functions/sendMessage.js
validateMessage fn
. And that properties is not there. -
In the
app/models/client/models/Roles.js
fileconst role = this.findOne(name);
but we are not gettingname
as fn argument we are gettingroleId
-
The
SideNav.js
file is refactored toSideNav.ts
. We added some changes in SideNav.js 9f54652 and in the .ts file we are not having it. Can you confirm if still require or it’s not more needed? -
The
getUserInfo.js
was refactored togetUserInfo.ts
. We added some changes in .js file we are not in .ts.
@bhardwajaditya any chance we'll have this ready today or tomorrow? |
@ear-dev yes for sure |
@Shailesh351 just want to get this done if possible before you're out next week...... thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Working fine locally.
Weekly Catchup PR to merge RC:master in develop_pwa.