Skip to content

Commit

Permalink
Version 6.3.35
Browse files Browse the repository at this point in the history
  • Loading branch information
gnepud committed Nov 13, 2024
1 parent 8a30895 commit 7dcfccb
Show file tree
Hide file tree
Showing 6 changed files with 162 additions and 131 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Next release

## v6.3.35 2024 November 13

- Fix a bug: unable to run rails db:migrate if the database is empty
- Fix a bug: timeout error when search projects with openprojects
- Fix a security issue: updated omniauth-saml to 2.2.1 to fix [CVE-2024-45409](https://github.com/advisories/GHSA-jw9c-mfg7-9rx2)
- Fix a security issue: puma to 6.4.3 to fix [CVE-2024-45614](https://security.snyk.io/vuln/SNYK-RUBY-PUMA-8062124)
- Fix a security issue: rails to 7.0.86 to fix [CVE-2024-47889](https://vulert.com/vuln-db/CVE-2024-47889)

## v6.3.34 2024 October 21

Expand Down
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0'
gem 'rails', '7.0.8.6'
# Used by rails 5.2 to reduce the app boot time by over 50%
gem 'bootsnap'
# Use Puma as web server
gem 'puma', '6.4.2'
gem 'puma', '6.4.3'
gem 'shakapacker', '6.6.0'

# rails 6 compatibility with ruby 3 (may not be required after upgrade to rails 7)
Expand Down Expand Up @@ -42,7 +42,7 @@ group :development do
gem 'foreman'
gem 'web-console', '>= 4.2.0'
# Preview mail in the browser
gem 'listen', "~> 3.5"
gem 'listen', '~> 3.5'
gem 'overcommit'
gem 'rb-readline'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
Expand Down Expand Up @@ -72,8 +72,8 @@ gem 'devise', '>= 4.9'
gem 'omniauth', '~> 2.1'
gem 'omniauth-oauth2'
gem 'omniauth_openid_connect'
gem 'omniauth-saml'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'omniauth-saml'

gem 'rolify'

Expand Down Expand Up @@ -151,7 +151,7 @@ gem 'acts_as_list'
gem 'sentry-rails'
gem 'sentry-ruby'

gem "reverse_markdown"
gem 'reverse_markdown'

gem "ancestry"
gem 'ancestry'
gem 'silencer', require: false
Loading

0 comments on commit 7dcfccb

Please sign in to comment.