Skip to content

Commit

Permalink
Update integration to 2.3.0-47
Browse files Browse the repository at this point in the history
  • Loading branch information
kronn committed Nov 18, 2024
1 parent add83a2 commit 4b67e9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 88 files
+5 −5 .github/actions/core-ci-setup/action.yml
+0 −24 .github/actions/wagon-ci-setup/action.yml
+2 −2 .github/workflows/prepare.yml
+29 −6 .github/workflows/release.yml
+31 −3 .github/workflows/stage-settings.yml
+3 −1 .github/workflows/tests.yml
+1 −1 .github/workflows/update_image.yml
+5 −2 .github/workflows/wagon-tests.yml
+0 −7 .index.yml
+1 −0 Gemfile
+8 −11 Gemfile.lock
+1 −1 VERSION
+7 −2 app/controllers/concerns/async_download.rb
+1 −0 app/controllers/group/log_controller.rb
+1 −0 app/controllers/group/person_add_requests_controller.rb
+1 −1 app/decorators/paginating_decorator.rb
+2 −1 app/domain/export/pdf/invoice.rb
+3 −1 app/domain/export/pdf/invoice/payment_slip_qr.rb
+29 −0 app/domain/iban_validator.rb
+9 −1 app/domain/invoice/qrcode.rb
+2 −2 app/domain/mail_relay/base.rb
+2 −2 app/domain/mail_relay/lists.rb
+7 −0 app/domain/money_validator.rb
+4 −2 app/domain/search_strategies/sql_condition_builder/matcher.rb
+1 −0 app/models/additional_email.rb
+1 −0 app/models/address.rb
+5 −1 app/models/concerns/full_text_searchable.rb
+1 −1 app/models/concerns/globalized.rb
+4 −4 app/models/concerns/paranoia/globalized.rb
+2 −0 app/models/event.rb
+2 −0 app/models/event/course.rb
+1 −0 app/models/group.rb
+1 −1 app/models/household_member.rb
+1 −0 app/models/invoice.rb
+1 −3 app/models/invoice_config.rb
+2 −1 app/models/invoice_item.rb
+1 −0 app/models/person.rb
+1 −0 app/models/phone_number.rb
+1 −0 app/models/social_account.rb
+1 −0 app/serializers/additional_email_serializer.rb
+2 −0 app/serializers/event_serializer.rb
+1 −0 app/serializers/group_serializer.rb
+2 −1 app/serializers/invoice_item_serializer.rb
+1 −0 app/serializers/invoice_serializer.rb
+1 −0 app/serializers/person_serializer.rb
+1 −0 app/serializers/phone_number_serializer.rb
+1 −0 app/serializers/social_account_serializer.rb
+20 −4 app/views/group/log/index.html.haml
+6 −16 bin/wagon
+1 −0 config/locales/models.de.yml
+8 −4 db/migrate/20240812093000_add_disclosure_to_event_questions.rb
+75 −0 db/migrate/20241112142323_change_email_to_case_insensitve_collation.rb
+15 −11 db/schema.rb
+4 −12 spec/controllers/json_api/people_controller_spec.rb
+8 −6 spec/domain/export/pdf/messages/letter_spec.rb
+3 −3 spec/domain/export/pdf/messages/letter_with_invoice_spec.rb
+60 −0 spec/domain/iban_validator_spec.rb
+20 −0 spec/domain/invoice/qrcode_spec.rb
+7 −7 spec/domain/mail_relay/lists_spec.rb
+1 −0 spec/fabricators/additional_email_fabricator.rb
+2 −0 spec/fabricators/event_fabricator.rb
+1 −0 spec/fabricators/group_fabricator.rb
+1 −0 spec/fabricators/invoice_fabricator.rb
+1 −0 spec/fabricators/phone_number_fabricator.rb
+1 −0 spec/fabricators/social_account_fabricator.rb
+1 −0 spec/fixtures/addresses.yml
+2 −0 spec/fixtures/events.yml
+1 −0 spec/fixtures/groups.yml
+2 −2 spec/fixtures/invoice_configs.yml
+2 −1 spec/fixtures/invoice_items.yml
+1 −0 spec/fixtures/invoices.yml
+1 −0 spec/fixtures/people.yml
+1 −0 spec/models/additional_email_spec.rb
+1 −0 spec/models/address_spec.rb
+37 −0 spec/models/concerns/full_text_searchable_spec.rb
+2 −0 spec/models/event/course_spec.rb
+2 −0 spec/models/event_spec.rb
+1 −0 spec/models/group_spec.rb
+21 −0 spec/models/household_spec.rb
+2 −1 spec/models/invoice_item_spec.rb
+1 −0 spec/models/invoice_spec.rb
+1 −0 spec/models/person_spec.rb
+1 −0 spec/models/phone_number_spec.rb
+1 −0 spec/models/social_account_spec.rb
+2 −0 spec/serializers/event_serializer_spec.rb
+1 −0 spec/serializers/group_serializer_spec.rb
+1 −0 spec/serializers/invoice_serializer_spec.rb
+1 −0 spec/serializers/person_serializer_spec.rb
2 changes: 1 addition & 1 deletion hitobito_sac_cas
Submodule hitobito_sac_cas updated 30 files
+8 −8 .github/workflows/tests.yml
+3 −2 app/abilities/sac_cas/event/participation_ability.rb
+22 −0 app/abilities/sac_cas/event/role_ability.rb
+1 −1 app/domain/export/pdf/participations/key_data_sheet.rb
+1 −1 app/domain/export/pdf/participations/key_data_sheet/sections/table.rb
+14 −12 app/domain/people/birthday_validator.rb
+1 −1 app/domain/sac_cas.rb
+12 −0 app/models/event/course/role/assistant_leader.rb
+12 −0 app/models/event/course/role/leader.rb
+1 −3 app/models/group/sac_cas_verbaende.rb
+3 −3 app/models/sac_cas/event/course.rb
+2 −3 app/models/sac_cas/household_member.rb
+1 −1 app/models/sac_cas/person.rb
+8 −2 config/locales/wagon.de.yml
+1 −1 config/settings.yml
+1 −0 db/migrate/20240829162747_add_wso2_legacy_fields_to_people.rb
+34 −0 db/migrate/20241021141919_migrate_event_roles_to_course_roles.rb
+1 −0 lib/hitobito_sac_cas/wagon.rb
+60 −9 spec/abilities/sac_cas/event/participation_ability_spec.rb
+41 −0 spec/abilities/sac_cas/event/role_ability_spec.rb
+1 −1 spec/controllers/event/courses/key_data_sheets_controller_spec.rb
+1 −1 spec/controllers/event/participations_controller_spec.rb
+2 −2 spec/controllers/people_controller_spec.rb
+8 −8 spec/domain/export/pdf/participations/key_data_sheet_spec.rb
+41 −0 spec/domain/people/birthday_validator_spec.rb
+1 −1 spec/features/event/participation_edit_spec.rb
+4 −4 spec/jobs/event/leader_reminder_job_spec.rb
+7 −7 spec/models/event/course_spec.rb
+10 −0 spec/models/household_member_spec.rb
+18 −0 spec/models/household_spec.rb

0 comments on commit 4b67e9f

Please sign in to comment.