Skip to content

Commit

Permalink
Update 4.0.13 (20231109)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-schieder committed Nov 9, 2023
2 parents 30b63b4 + d466a97 commit 68e77a9
Show file tree
Hide file tree
Showing 15 changed files with 136 additions and 10 deletions.
39 changes: 38 additions & 1 deletion .github/meta/update_labels_and_milestones.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
{
"name": "needs investigation",
"color": "e99695",
"description": "The cause for a bug is not clear enough, so it has to be investigated for some time",
},
{
"name": "performance",
Expand Down Expand Up @@ -111,18 +112,38 @@
"name": "question",
"color": "c5def5",
},
{
"name": "staging update",
"color": "1dfdb6",
},
],
"openslides-autoupdate-service": [
{
"name": "experiment",
"color": "ae268f",
},
],
"openslides-backend": [
{
"name": "migration",
"color": "a046d0",
"description": "Introduces a new migration",
},
{
"name": "translation",
"color": "c5def5",
},
],
"openslides-client": [
{
"name": "delete test instance",
"color": "56ee0a",
},
{
"name": "desktop",
"color": "fc3b8f",
"description": "size > 960px",
},
{
"name": "difficulty: easy",
"color": "fef2c0",
Expand All @@ -139,9 +160,20 @@
"name": "need test instance",
"color": "56ee0a",
},
{
"name": "phone",
"color": "fc3b8f",
"description": "size <=700px",
},
{
"name": "Safari/iOS",
"color": "ffaaff",
"description": "This issue involves apple devices",
},
{
"name": "tablet",
"color": "fc3b8f",
"description": "size <=960px; >700px",
},
{
"name": "test instance active",
Expand All @@ -150,10 +182,15 @@
{
"name": "translation",
"color": "c5def5",
"description": "Collection of issues related to translation",
},
{
"name": "ui",
"color": "d943ae",
},
],
}
milestones = ["4.1", "4.x"]
milestones = ["4.1", "4.2", "4.x"]

token = input("GitHub token: ")
g = Github(token)
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/project-automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Project automation
on:
workflow_call:
inputs:
resource_node_id:
required: true
type: string
status_value:
required: true
type: string
secrets:
AUTOMATION_APP_ID:
required: true
AUTOMATION_APP_INSTALLATION_ID:
required: true
AUTOMATION_APP_PRIVATE_KEY:
required: true

jobs:
workflow_call:
name: Set status
runs-on: ubuntu-latest
steps:
- uses: leonsteinhaeuser/project-beta-automations@v2.1.0
with:
gh_app_ID: ${{ secrets.AUTOMATION_APP_ID }}
gh_app_installation_ID: ${{ secrets.AUTOMATION_APP_INSTALLATION_ID }}
gh_app_secret_key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }}
organization: OpenSlides
project_id: 2
resource_node_id: ${{ inputs.resource_node_id }}
status_value: ${{ inputs.status_value }}
14 changes: 14 additions & 0 deletions .github/workflows/project-issue-closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Project automation
on:
issues:
types:
- closed

jobs:
issue_closed:
name: Issue closed
uses: ./.github/workflows/project-automation.yml
secrets: inherit
with:
resource_node_id: ${{ github.event.issue.node_id }}
status_value: "Done"
14 changes: 14 additions & 0 deletions .github/workflows/project-pull-request-closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Project automation
on:
pull_request_target:
types:
- closed

jobs:
pull_request_closed:
name: Pull request closed
uses: ./.github/workflows/project-automation.yml
secrets: inherit
with:
resource_node_id: ${{ github.event.pull_request.node_id }}
status_value: "Done"
15 changes: 15 additions & 0 deletions .github/workflows/project-pull-request-opened.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Project automation
on:
pull_request_target:
types:
- opened
- reopened

jobs:
pull_request_opened:
name: Pull request opened
uses: ./.github/workflows/project-automation.yml
secrets: inherit
with:
resource_node_id: ${{ github.event.pull_request.node_id }}
status_value: "Work in progress"
14 changes: 14 additions & 0 deletions .github/workflows/project-pull-request-review-requested.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Project automation
on:
pull_request_target:
types:
- review_requested

jobs:
pull_request_review_requested:
name: Pull request review requested
uses: ./.github/workflows/project-automation.yml
secrets: inherit
with:
resource_node_id: ${{ github.event.pull_request.node_id }}
status_value: "Review in progress"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.12
4.0.13
2 changes: 1 addition & 1 deletion openslides-auth-service
2 changes: 1 addition & 1 deletion openslides-autoupdate-service
2 changes: 1 addition & 1 deletion openslides-client
Submodule openslides-client updated 58 files
+6 −6 client/package-lock.json
+6 −2 client/src/app/gateways/base-icc-gateway.service.ts
+11 −2 client/src/app/gateways/http-stream/http-stream.ts
+19 −0 client/src/app/infrastructure/utils/validators/email.ts
+2 −2 client/src/app/site/base/base-filter.service/base-filter-list.service.ts
+45 −45 client/src/app/site/base/base-sort.service/base-sort-list.service.ts
+7 −10 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.html
+9 −14 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.scss
+6 −3 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.ts
+3 −3 client/src/app/site/modules/info/components/legal-notice-content/legal-notice-content.component.html
+1 −1 client/src/app/site/modules/site-wrapper/components/site-wrapper/site-wrapper.component.html
+1 −1 client/src/app/site/modules/user-components/components/user-detail-view/user-detail-view.component.html
+2 −1 client/src/app/site/modules/user-components/components/user-detail-view/user-detail-view.component.ts
+1 −1 ...es/login/pages/reset-password-confirm/components/reset-password-confirm/reset-password-confirm.component.ts
+3 −2 client/src/app/site/pages/login/pages/reset-password/components/reset-password/reset-password.component.ts
+3 −1 .../modules/list-of-speakers-content/components/list-of-speakers-content/list-of-speakers-content.component.ts
+1 −1 client/src/app/site/pages/meetings/modules/projector/modules/countdown-time/countdown-time.component.scss
+2 −2 client/src/app/site/pages/meetings/modules/projector/modules/countdown-time/countdown-time.component.ts
+1 −1 ...des/components/agenda-item-list-slide/components/agenda-item-list-slide/agenda-item-list-slide.component.ts
+1 −1 ...dules/slides/components/current-speaker-chyron-slide/components/current-speaker-chyron-slide.component.scss
+1 −1 ...tor/modules/slides/components/projector-countdown-slide/components/projector-countdown-slide.component.scss
+1 −1 ...t/src/app/site/pages/meetings/pages/agenda/modules/topics/modules/topic-poll/services/topic-poll.service.ts
+23 −7 ...dules/assignment-poll/components/assignment-poll-detail-content/assignment-poll-detail-content.component.ts
+1 −1 ...t/src/app/site/pages/meetings/pages/assignments/modules/assignment-poll/services/assignment-poll.service.ts
+1 −1 client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.html
+4 −0 client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.ts
+0 −2 client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.html
+0 −2 client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.ts
+0 −2 client/src/app/site/pages/meetings/pages/history/history.module.ts
+2 −2 ...site/pages/meetings/pages/home/pages/meeting-info/components/user-statistics/user-statistics.component.html
+3 −0 ...s/mediafiles/modules/mediafile-list/services/mediafile-list-export.service/mediafile-list-export.service.ts
+1 −1 ...s/meetings/pages/motions/modules/change-recommendations/services/motion-diff.service/motion-diff.service.ts
+1 −1 ...p/site/pages/meetings/pages/motions/modules/motion-poll/services/motion-poll.service/motion-poll.service.ts
+4 −5 ...eetings/pages/motions/pages/motion-blocks/components/motion-block-detail/motion-block-detail.component.html
+1 −1 ...ges/participant-detail-manage/components/participant-create-wizard/participant-create-wizard.component.html
+2 −1 ...pages/participant-detail-manage/components/participant-create-wizard/participant-create-wizard.component.ts
+1 −1 ...eetings/pages/participants/services/common/participant-controller.service/participant-controller.service.ts
+1 −1 client/src/app/site/pages/meetings/pages/polls/polls.subscription.ts
+5 −1 client/src/app/site/pages/meetings/pages/polls/view-models/view-option.ts
+1 −1 client/src/app/site/pages/meetings/services/load-font.service.ts
+2 −1 ...nt/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts
+1 −0 client/src/app/site/pages/meetings/view-models/view-meeting.ts
+27 −1 client/src/app/site/pages/organization/organization.subscription.ts
+3 −0 ...es/organization/pages/accounts/pages/account-detail/components/account-detail/account-detail.component.html
+6 −1 ...ages/organization/pages/accounts/pages/account-detail/components/account-detail/account-detail.component.ts
+5 −0 ...ommittee-detail-meeting/components/committee-detail-meeting-main/committee-detail-meeting-main.component.ts
+1 −1 ...ages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.html
+3 −2 .../pages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.ts
+12 −3 client/src/app/site/services/active-filters.service.ts
+3 −3 client/src/app/site/services/duration.service.spec.ts
+3 −4 client/src/app/site/services/duration.service.ts
+1 −1 client/src/app/site/services/global-search/definitions.ts
+12 −12 client/src/app/site/services/global-search/global-search.service.ts
+18 −1 client/src/app/site/services/openslides-status.service.spec.ts
+0 −4 client/src/app/site/services/openslides-status.service.ts
+60 −5 client/src/app/site/services/relation-manager.service.ts
+3 −3 client/src/app/worker/autoupdate/autoupdate-stream.ts
+21 −0 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 3 files
+1 −1 Dockerfile
+2 −2 go.mod
+4 −4 go.sum

0 comments on commit 68e77a9

Please sign in to comment.