Skip to content

Commit

Permalink
Updated submodules to v0.137.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caiosba committed Oct 21, 2021
1 parent 7a41e56 commit c21220c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion check-api
Submodule check-api updated 43 files
+46 −0 .github/workflows/brakeman-analysis.yml
+2 −2 Gemfile.lock
+1 −1 app/graph/mutations/project_media_mutations.rb
+12 −0 app/graph/mutations/search_upload_mutations.rb
+1 −0 app/graph/types/about_type.rb
+2 −0 app/graph/types/mutation_type.rb
+2 −1 app/graph/types/query_type.rb
+2 −0 app/graph/types/team_type.rb
+9 −2 app/models/annotations/tag.rb
+17 −6 app/models/bot/alegre.rb
+95 −77 app/models/bot/smooch.rb
+9 −14 app/models/bot_user.rb
+88 −23 app/models/concerns/project_media_bulk.rb
+62 −13 app/models/concerns/smooch_messages.rb
+2 −2 app/models/concerns/smooch_newsletter.rb
+81 −0 app/models/concerns/smooch_search.rb
+4 −0 app/models/media.rb
+1 −1 app/models/tipline_subscription.rb
+1 −1 app/workers/tipline_newsletter_worker.rb
+34 −3 config/locales/en.yml
+7 −0 db/migrate/20211007204934_add_platform_to_tipline_subscription.rb
+16 −0 db/migrate/20211011172623_add_version_to_smooch_bot.rb
+5 −0 db/migrate/20211014173355_add_timestamps_to_tipline_subscription.rb
+6 −0 db/migrate/20211019121302_add_country_to_teams.rb
+12 −7 db/schema.rb
+41 −5 lib/check_search.rb
+32 −6 lib/check_state_machine.rb
+2 −1 lib/sample_data.rb
+8 −24 lib/tasks/data/pg_export.rb
+56 −0 lib/tasks/data/statistics.rake
+3 −2 production/bin/start.sh
+1 −1 public/relay.json
+58 −30 spec/pacts/check_api-alegre.json
+44 −63 test/contract/alegre_contract_test.rb
+206 −22 test/controllers/graphql_controller_4_test.rb
+7 −0 test/models/bot/alegre_test.rb
+136 −0 test/models/bot/smooch_5_test.rb
+0 −2 test/models/bot/smooch_rules_test.rb
+1 −1 test/models/bot_user_test.rb
+3 −0 test/models/media_test.rb
+65 −0 test/models/project_media_test.rb
+2 −2 test/test_helper.rb
+14 −0 test/workers/application_job_test.rb
2 changes: 1 addition & 1 deletion check-web
Submodule check-web updated 56 files
+2 −2 .travis.yml
+5 −0 localization/react-intl/src/app/components/drawer/Projects/ProjectsComponent.json
+4 −12 localization/react-intl/src/app/components/media/BulkActions.json
+25 −0 localization/react-intl/src/app/components/media/BulkActionsAssign.json
+23 −0 localization/react-intl/src/app/components/media/BulkActionsMenu.json
+15 −0 localization/react-intl/src/app/components/media/BulkActionsMove.json
+30 −0 localization/react-intl/src/app/components/media/BulkActionsStatus.json
+24 −0 localization/react-intl/src/app/components/media/BulkActionsTag.json
+5 −0 localization/react-intl/src/app/components/search/AddFilterMenu.json
+10 −0 localization/react-intl/src/app/components/search/SearchField.json
+7 −0 localization/react-intl/src/app/components/search/SearchFields/SearchFieldCountry.json
+11 −1 localization/react-intl/src/app/components/search/SearchKeyword.json
+6 −2 localization/react-intl/src/app/components/team/SmoochBot/SmoochBotNewsletterEditor.json
+7 −0 localization/react-intl/src/app/components/trends/SearchResults.json
+7 −0 localization/react-intl/src/app/components/trends/TrendResults.json
+6 −0 localization/react-intl/src/app/components/trends/Trends.json
+3 −3 package-lock.json
+1 −1 package.json
+2 −0 src/app/components/Root.js
+22 −0 src/app/components/drawer/Projects/ProjectsComponent.js
+1 −0 src/app/components/drawer/Projects/index.js
+85 −92 src/app/components/media/BulkActions.js
+147 −0 src/app/components/media/BulkActionsAssign.js
+189 −0 src/app/components/media/BulkActionsMenu.js
+92 −0 src/app/components/media/BulkActionsMove.js
+146 −0 src/app/components/media/BulkActionsStatus.js
+180 −0 src/app/components/media/BulkActionsTag.js
+4 −0 src/app/components/media/MediaTasks.js
+1 −0 src/app/components/media/OcrButton.js
+15 −1 src/app/components/search/AddFilterMenu.js
+3 −0 src/app/components/search/AllItems.js
+9 −1 src/app/components/search/Search.js
+170 −28 src/app/components/search/SearchField.js
+59 −0 src/app/components/search/SearchFields/SearchFieldCountry.js
+0 −1 src/app/components/search/SearchFields/SearchFieldSource.js
+14 −2 src/app/components/search/SearchFields/index.js
+281 −64 src/app/components/search/SearchKeyword.js
+10 −8 src/app/components/search/SearchResults.js
+1 −1 src/app/components/search/SearchResultsTable/LastSubmittedCell.js
+10 −6 src/app/components/search/SearchResultsTable/SearchResultsTableHead.js
+9 −4 src/app/components/search/SearchResultsTable/SearchResultsTableRow.js
+21 −2 src/app/components/search/SearchResultsTable/index.js
+2 −1 src/app/components/search/Toolbar.js
+9 −0 src/app/components/task/Tasks.js
+1 −0 src/app/components/team/SmoochBot/SmoochBotComponent.js
+2 −0 src/app/components/team/SmoochBot/SmoochBotConfig.js
+8 −4 src/app/components/team/SmoochBot/SmoochBotNewsletterEditor.js
+39 −0 src/app/components/trends/Trends.js
+4 −2 src/app/relay/mutations/BulkArchiveProjectMediaMutation.js
+4 −2 src/app/relay/mutations/BulkMoveProjectMediaMutation.js
+3 −2 src/app/relay/mutations/BulkRestoreProjectMediaMutation.js
+40 −0 src/app/relay/mutations/UploadFileMutation.js
+1 −0 src/assets/images/open_full.svg
+4 −5 test/spec/media_actions_spec.rb
+5 −3 test/spec/metadata_spec.rb
+21 −18 test/spec/similarity_spec.rb

0 comments on commit c21220c

Please sign in to comment.