Skip to content

Commit

Permalink
Merge branch 'dmpopidor-dev' into dmpopidor-master
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminfaure committed Nov 22, 2023
2 parents 0b51357 + 21dad7e commit f850748
Show file tree
Hide file tree
Showing 27 changed files with 1,001 additions and 888 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG_DMPOPIDoR.md
Expand Up @@ -2,6 +2,11 @@

**Attention** Cette liste de changements concerne les déploiements sur nos serveurs de test en interne.

## 17/11/2023
- Correction de l'affichage du choix des recommandations (Carte KB #9917)
- La recherche d'organisme n'est plus sensible aux accents (Carte KB #9844)
- Mise à jour vers Ruby 3.2 & Rails 7.1

## 29/09/2023
- Correction du problème de bande blanche sous le pied de page (ce problème venait d'une image ajoutée dans par le code Matomo, a voir si retirer cette image a une conséquence sur l'habilité de Matomo suivre les utilsateurs)
- La recherche d'organisme lors de la création de compte ou dans le profil utilisateur peut désormas se faire sans accent.
Expand Down
10 changes: 7 additions & 3 deletions Gemfile
Expand Up @@ -2,14 +2,14 @@

source 'https://rubygems.org'

ruby '>= 3.1'
ruby '>= 3.2'

# ===========#
# CORE RAILS #
# ===========#

# Full-stack web application framework. (http://rubyonrails.org)
gem 'rails', '~> 7.0'
gem 'rails', '~> 7.1'

# TODO: Remove this once Rails addresses the issue with its dependency on mimemagic. Mimemagic had
# an MIT license but was using some incompatible GPL license code.
Expand Down Expand Up @@ -116,7 +116,7 @@ gem 'jwt'
gem 'pundit'

# Gem for throttling malicious attacks
gem 'rack-attack', '~> 6.6', '>= 6.6.1'
gem 'rack-attack'

# ========== #
# UI / VIEWS #
Expand Down Expand Up @@ -220,6 +220,10 @@ gem 'activerecord_json_validator'
gem 'rswag-api'
gem 'rswag-ui'

# TZInfo::Data is the public domain IANA Time Zone Database packaged as a set of Ruby modules for use with TZInfo.
# https://github.com/tzinfo/tzinfo-data
gem 'tzinfo-data'

# ================================= #
# ENVIRONMENT SPECIFIC DEPENDENCIES #
# ================================= #
Expand Down

0 comments on commit f850748

Please sign in to comment.