1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

(feat) updated dependencies

This commit is contained in:
Sylvain 2023-03-24 10:45:47 +01:00
parent 71a9a87315
commit a92df2150e
9 changed files with 25 additions and 21 deletions

2
.nvmrc
View File

@ -1 +1 @@
16.13.2 18.15.0

View File

@ -1 +1 @@
ruby-3.1.3 ruby-3.2.1

View File

@ -1,13 +1,17 @@
# Changelog Fab-manager # Changelog Fab-manager
- Updated ruby to 3.1 - Updated ruby to 3.2
- Updated rails to 6.1 - Updated rails to 6.1
- Updated puma to 6.1 - Updated puma to 6.1
- Updated responders to 3.0 - Updated responders to 3.0
- Updated devise to 4.9 - Updated devise to 4.9
- Updated sassc to 2.3 - Updated sassc to 2.4
- Updated sentry to 5.8 - Updated sentry to 5.8
- Updated web-console to 4.2 - Updated web-console to 4.2
- Updated shakapacker to 6.6
- Updated bootsnap to 1.16
- Updated pg to 1.4
- Updated nodejs to 18.15
- Fix a bug: broken display after a plan category was deleted - Fix a bug: broken display after a plan category was deleted
## v5.9.1 2023 March 22 ## v5.9.1 2023 March 22

View File

@ -1,4 +1,4 @@
FROM ruby:3.1.3-alpine FROM ruby:3.2.1-alpine
MAINTAINER contact@fab-manager.com MAINTAINER contact@fab-manager.com
# Install upgrade system packages # Install upgrade system packages

View File

@ -8,7 +8,7 @@ gem 'rails', '~> 6.1'
gem 'bootsnap' gem 'bootsnap'
# Use Puma as web server # Use Puma as web server
gem 'puma', '6.1.0' gem 'puma', '6.1.0'
gem 'shakapacker', '6.5.5' gem 'shakapacker', '6.6.0'
# rails 6 compatibility with ruby 3 (may not be required after upgrade to rails 7) # rails 6 compatibility with ruby 3 (may not be required after upgrade to rails 7)
gem 'matrix' gem 'matrix'
@ -139,7 +139,7 @@ gem 'icalendar'
gem 'tzinfo-data' gem 'tzinfo-data'
# compilation of dynamic stylesheets (home page & theme) # compilation of dynamic stylesheets (home page & theme)
gem 'sassc', '= 2.3.0' gem 'sassc', '= 2.4.0'
gem 'redis-session-store' gem 'redis-session-store'

View File

@ -84,8 +84,8 @@ GEM
bcrypt (3.1.18) bcrypt (3.1.18)
bindata (2.4.10) bindata (2.4.10)
bindex (0.8.1) bindex (0.8.1)
bootsnap (1.4.6) bootsnap (1.16.0)
msgpack (~> 1.0) msgpack (~> 1.2)
brpoplpush-redis_script (0.1.2) brpoplpush-redis_script (0.1.2)
concurrent-ruby (~> 1.0, >= 1.0.5) concurrent-ruby (~> 1.0, >= 1.0.5)
redis (>= 1.0, <= 5.0) redis (>= 1.0, <= 5.0)
@ -244,7 +244,7 @@ GEM
builder builder
minitest (>= 5.0) minitest (>= 5.0)
ruby-progressbar ruby-progressbar
msgpack (1.3.3) msgpack (1.6.1)
multi_json (1.14.1) multi_json (1.14.1)
multi_xml (0.6.0) multi_xml (0.6.0)
multipart-post (2.1.1) multipart-post (2.1.1)
@ -307,7 +307,7 @@ GEM
hashery (~> 2.0) hashery (~> 2.0)
ruby-rc4 ruby-rc4
ttfunk ttfunk
pg (1.2.2) pg (1.4.6)
pg_search (2.3.2) pg_search (2.3.2)
activerecord (>= 5.2) activerecord (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
@ -408,7 +408,7 @@ GEM
rufus-scheduler (3.8.1) rufus-scheduler (3.8.1)
fugit (~> 1.1, >= 1.1.6) fugit (~> 1.1, >= 1.1.6)
safe_yaml (1.0.5) safe_yaml (1.0.5)
sassc (2.3.0) sassc (2.4.0)
ffi (~> 1.9) ffi (~> 1.9)
seed_dump (3.3.1) seed_dump (3.3.1)
activerecord (>= 4) activerecord (>= 4)
@ -420,7 +420,7 @@ GEM
sentry-ruby (5.8.0) sentry-ruby (5.8.0)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
sha3 (1.0.5) sha3 (1.0.5)
shakapacker (6.5.5) shakapacker (6.6.0)
activesupport (>= 5.2) activesupport (>= 5.2)
rack-proxy (>= 0.6.1) rack-proxy (>= 0.6.1)
railties (>= 5.2) railties (>= 5.2)
@ -582,12 +582,12 @@ DEPENDENCIES
rubocop-rails rubocop-rails
rubyXL rubyXL
rubyzip (>= 1.3.0) rubyzip (>= 1.3.0)
sassc (= 2.3.0) sassc (= 2.4.0)
seed_dump seed_dump
sentry-rails sentry-rails
sentry-ruby sentry-ruby
sha3 sha3
shakapacker (= 6.5.5) shakapacker (= 6.6.0)
sidekiq (>= 6.0.7) sidekiq (>= 6.0.7)
sidekiq-scheduler sidekiq-scheduler
sidekiq-unique-jobs (~> 7.1.23) sidekiq-unique-jobs (~> 7.1.23)

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true # frozen_string_literal: true
load 'plugin/instance' load 'plugin/instance.rb'
# the FabManager application # the FabManager application
module FabManager module FabManager

View File

@ -172,7 +172,7 @@
"resolve-url-loader": "^4.0.0", "resolve-url-loader": "^4.0.0",
"sass": "^1.49.9", "sass": "^1.49.9",
"sass-loader": "^12.6.0", "sass-loader": "^12.6.0",
"shakapacker": "6.5.5", "shakapacker": "6.6.0",
"slugify": "^1.6.5", "slugify": "^1.6.5",
"sortablejs": "^1.15.0", "sortablejs": "^1.15.0",
"style-loader": "^3.3.1", "style-loader": "^3.3.1",

View File

@ -9594,10 +9594,10 @@ setprototypeof@1.2.0:
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
shakapacker@6.5.5: shakapacker@6.6.0:
version "6.5.5" version "6.6.0"
resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-6.5.5.tgz#34c027b3d3b34b8241a946d4af256df81c0c04f7" resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-6.6.0.tgz#1e372a7ce6fa93f1a7bd1820737b8168679eb220"
integrity sha512-KsDhjihjmkJVpdnuDvHj70RzRjreXcnMQtePp+TkHzi4sXO8gwt0btoTNrwuLrgxOfac7UQadDFYFGzJwoPz5w== integrity sha512-7sNnv8PXMlgm2Ob7vZOayLKu0+PPMN3q0HEyAlkFIJtHJt7wA3p1rObhlk0/OrNeBa4dio/9HiBUeEU7bZsHvw==
dependencies: dependencies:
glob "^7.2.0" glob "^7.2.0"
js-yaml "^4.1.0" js-yaml "^4.1.0"