diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3398a0d..b0d5434 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,9 +7,9 @@ jobs: matrix: gemfile: - Gemfile + - gemfiles/Gemfile-rails-7-2 - gemfiles/Gemfile-rails-7-1 - gemfiles/Gemfile-rails-7-0 - - gemfiles/Gemfile-rails-6-1 ruby: - 3.0 - 3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index fc400ae..2f1e141 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,18 +4,26 @@ All notable changes to this project will be documented in this file. The format is based now on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -# Unreleased +## 3.4.4 — 2024-11-07 -* Adds mongoid support for `mount_uploadcare_file` and `mount_uploadcare_file_group` methods. +### Added + +* Add mongoid support for `mount_uploadcare_file` and `mount_uploadcare_file_group` methods. + +### Breaking Changes + +* Drop support for Rails 6.1x in line with the currently supported Rails versions: https://rubyonrails.org/maintenance ## 3.4.3 — 2024-06-01 ### Added + * For `Uploadcare::ConversionApi` added `get_document_conversion_formats_info` method to get the possible document conversion formats. ## 3.4.2 — 2024-05-11 ### Added + * Added API support for `AWS Rekognition Moderation` Add-On. ## 3.4.1 — 2024-03-24 diff --git a/gemfiles/Gemfile-rails-6-1 b/gemfiles/Gemfile-rails-7-2 similarity index 81% rename from gemfiles/Gemfile-rails-6-1 rename to gemfiles/Gemfile-rails-7-2 index 5b9ac23..019a5f2 100644 --- a/gemfiles/Gemfile-rails-6-1 +++ b/gemfiles/Gemfile-rails-7-2 @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec path: ".." -gem "rails", '~> 6.1.0', github: 'rails/rails', branch: '6-1-stable' +gem "rails", '~> 7.2.0', github: 'rails/rails', branch: '7-2-stable' gem 'http-parser', '~> 1.2', '>= 1.2.3' gem 'rake', '~> 13.0.6' diff --git a/lib/uploadcare/rails/version.rb b/lib/uploadcare/rails/version.rb index fd55a7c..228d134 100644 --- a/lib/uploadcare/rails/version.rb +++ b/lib/uploadcare/rails/version.rb @@ -2,6 +2,6 @@ module Uploadcare module Rails - VERSION = '3.4.3' + VERSION = '3.4.4' end end