Skip to content

Commit

Permalink
Update 4.0.5 (20230704)
Browse files Browse the repository at this point in the history
  • Loading branch information
peb-adr committed Jul 4, 2023
2 parents ddd2585 + 7c236cf commit 0a78b2a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.4
4.0.5
2 changes: 1 addition & 1 deletion openslides-backend
Submodule openslides-backend updated 88 files
+2 −0 dev/docker-compose.dev.yml
+4 −3 global/data/example-data.json
+2 −1 global/data/initial-data.json
+25 −8 global/meta/models.yml
+5 −2 openslides_backend/action/action.py
+17 −1 openslides_backend/action/actions/committee/committee_common_mixin.py
+1 −0 openslides_backend/action/actions/committee/create.py
+1 −0 openslides_backend/action/actions/committee/update.py
+3 −4 openslides_backend/action/actions/group/create.py
+15 −3 openslides_backend/action/actions/group/delete.py
+33 −0 openslides_backend/action/actions/group/group_mixin.py
+16 −3 openslides_backend/action/actions/group/update.py
+25 −1 openslides_backend/action/actions/meeting/create.py
+2 −2 openslides_backend/action/actions/meeting/import_.py
+29 −6 openslides_backend/action/actions/meeting/update.py
+3 −6 openslides_backend/action/actions/motion/create_base.py
+1 −1 openslides_backend/action/actions/motion/follow_recommendation.py
+13 −1 openslides_backend/action/actions/motion/mixins.py
+1 −1 openslides_backend/action/actions/motion/reset_recommendation.py
+4 −9 openslides_backend/action/actions/motion/reset_state.py
+1 −1 openslides_backend/action/actions/motion/set_recommendation.py
+4 −10 openslides_backend/action/actions/motion/set_state.py
+8 −12 openslides_backend/action/actions/motion/update.py
+1 −1 openslides_backend/action/actions/motion_state/create.py
+1 −1 openslides_backend/action/actions/motion_state/update.py
+3 −3 openslides_backend/action/actions/motion_workflow/create.py
+25 −2 openslides_backend/action/actions/organization/update.py
+24 −10 openslides_backend/action/actions/user/create.py
+2 −2 openslides_backend/action/actions/user/create_update_permissions_mixin.py
+8 −1 openslides_backend/action/actions/user/forget_password.py
+5 −0 openslides_backend/action/actions/user/forget_password_confirm.py
+11 −13 openslides_backend/action/actions/user/generate_new_password.py
+2 −11 openslides_backend/action/actions/user/password_mixin.py
+6 −1 openslides_backend/action/actions/user/reset_password_to_default.py
+26 −14 openslides_backend/action/actions/user/save_saml_account.py
+42 −21 openslides_backend/action/actions/user/send_invitation_email.py
+9 −0 openslides_backend/action/actions/user/set_password.py
+5 −2 openslides_backend/action/actions/user/set_password_self.py
+16 −2 openslides_backend/action/actions/user/update.py
+2 −1 openslides_backend/action/actions/user/update_self.py
+11 −0 openslides_backend/action/actions/user/user_mixin.py
+0 −1 openslides_backend/action/generics/create.py
+0 −1 openslides_backend/action/generics/update.py
+38 −0 openslides_backend/action/mixins/check_unique_name_mixin.py
+8 −0 openslides_backend/action/util/crypto.py
+354 −204 openslides_backend/i18n/messages/cs.po
+125 −35 openslides_backend/i18n/messages/de.po
+139 −25 openslides_backend/i18n/messages/es.po
+139 −27 openslides_backend/i18n/messages/it.po
+139 −20 openslides_backend/i18n/messages/ru.po
+15 −0 openslides_backend/migrations/migrations/0042_add_organization_genders.py
+61 −0 openslides_backend/migrations/migrations/0043_update_workflow_timestamp.py
+26 −2 openslides_backend/models/fields.py
+9 −6 openslides_backend/models/models.py
+1 −0 openslides_backend/presenter/__init__.py
+64 −0 openslides_backend/presenter/search_for_id_by_external_id.py
+60 −0 tests/system/action/committee/test_create.py
+58 −5 tests/system/action/committee/test_update.py
+103 −0 tests/system/action/group/test_create.py
+19 −68 tests/system/action/group/test_delete.py
+45 −22 tests/system/action/group/test_update.py
+61 −3 tests/system/action/meeting/test_create.py
+40 −1 tests/system/action/meeting/test_update.py
+5 −3 tests/system/action/motion/test_create.py
+1 −1 tests/system/action/motion/test_follow_recommendation.py
+1 −1 tests/system/action/motion/test_reset_recommendation.py
+7 −5 tests/system/action/motion/test_reset_state.py
+1 −1 tests/system/action/motion/test_set_recommendation.py
+4 −2 tests/system/action/motion/test_set_state.py
+36 −5 tests/system/action/motion/test_update.py
+2 −2 tests/system/action/motion_state/test_create.py
+2 −2 tests/system/action/motion_state/test_update.py
+135 −109 tests/system/action/organization/test_update.py
+1 −1 tests/system/action/test_action_worker.py
+64 −6 tests/system/action/user/test_create.py
+18 −0 tests/system/action/user/test_forget_password.py
+21 −1 tests/system/action/user/test_forget_password_confirm.py
+14 −4 tests/system/action/user/test_generate_new_password.py
+9 −0 tests/system/action/user/test_reset_password_to_default.py
+75 −0 tests/system/action/user/test_save_saml_account.py
+47 −1 tests/system/action/user/test_send_invitation_email.py
+11 −0 tests/system/action/user/test_set_password.py
+11 −0 tests/system/action/user/test_set_password_self.py
+36 −2 tests/system/action/user/test_update.py
+58 −0 tests/system/migrations/test_0042_add_organization_genders.py
+126 −0 tests/system/migrations/test_0043_update_workflow_timestamp.py
+3 −0 tests/system/presenter/test_check_database_all.py
+101 −0 tests/system/presenter/test_search_for_id_by_external_id.py
2 changes: 1 addition & 1 deletion openslides-client
Submodule openslides-client updated 97 files
+1 −1 .github/workflows/build.yml
+2 −2 Dockerfile.dev
+5 −2 client/karma.conf.js
+87 −101 client/package-lock.json
+3 −2 client/package.json
+2 −0 client/src/app/domain/models/comittees/committee.ts
+4 −0 client/src/app/domain/models/meetings/meeting.ts
+2 −2 client/src/app/domain/models/motions/motion-state.ts
+2 −0 client/src/app/domain/models/motions/motion.ts
+13 −0 client/src/app/domain/models/organizations/organization.ts
+2 −0 client/src/app/domain/models/users/group.ts
+2 −0 client/src/app/domain/models/users/user.ts
+5 −0 client/src/app/gateways/auth-adapter.service.ts
+4 −2 client/src/app/gateways/repositories/committee-repository.service.ts
+3 −1 client/src/app/gateways/repositories/groups/group-repository.service.ts
+12 −1 client/src/app/gateways/repositories/organization-repository.service.ts
+6 −1 client/src/app/gateways/repositories/users/user-repository.service.ts
+73 −0 client/src/app/infrastructure/utils/functions.ts
+1 −1 client/src/app/site/modules/global-headbar/components/account-dialog/account-dialog.component.html
+8 −1 client/src/app/site/modules/global-headbar/components/account-dialog/account-dialog.component.ts
+14 −2 client/src/app/site/modules/user-components/components/user-detail-view/user-detail-view.component.html
+51 −24 client/src/app/site/modules/user-components/components/user-detail-view/user-detail-view.component.ts
+10 −2 ...pp/site/modules/user-components/components/user-multiselect-actions/user-multiselect-actions.component.html
+18 −1 .../app/site/modules/user-components/components/user-multiselect-actions/user-multiselect-actions.component.ts
+52 −4 client/src/app/site/pages/login/pages/login-mask/components/login-mask/login-mask.component.html
+9 −0 client/src/app/site/pages/login/pages/login-mask/components/login-mask/login-mask.component.scss
+30 −0 client/src/app/site/pages/login/pages/login-mask/components/login-mask/login-mask.component.ts
+2 −0 client/src/app/site/pages/login/pages/login-mask/login-mask.module.ts
+1 −1 ...odules/list-of-speakers-content/components/list-of-speakers-content/list-of-speakers-content.component.html
+1 −1 ...odules/list-of-speakers-content/components/list-of-speakers-content/list-of-speakers-content.component.scss
+2 −0 ...ules/meetings-component-collector/detail-view/components/projectable-title/projectable-title.component.scss
+4 −1 client/src/app/site/pages/meetings/modules/poll/base/base-poll-detail.component.ts
+35 −4 client/src/app/site/pages/meetings/modules/poll/pipes/poll-key-verbose/poll-key-verbose.pipe.spec.ts
+42 −5 client/src/app/site/pages/meetings/modules/poll/pipes/poll-parse-number/poll-parse-number.pipe.spec.ts
+161 −5 client/src/app/site/pages/meetings/modules/poll/pipes/poll-percent-base/poll-percent-base.pipe.spec.ts
+4 −0 ...t/src/app/site/pages/meetings/pages/agenda/modules/topics/modules/topic-poll/services/topic-poll.service.ts
+5 −0 ...rc/app/site/pages/meetings/pages/agenda/pages/agenda-sort/components/agenda-sort/agenda-sort.component.scss
+1 −1 ...pages/assignments/modules/assignment-poll/components/assignment-poll-vote/assignment-poll-vote.component.ts
+1 −1 ...es/meetings/pages/mediafiles/modules/mediafile-list/components/mediafile-list/mediafile-list.component.html
+1 −0 client/src/app/site/pages/meetings/pages/motions/motions.subscription.ts
+6 −0 ...ages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html
+1 −1 ...p/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts
+8 −0 ...c/app/site/pages/meetings/pages/participants/modules/groups/components/group-list/group-list.component.html
+3 −1 ...src/app/site/pages/meetings/pages/participants/modules/groups/components/group-list/group-list.component.ts
+1 −1 ...icipants/pages/participant-detail/components/participant-detail-view/participant-detail-view.component.html
+2 −2 ...ges/participant-detail-manage/components/participant-create-wizard/participant-create-wizard.component.html
+48 −9 ...pages/participant-detail-manage/components/participant-create-wizard/participant-create-wizard.component.ts
+4 −3 ...tings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html
+0 −32 .../participant-list/components/participant-multiselect-actions/participant-multiselect-actions.component.html
+0 −0 .../participant-list/components/participant-multiselect-actions/participant-multiselect-actions.component.scss
+0 −24 ...rticipant-list/components/participant-multiselect-actions/participant-multiselect-actions.component.spec.ts
+0 −88 ...es/participant-list/components/participant-multiselect-actions/participant-multiselect-actions.component.ts
+1 −2 client/src/app/site/pages/meetings/pages/participants/pages/participant-list/participant-list.module.ts
+8 −0 ...icipants/pages/participant-list/services/participant-list-filter.service/participant-list-filter.service.ts
+2 −1 client/src/app/site/pages/meetings/services/active-meeting.subscription.ts
+4 −0 ...nt/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts
+2 −1 client/src/app/site/pages/meetings/view-models/view-meeting.ts
+4 −0 client/src/app/site/pages/meetings/view-models/view-user.ts
+1 −1 ...es/organization/pages/accounts/pages/account-detail/components/account-detail/account-detail.component.html
+6 −1 ...te/pages/organization/pages/accounts/pages/account-list/components/account-list/account-list.component.html
+1 −1 .../organization/pages/accounts/pages/account-list/services/account-list-search/account-list-search.service.ts
+8 −0 client/src/app/site/pages/organization/pages/accounts/services/common/account-filter.service.ts
+2 −1 client/src/app/site/pages/organization/pages/committees/committees.subscription.ts
+5 −0 ...-detail/modules/committee-detail-edit/components/committee-detail-edit/committee-detail-edit.component.html
+2 −1 ...ee-detail/modules/committee-detail-edit/components/committee-detail-edit/committee-detail-edit.component.ts
+5 −0 ...pages/committee-detail/modules/committee-detail-meeting/components/meeting-edit/meeting-edit.component.html
+2 −1 ...s/pages/committee-detail/modules/committee-detail-meeting/components/meeting-edit/meeting-edit.component.ts
+53 −0 ...ages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.html
+2 −1 ...ages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.scss
+35 −3 .../pages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.ts
+29 −4 client/src/app/site/pages/organization/services/organization-settings.service.ts
+39 −4 client/src/app/site/services/active-filters.service.spec.ts
+4 −0 client/src/app/site/services/auth.service.ts
+10 −3 client/src/app/site/services/user-controller.service.ts
+26 −8 client/src/app/ui/directives/autofocus/autofocus.directive.spec.ts
+43 −10 client/src/app/ui/modules/chip/components/chip/chip.component.spec.ts
+1 −0 client/src/app/ui/modules/chip/components/chip/chip.component.ts
+0 −17 client/src/app/ui/pipes/async/openslides-async.pipe.spec.ts
+0 −126 client/src/app/ui/pipes/async/openslides-async.pipe.ts
+46 −4 client/src/app/ui/pipes/entries/entries.pipe.spec.ts
+181 −4 client/src/app/ui/pipes/localized-date-range/localized-date-range.pipe.spec.ts
+8 −43 client/src/app/ui/pipes/localized-date-range/localized-date-range.pipe.ts
+20 −4 client/src/app/ui/pipes/localized-date/localized-date.pipe.spec.ts
+1 −1 client/src/app/ui/pipes/localized-date/localized-date.pipe.ts
+1 −8 client/src/app/ui/pipes/pipes.module.ts
+28 −3 client/src/app/ui/pipes/readable-bytes/readable-bytes.pipe.spec.ts
+18 −4 client/src/app/ui/pipes/reverse/reverse.pipe.spec.ts
+0 −8 client/src/app/ui/pipes/slice/openslides-slice.pipe.spec.ts
+0 −50 client/src/app/ui/pipes/slice/openslides-slice.pipe.ts
+23 −4 client/src/app/ui/pipes/time/time.pipe.spec.ts
+18 −3 client/src/app/ui/pipes/to-array/to-array.pipe.spec.ts
+1 −1 client/src/app/ui/pipes/to-array/to-array.pipe.ts
+41 −3 client/src/app/ui/pipes/to-string/to-string.pipe.spec.ts
+3 −0 client/src/app/ui/pipes/to-string/to-string.pipe.ts
+35 −4 client/src/app/ui/pipes/trust/trust.pipe.spec.ts
+10 −6 client/tests/integration/helpers/request.ts
+97 −16 client/tests/integration/login.spec.ts
2 changes: 1 addition & 1 deletion openslides-icc-service
Submodule openslides-icc-service updated 2 files
+1 −1 go.mod
+2 −2 go.sum
2 changes: 1 addition & 1 deletion openslides-media-service
2 changes: 1 addition & 1 deletion openslides-vote-service
Submodule openslides-vote-service updated 2 files
+5 −5 go.mod
+10 −10 go.sum

0 comments on commit 0a78b2a

Please sign in to comment.