Skip to content

Commit

Permalink
Updated submodules to v0.159.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caiosba committed Dec 13, 2022
1 parent dbaaa04 commit c1291e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion check-api
Submodule check-api updated 74 files
+1 −1 .codeclimate.yml
+3 −3 .github/workflows/brakeman-analysis.yml
+19 −0 .github/workflows/gitlab-mirror.yml
+1 −0 .gitlab-ci.yml
+1 −1 .simplecov
+2 −2 Gemfile
+5 −5 Gemfile.lock
+9 −0 SECURITY.md
+6 −1 app/controllers/api/v1/webhooks_controller.rb
+1 −1 app/controllers/application_controller.rb
+2 −1 app/models/bot/alegre.rb
+14 −5 app/models/bot/fetch.rb
+37 −23 app/models/bot/keep.rb
+12 −13 app/models/bot/smooch.rb
+5 −0 app/models/concerns/alegre_similarity.rb
+2 −0 app/models/concerns/project_media_associations.rb
+2 −3 app/models/concerns/project_media_getters.rb
+1 −1 app/models/concerns/smooch_language.rb
+16 −15 app/models/concerns/smooch_menus.rb
+14 −4 app/models/concerns/smooch_messages.rb
+1 −1 app/models/concerns/smooch_newsletter.rb
+5 −5 app/models/concerns/smooch_resend.rb
+6 −4 app/models/concerns/smooch_resources.rb
+5 −5 app/models/concerns/smooch_search.rb
+10 −3 app/models/concerns/smooch_strings.rb
+13 −5 app/models/fact_check.rb
+19 −13 app/models/request.rb
+4 −6 app/models/team.rb
+1 −0 app/models/team_bot_installation.rb
+4 −6 app/models/workflow/verification_status.rb
+2 −2 app/views/project_medias/oembed.html.erb
+7 −1 app/workers/project_media_trash_worker.rb
+2 −7 app/workers/report_designer_worker.rb
+1 −1 app/workers/tipline_newsletter_worker.rb
+1 −1 config/application.rb
+3 −0 config/initializers/02_sidekiq.rb
+31 −40 config/initializers/report_designer.rb
+1 −1 config/initializers/version.rb
+3 −0 config/locales/ar.yml
+1 −0 config/locales/en.yml
+2 −0 config/locales/es.yml
+2 −2 config/locales/fr.yml
+3 −0 config/locales/id.yml
+25 −0 config/tipline_strings.yml
+12 −0 db/migrate/20221129063218_adjust_report_design_schema.rb
+1 −2 db/schema.rb
+0 −1 lib/check_open_telemetry_config.rb
+5 −1 lib/error_codes.rb
+34 −21 lib/sample_data.rb
+1 −0 lib/tasks/coverage.rake
+35 −0 lib/tasks/data/fetch.rake
+72 −0 lib/tasks/data/reclusterize_requests.rake
+4 −2 lib/tasks/error_codes.rake
+42 −0 lib/tasks/migrate/20221129063218_adjust_report_design_schema.rake
+30 −0 lib/tasks/migrate/20221209165315_remove_cancelled_string_from_smooch_bot_installations.rake
+15 −11 lib/tasks/transifex.rake
+6 −10 test/controllers/graphql_controller_3_test.rb
+8 −8 test/controllers/graphql_controller_test.rb
+2 −2 test/controllers/reports_controller_test.rb
+37 −21 test/controllers/webhooks_controller_test.rb
+17 −0 test/lib/tasks/lapis_error_codes_test.rb
+11 −39 test/models/bot/alegre_test.rb
+18 −4 test/models/bot/fetch_test.rb
+49 −0 test/models/bot/keep_test.rb
+28 −0 test/models/bot/smooch_5_test.rb
+5 −5 test/models/bot/smooch_test.rb
+5 −5 test/models/dynamic_test.rb
+32 −10 test/models/fact_check_test.rb
+28 −1 test/models/project_media_test.rb
+11 −3 test/models/request_test.rb
+2 −2 test/models/team_test.rb
+3 −2 test/test_helper.rb
+11 −0 test/workers/project_media_trash_worker_test.rb
+2 −2 test/workers/tipline_newsletter_worker_test.rb
2 changes: 1 addition & 1 deletion check-web
Submodule check-web updated 73 files
+19 −0 .github/workflows/gitlab-mirror.yml
+7 −0 localization/react-intl/src/app/components/cds/settings-pages/TiplineContentTranslation.json
+5 −0 localization/react-intl/src/app/components/feed/FeedRequestsTable.json
+5 −8 localization/react-intl/src/app/components/layout/LanguagePickerDialog.json
+15 −0 localization/react-intl/src/app/components/layout/LanguagePickerSelect.json
+8 −3 localization/react-intl/src/app/components/media/MediaFactCheck.json
+2 −1 localization/react-intl/src/app/components/media/ReportDesigner/ReportDesignerTopBar.json
+4 −0 localization/react-intl/src/app/components/team/Similarity/SimilarityComponent.json
+1 −1 localization/react-intl/src/app/components/team/SmoochBot/SmoochBotComponent.json
+43 −53 localization/react-intl/src/app/components/team/SmoochBot/SmoochBotContentAndTranslation.json
+2 −10 localization/react-intl/src/app/components/team/SmoochBot/localizables.json
+1 −1 localization/react-intl/src/app/helpers.json
+143 −106 localization/transifex/WebStructured.json
+1 −1 localization/translations/ar.json
+161 −124 localization/translations/ar/WebStructured.json
+143 −106 localization/translations/bn/WebStructured.json
+143 −106 localization/translations/de/WebStructured.json
+1 −1 localization/translations/es.json
+156 −119 localization/translations/es/WebStructured.json
+1 −1 localization/translations/fil.json
+143 −106 localization/translations/fil/WebStructured.json
+1 −1 localization/translations/fr.json
+157 −120 localization/translations/fr/WebStructured.json
+143 −106 localization/translations/hi/WebStructured.json
+155 −118 localization/translations/id/WebStructured.json
+143 −106 localization/translations/kn/WebStructured.json
+143 −106 localization/translations/ml/WebStructured.json
+143 −106 localization/translations/mr/WebStructured.json
+143 −106 localization/translations/pa/WebStructured.json
+1 −1 localization/translations/pt.json
+147 −110 localization/translations/pt/WebStructured.json
+1 −1 localization/translations/ro.json
+143 −106 localization/translations/ro/WebStructured.json
+1 −1 localization/translations/ru.json
+143 −106 localization/translations/ru/WebStructured.json
+1 −1 localization/translations/sw.json
+143 −106 localization/translations/sw/WebStructured.json
+143 −106 localization/translations/ta/WebStructured.json
+143 −106 localization/translations/te/WebStructured.json
+143 −106 localization/translations/ur/WebStructured.json
+213 −80 package-lock.json
+1 −1 package.json
+1 −0 src/app/components/cds/alerts-and-prompts/Alert.js
+29 −0 src/app/components/cds/alerts-and-prompts/SuccessAlert.js
+14 −0 src/app/components/cds/alerts-and-prompts/SuccessAlert.test.js
+3 −0 src/app/components/cds/media-cards/MediaCardCondensed.js
+166 −0 src/app/components/cds/settings-pages/TiplineContentTranslation.js
+16 −0 src/app/components/cds/settings-pages/TiplineContentTranslation.test.js
+157 −142 src/app/components/feed/FeedRequestsTable.js
+0 −145 src/app/components/layout/LanguagePickerDialog.js
+0 −27 src/app/components/layout/LanguagePickerDialog.test.js
+108 −0 src/app/components/layout/LanguagePickerSelect.js
+2 −0 src/app/components/media/MediaComponent.js
+0 −3 src/app/components/media/MediaExpanded.js
+56 −16 src/app/components/media/MediaFactCheck.js
+0 −115 src/app/components/media/MediaLanguageChip.js
+42 −71 src/app/components/media/ReportDesigner/ReportDesignerComponent.js
+19 −1 src/app/components/media/ReportDesigner/ReportDesignerForm.js
+4 −0 src/app/components/media/ReportDesigner/ReportDesignerForm.test.js
+10 −8 src/app/components/media/ReportDesigner/ReportDesignerTopBar.js
+2 −18 src/app/components/media/ReportDesigner/reportDesignerHelpers.js
+1 −1 src/app/components/search/SearchResultsTable/CreatorNameCell.js
+2 −22 src/app/components/search/SearchResultsTable/NumberCell.js
+1 −9 src/app/components/search/SearchResultsTable/index.js
+16 −0 src/app/components/team/Similarity/SimilarityComponent.js
+1 −1 src/app/components/team/SmoochBot/SmoochBotComponent.js
+2 −0 src/app/components/team/SmoochBot/SmoochBotConfig.js
+65 −129 src/app/components/team/SmoochBot/SmoochBotContentAndTranslation.js
+24 −21 src/app/components/team/SmoochBot/SmoochBotNewsletterEditor.js
+2 −5 src/app/components/team/SmoochBot/localizables.js
+0 −49 src/app/relay/mutations/UpdateLanguageMutation.js
+5 −0 src/app/styles/js/shared.js
+6 −6 test/Gemfile.lock

0 comments on commit c1291e8

Please sign in to comment.