mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-12 06:54:19 +01:00
(bug) unable to update opening/closing time for the calendar
This commit is contained in:
parent
d7d81e3bce
commit
7be7b9780c
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## Next release
|
## Next release
|
||||||
|
|
||||||
|
- updated rails to 7.0.8.7
|
||||||
|
- updated tzinfo-data to 1.2025.1
|
||||||
|
- Fix a bug: unable to update opening/closing time for the calendar
|
||||||
|
|
||||||
## v6.3.36 2024 December 12
|
## v6.3.36 2024 December 12
|
||||||
|
|
||||||
- Improvement: default order for the spaces/trainings list is set to descending by created_at
|
- Improvement: default order for the spaces/trainings list is set to descending by created_at
|
||||||
|
5
Gemfile
5
Gemfile
@ -3,7 +3,7 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '7.0.8.6'
|
gem 'rails', '7.0.8.7'
|
||||||
# Used by rails 5.2 to reduce the app boot time by over 50%
|
# Used by rails 5.2 to reduce the app boot time by over 50%
|
||||||
gem 'bootsnap'
|
gem 'bootsnap'
|
||||||
# Use Puma as web server
|
# Use Puma as web server
|
||||||
@ -155,3 +155,6 @@ gem 'reverse_markdown'
|
|||||||
|
|
||||||
gem 'ancestry'
|
gem 'ancestry'
|
||||||
gem 'silencer', require: false
|
gem 'silencer', require: false
|
||||||
|
|
||||||
|
# temporary fix for the issue uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
|
||||||
|
gem 'concurrent-ruby', '1.3.4'
|
||||||
|
114
Gemfile.lock
114
Gemfile.lock
@ -4,68 +4,68 @@ GEM
|
|||||||
Ascii85 (1.1.0)
|
Ascii85 (1.1.0)
|
||||||
aasm (5.0.8)
|
aasm (5.0.8)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
actioncable (7.0.8.6)
|
actioncable (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
actionmailbox (7.0.8.6)
|
actionmailbox (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
activejob (= 7.0.8.6)
|
activejob (= 7.0.8.7)
|
||||||
activerecord (= 7.0.8.6)
|
activerecord (= 7.0.8.7)
|
||||||
activestorage (= 7.0.8.6)
|
activestorage (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
actionmailer (7.0.8.6)
|
actionmailer (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
actionview (= 7.0.8.6)
|
actionview (= 7.0.8.7)
|
||||||
activejob (= 7.0.8.6)
|
activejob (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (7.0.8.6)
|
actionpack (7.0.8.7)
|
||||||
actionview (= 7.0.8.6)
|
actionview (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
rack (~> 2.0, >= 2.2.4)
|
rack (~> 2.0, >= 2.2.4)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (7.0.8.6)
|
actiontext (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
activerecord (= 7.0.8.6)
|
activerecord (= 7.0.8.7)
|
||||||
activestorage (= 7.0.8.6)
|
activestorage (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (7.0.8.6)
|
actionview (7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
active_record_query_trace (1.8)
|
active_record_query_trace (1.8)
|
||||||
activejob (7.0.8.6)
|
activejob (7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.0.8.6)
|
activemodel (7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
activerecord (7.0.8.6)
|
activerecord (7.0.8.7)
|
||||||
activemodel (= 7.0.8.6)
|
activemodel (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
activestorage (7.0.8.6)
|
activestorage (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
activejob (= 7.0.8.6)
|
activejob (= 7.0.8.7)
|
||||||
activerecord (= 7.0.8.6)
|
activerecord (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
mini_mime (>= 1.1.0)
|
mini_mime (>= 1.1.0)
|
||||||
activesupport (7.0.8.6)
|
activesupport (7.0.8.7)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
@ -366,20 +366,20 @@ GEM
|
|||||||
rack-test (2.1.0)
|
rack-test (2.1.0)
|
||||||
rack (>= 1.3)
|
rack (>= 1.3)
|
||||||
railroady (1.5.3)
|
railroady (1.5.3)
|
||||||
rails (7.0.8.6)
|
rails (7.0.8.7)
|
||||||
actioncable (= 7.0.8.6)
|
actioncable (= 7.0.8.7)
|
||||||
actionmailbox (= 7.0.8.6)
|
actionmailbox (= 7.0.8.7)
|
||||||
actionmailer (= 7.0.8.6)
|
actionmailer (= 7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
actiontext (= 7.0.8.6)
|
actiontext (= 7.0.8.7)
|
||||||
actionview (= 7.0.8.6)
|
actionview (= 7.0.8.7)
|
||||||
activejob (= 7.0.8.6)
|
activejob (= 7.0.8.7)
|
||||||
activemodel (= 7.0.8.6)
|
activemodel (= 7.0.8.7)
|
||||||
activerecord (= 7.0.8.6)
|
activerecord (= 7.0.8.7)
|
||||||
activestorage (= 7.0.8.6)
|
activestorage (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.0.8.6)
|
railties (= 7.0.8.7)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.2.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
@ -387,9 +387,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.0.8.6)
|
railties (7.0.8.7)
|
||||||
actionpack (= 7.0.8.6)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.0.8.6)
|
activesupport (= 7.0.8.7)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
@ -511,7 +511,7 @@ GEM
|
|||||||
tzinfo
|
tzinfo
|
||||||
tzinfo (2.0.6)
|
tzinfo (2.0.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
tzinfo-data (1.2020.4)
|
tzinfo-data (1.2025.1)
|
||||||
tzinfo (>= 1.0.0)
|
tzinfo (>= 1.0.0)
|
||||||
unicode-display_width (1.4.1)
|
unicode-display_width (1.4.1)
|
||||||
uniform_notifier (1.16.0)
|
uniform_notifier (1.16.0)
|
||||||
@ -541,7 +541,8 @@ GEM
|
|||||||
addressable (>= 2.3.6)
|
addressable (>= 2.3.6)
|
||||||
crack (>= 0.3.2)
|
crack (>= 0.3.2)
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
websocket-driver (0.7.6)
|
websocket-driver (0.7.7)
|
||||||
|
base64
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
zeitwerk (2.7.1)
|
zeitwerk (2.7.1)
|
||||||
@ -566,6 +567,7 @@ DEPENDENCIES
|
|||||||
caxlsx
|
caxlsx
|
||||||
caxlsx_rails
|
caxlsx_rails
|
||||||
chroma
|
chroma
|
||||||
|
concurrent-ruby (= 1.3.4)
|
||||||
coveralls_reborn (~> 0.18.0)
|
coveralls_reborn (~> 0.18.0)
|
||||||
database_cleaner
|
database_cleaner
|
||||||
devise (>= 4.9)
|
devise (>= 4.9)
|
||||||
@ -609,7 +611,7 @@ DEPENDENCIES
|
|||||||
puma (= 6.4.3)
|
puma (= 6.4.3)
|
||||||
pundit
|
pundit
|
||||||
railroady
|
railroady
|
||||||
rails (= 7.0.8.6)
|
rails (= 7.0.8.7)
|
||||||
rb-readline
|
rb-readline
|
||||||
recurrence
|
recurrence
|
||||||
redis-session-store
|
redis-session-store
|
||||||
|
Loading…
x
Reference in New Issue
Block a user