mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Update geocoder version along with other gems
This commit is contained in:
parent
af35696be4
commit
caf34ff6fd
3 changed files with 87 additions and 80 deletions
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
# 0.15.4 - 2024-10-15
|
# 0.15.4 - 2024-10-15
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Use static version of `geocoder` library that supports http and https for Photon API host. This is a temporary solution until the change is available in a stable release.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Owntracks' .rec files now can be imported to Dawarich. The import process is the same as for other kinds of files, just select the .rec file and choose "owntracks" as a source.
|
- Owntracks' .rec files now can be imported to Dawarich. The import process is the same as for other kinds of files, just select the .rec file and choose "owntracks" as a source.
|
||||||
|
|
|
||||||
2
Gemfile
2
Gemfile
|
|
@ -9,7 +9,7 @@ gem 'bootsnap', require: false
|
||||||
gem 'chartkick'
|
gem 'chartkick'
|
||||||
gem 'data_migrate'
|
gem 'data_migrate'
|
||||||
gem 'devise'
|
gem 'devise'
|
||||||
gem 'geocoder'
|
gem 'geocoder', git: 'https://github.com/alexreisner/geocoder.git', ref: '04ee293'
|
||||||
gem 'gpx'
|
gem 'gpx'
|
||||||
gem 'httparty'
|
gem 'httparty'
|
||||||
gem 'importmap-rails'
|
gem 'importmap-rails'
|
||||||
|
|
|
||||||
161
Gemfile.lock
161
Gemfile.lock
|
|
@ -1,29 +1,38 @@
|
||||||
|
GIT
|
||||||
|
remote: https://github.com/alexreisner/geocoder.git
|
||||||
|
revision: 04ee2936a30b30a23ded5231d7faf6cf6c27c099
|
||||||
|
ref: 04ee293
|
||||||
|
specs:
|
||||||
|
geocoder (1.8.3)
|
||||||
|
base64 (>= 0.1.0)
|
||||||
|
csv (>= 3.0.0)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (7.2.1)
|
actioncable (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
zeitwerk (~> 2.6)
|
zeitwerk (~> 2.6)
|
||||||
actionmailbox (7.2.1)
|
actionmailbox (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
activejob (= 7.2.1)
|
activejob (= 7.2.1.1)
|
||||||
activerecord (= 7.2.1)
|
activerecord (= 7.2.1.1)
|
||||||
activestorage (= 7.2.1)
|
activestorage (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
mail (>= 2.8.0)
|
mail (>= 2.8.0)
|
||||||
actionmailer (7.2.1)
|
actionmailer (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
actionview (= 7.2.1)
|
actionview (= 7.2.1.1)
|
||||||
activejob (= 7.2.1)
|
activejob (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
mail (>= 2.8.0)
|
mail (>= 2.8.0)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
actionpack (7.2.1)
|
actionpack (7.2.1.1)
|
||||||
actionview (= 7.2.1)
|
actionview (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
racc
|
racc
|
||||||
rack (>= 2.2.4, < 3.2)
|
rack (>= 2.2.4, < 3.2)
|
||||||
|
|
@ -32,35 +41,35 @@ GEM
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
useragent (~> 0.16)
|
useragent (~> 0.16)
|
||||||
actiontext (7.2.1)
|
actiontext (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
activerecord (= 7.2.1)
|
activerecord (= 7.2.1.1)
|
||||||
activestorage (= 7.2.1)
|
activestorage (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (7.2.1)
|
actionview (7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.11)
|
erubi (~> 1.11)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
activejob (7.2.1)
|
activejob (7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.2.1)
|
activemodel (7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
activerecord (7.2.1)
|
activerecord (7.2.1.1)
|
||||||
activemodel (= 7.2.1)
|
activemodel (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
timeout (>= 0.4.0)
|
timeout (>= 0.4.0)
|
||||||
activestorage (7.2.1)
|
activestorage (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
activejob (= 7.2.1)
|
activejob (= 7.2.1.1)
|
||||||
activerecord (= 7.2.1)
|
activerecord (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
activesupport (7.2.1)
|
activesupport (7.2.1.1)
|
||||||
base64
|
base64
|
||||||
bigdecimal
|
bigdecimal
|
||||||
concurrent-ruby (~> 1.0, >= 1.3.1)
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
||||||
|
|
@ -92,7 +101,7 @@ GEM
|
||||||
rexml
|
rexml
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
csv (3.3.0)
|
csv (3.3.0)
|
||||||
data_migrate (11.0.0)
|
data_migrate (11.1.0)
|
||||||
activerecord (>= 6.1)
|
activerecord (>= 6.1)
|
||||||
railties (>= 6.1)
|
railties (>= 6.1)
|
||||||
date (3.3.4)
|
date (3.3.4)
|
||||||
|
|
@ -117,7 +126,7 @@ GEM
|
||||||
erubi (1.13.0)
|
erubi (1.13.0)
|
||||||
et-orbi (1.2.11)
|
et-orbi (1.2.11)
|
||||||
tzinfo
|
tzinfo
|
||||||
factory_bot (6.4.6)
|
factory_bot (6.5.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
factory_bot_rails (6.4.3)
|
factory_bot_rails (6.4.3)
|
||||||
factory_bot (~> 6.4)
|
factory_bot (~> 6.4)
|
||||||
|
|
@ -128,9 +137,6 @@ GEM
|
||||||
fugit (1.11.1)
|
fugit (1.11.1)
|
||||||
et-orbi (~> 1, >= 1.2.11)
|
et-orbi (~> 1, >= 1.2.11)
|
||||||
raabro (~> 1.4)
|
raabro (~> 1.4)
|
||||||
geocoder (1.8.3)
|
|
||||||
base64 (>= 0.1.0)
|
|
||||||
csv (>= 3.0.0)
|
|
||||||
globalid (1.2.1)
|
globalid (1.2.1)
|
||||||
activesupport (>= 6.1)
|
activesupport (>= 6.1)
|
||||||
gpx (1.2.0)
|
gpx (1.2.0)
|
||||||
|
|
@ -185,10 +191,10 @@ GEM
|
||||||
method_source (1.1.0)
|
method_source (1.1.0)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
minitest (5.25.1)
|
minitest (5.25.1)
|
||||||
msgpack (1.7.2)
|
msgpack (1.7.3)
|
||||||
multi_xml (0.7.1)
|
multi_xml (0.7.1)
|
||||||
bigdecimal (~> 3.1)
|
bigdecimal (~> 3.1)
|
||||||
net-imap (0.4.16)
|
net-imap (0.4.17)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
|
|
@ -222,7 +228,7 @@ GEM
|
||||||
racc
|
racc
|
||||||
patience_diff (1.2.0)
|
patience_diff (1.2.0)
|
||||||
optimist (~> 3.0)
|
optimist (~> 3.0)
|
||||||
pg (1.5.7)
|
pg (1.5.8)
|
||||||
pry (0.14.2)
|
pry (0.14.2)
|
||||||
coderay (~> 1.1)
|
coderay (~> 1.1)
|
||||||
method_source (~> 1.0)
|
method_source (~> 1.0)
|
||||||
|
|
@ -248,20 +254,20 @@ GEM
|
||||||
rackup (2.1.0)
|
rackup (2.1.0)
|
||||||
rack (>= 3)
|
rack (>= 3)
|
||||||
webrick (~> 1.8)
|
webrick (~> 1.8)
|
||||||
rails (7.2.1)
|
rails (7.2.1.1)
|
||||||
actioncable (= 7.2.1)
|
actioncable (= 7.2.1.1)
|
||||||
actionmailbox (= 7.2.1)
|
actionmailbox (= 7.2.1.1)
|
||||||
actionmailer (= 7.2.1)
|
actionmailer (= 7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
actiontext (= 7.2.1)
|
actiontext (= 7.2.1.1)
|
||||||
actionview (= 7.2.1)
|
actionview (= 7.2.1.1)
|
||||||
activejob (= 7.2.1)
|
activejob (= 7.2.1.1)
|
||||||
activemodel (= 7.2.1)
|
activemodel (= 7.2.1.1)
|
||||||
activerecord (= 7.2.1)
|
activerecord (= 7.2.1.1)
|
||||||
activestorage (= 7.2.1)
|
activestorage (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.2.1)
|
railties (= 7.2.1.1)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.2.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
|
|
@ -269,9 +275,9 @@ GEM
|
||||||
rails-html-sanitizer (1.6.0)
|
rails-html-sanitizer (1.6.0)
|
||||||
loofah (~> 2.21)
|
loofah (~> 2.21)
|
||||||
nokogiri (~> 1.14)
|
nokogiri (~> 1.14)
|
||||||
railties (7.2.1)
|
railties (7.2.1.1)
|
||||||
actionpack (= 7.2.1)
|
actionpack (= 7.2.1.1)
|
||||||
activesupport (= 7.2.1)
|
activesupport (= 7.2.1.1)
|
||||||
irb (~> 1.13)
|
irb (~> 1.13)
|
||||||
rackup (>= 1.0.0)
|
rackup (>= 1.0.0)
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
|
|
@ -296,10 +302,10 @@ GEM
|
||||||
rexml (3.3.8)
|
rexml (3.3.8)
|
||||||
rspec-core (3.13.1)
|
rspec-core (3.13.1)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-expectations (3.13.2)
|
rspec-expectations (3.13.3)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-mocks (3.13.1)
|
rspec-mocks (3.13.2)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-rails (7.0.1)
|
rspec-rails (7.0.1)
|
||||||
|
|
@ -322,7 +328,7 @@ GEM
|
||||||
rswag-ui (2.15.0)
|
rswag-ui (2.15.0)
|
||||||
actionpack (>= 5.2, < 8.0)
|
actionpack (>= 5.2, < 8.0)
|
||||||
railties (>= 5.2, < 8.0)
|
railties (>= 5.2, < 8.0)
|
||||||
rubocop (1.66.1)
|
rubocop (1.67.0)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (>= 3.17.0)
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
|
|
@ -360,7 +366,7 @@ GEM
|
||||||
docile (~> 1.1)
|
docile (~> 1.1)
|
||||||
simplecov-html (~> 0.11)
|
simplecov-html (~> 0.11)
|
||||||
simplecov_json_formatter (~> 0.1)
|
simplecov_json_formatter (~> 0.1)
|
||||||
simplecov-html (0.12.3)
|
simplecov-html (0.13.1)
|
||||||
simplecov_json_formatter (0.1.4)
|
simplecov_json_formatter (0.1.4)
|
||||||
sprockets (4.2.1)
|
sprockets (4.2.1)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
|
|
@ -376,21 +382,18 @@ GEM
|
||||||
attr_extras (>= 6.2.4)
|
attr_extras (>= 6.2.4)
|
||||||
diff-lcs
|
diff-lcs
|
||||||
patience_diff
|
patience_diff
|
||||||
tailwindcss-rails (2.7.9)
|
tailwindcss-rails (3.0.0)
|
||||||
railties (>= 7.0.0)
|
|
||||||
tailwindcss-rails (2.7.9-aarch64-linux)
|
|
||||||
railties (>= 7.0.0)
|
|
||||||
tailwindcss-rails (2.7.9-arm-linux)
|
|
||||||
railties (>= 7.0.0)
|
|
||||||
tailwindcss-rails (2.7.9-arm64-darwin)
|
|
||||||
railties (>= 7.0.0)
|
|
||||||
tailwindcss-rails (2.7.9-x86_64-darwin)
|
|
||||||
railties (>= 7.0.0)
|
|
||||||
tailwindcss-rails (2.7.9-x86_64-linux)
|
|
||||||
railties (>= 7.0.0)
|
railties (>= 7.0.0)
|
||||||
|
tailwindcss-ruby
|
||||||
|
tailwindcss-ruby (3.4.14)
|
||||||
|
tailwindcss-ruby (3.4.14-aarch64-linux)
|
||||||
|
tailwindcss-ruby (3.4.14-arm-linux)
|
||||||
|
tailwindcss-ruby (3.4.14-arm64-darwin)
|
||||||
|
tailwindcss-ruby (3.4.14-x86_64-darwin)
|
||||||
|
tailwindcss-ruby (3.4.14-x86_64-linux)
|
||||||
thor (1.3.2)
|
thor (1.3.2)
|
||||||
timeout (0.4.1)
|
timeout (0.4.1)
|
||||||
turbo-rails (2.0.10)
|
turbo-rails (2.0.11)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
tzinfo (2.0.6)
|
tzinfo (2.0.6)
|
||||||
|
|
@ -428,7 +431,7 @@ DEPENDENCIES
|
||||||
fakeredis
|
fakeredis
|
||||||
ffaker
|
ffaker
|
||||||
foreman
|
foreman
|
||||||
geocoder
|
geocoder!
|
||||||
gpx
|
gpx
|
||||||
httparty
|
httparty
|
||||||
importmap-rails
|
importmap-rails
|
||||||
|
|
@ -464,4 +467,4 @@ RUBY VERSION
|
||||||
ruby 3.3.4p94
|
ruby 3.3.4p94
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.5.18
|
2.5.21
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue