From: Anton Khorev Date: Fri, 23 Sep 2022 09:43:31 +0000 (+0300) Subject: Merge branch 'master' into tooltips-enable-disable X-Git-Tag: live~1551^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/9657b92faddc9fa9bf765fc7de06aa0a9042e8e9?hp=63f9ee3db6314d7189599c4b1a7e27657bda8ad8 Merge branch 'master' into tooltips-enable-disable --- diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 2e7bc2f59..240e46c31 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -60,7 +60,7 @@ Metrics/BlockNesting: # Offense count: 25 # Configuration parameters: CountComments, CountAsOne. Metrics/ClassLength: - Max: 313 + Max: 316 # Offense count: 58 # Configuration parameters: IgnoredMethods. diff --git a/Gemfile.lock b/Gemfile.lock index 925d57d06..b4d58da16 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - aasm (5.3.0) + aasm (5.3.1) concurrent-ruby (~> 1.0) actioncable (7.0.4) actionpack (= 7.0.4) @@ -86,8 +86,8 @@ GEM autoprefixer-rails (10.4.7.0) execjs (~> 2) aws-eventstream (1.2.0) - aws-partitions (1.628.0) - aws-sdk-core (3.144.0) + aws-partitions (1.632.0) + aws-sdk-core (3.150.0) aws-eventstream (~> 1, >= 1.0.2) aws-partitions (~> 1, >= 1.525.0) aws-sigv4 (~> 1.1) @@ -149,7 +149,7 @@ GEM config (4.0.0) deep_merge (~> 1.2, >= 1.2.1) dry-validation (~> 1.0, >= 1.0.0) - connection_pool (2.2.5) + connection_pool (2.3.0) crack (0.4.5) rexml crass (1.0.6) @@ -170,7 +170,7 @@ GEM dry-configurable (0.15.0) concurrent-ruby (~> 1.0) dry-core (~> 0.6) - dry-container (0.10.1) + dry-container (0.11.0) concurrent-ruby (~> 1.0) dry-core (0.8.1) concurrent-ruby (~> 1.0) @@ -179,12 +179,12 @@ GEM dry-logic (1.2.0) concurrent-ruby (~> 1.0) dry-core (~> 0.5, >= 0.5) - dry-schema (1.10.2) + dry-schema (1.10.4) concurrent-ruby (~> 1.0) dry-configurable (~> 0.13, >= 0.13.0) dry-core (~> 0.5, >= 0.5) dry-initializer (~> 3.0) - dry-logic (~> 1.0) + dry-logic (~> 1.2) dry-types (~> 1.5) dry-types (1.5.1) concurrent-ruby (~> 1.0) @@ -249,7 +249,7 @@ GEM image_processing (1.12.2) mini_magick (>= 4.9.5, < 5) ruby-vips (>= 2.0.17, < 3) - image_size (3.0.2) + image_size (3.1.0) in_threads (1.6.0) jbuilder (2.11.5) actionview (>= 5.0.0) @@ -271,7 +271,7 @@ GEM logstasher (2.1.5) activesupport (>= 5.2) request_store - loofah (2.18.0) + loofah (2.19.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) mail (2.7.1) @@ -311,12 +311,12 @@ GEM oauth (~> 0.4.4) oauth2 (>= 0.5.0) rack - oauth2 (1.4.10) + oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) jwt (>= 1.0, < 3.0) multi_json (~> 1.3) multi_xml (~> 0.5) - rack (>= 1.2, < 3) + rack (>= 1.2, < 4) omniauth (2.0.4) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) @@ -354,7 +354,7 @@ GEM parser (3.1.2.1) ast (~> 2.4.1) pg (1.4.3) - popper_js (2.11.5) + popper_js (2.11.6) progress (3.6.0) public_suffix (5.0.0) puma (5.6.5) @@ -429,12 +429,12 @@ GEM unicode-display_width (>= 1.4.0, < 3.0) rubocop-ast (1.21.0) parser (>= 3.1.1.0) - rubocop-minitest (0.22.0) + rubocop-minitest (0.22.1) rubocop (>= 0.90, < 2.0) - rubocop-performance (1.14.3) + rubocop-performance (1.15.0) rubocop (>= 1.7.0, < 2.0) rubocop-ast (>= 0.4.0) - rubocop-rails (2.16.0) + rubocop-rails (2.16.1) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) @@ -491,7 +491,7 @@ GEM timeout (0.3.0) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.2.0) + unicode-display_width (2.3.0) validates_email_format_of (1.7.2) i18n vendorer (0.2.0) diff --git a/app/assets/javascripts/embed.js.erb b/app/assets/javascripts/embed.js.erb index c92be4515..4ebb89da9 100644 --- a/app/assets/javascripts/embed.js.erb +++ b/app/assets/javascripts/embed.js.erb @@ -75,7 +75,7 @@ window.onload = function () { L.Control.OSMReportAProblem = L.Control.Attribution.extend({ options: { position: 'bottomright', - prefix: ''+I18n.t('javascripts.embed.report_problem')+'' + prefix: ''+I18n.t('javascripts.embed.report_problem')+'' }, onAdd: function (map) { diff --git a/app/assets/javascripts/index/browse.js b/app/assets/javascripts/index/browse.js index 61319f7b4..9d3f9a470 100644 --- a/app/assets/javascripts/index/browse.js +++ b/app/assets/javascripts/index/browse.js @@ -50,18 +50,16 @@ OSM.initializeBrowse = function (map) { $("#browse_status").html( $("
").append( $("
").append( - $("
").append( - $("

") - .text(I18n.t("browse.start_rjs.load_data"))), + $("

") + .text(I18n.t("browse.start_rjs.load_data")), $("
").append( - $("