Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare aws-sdk-rails 5 #166

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
inherit_from: .rubocop_todo.yml

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
Expand All @@ -10,6 +8,10 @@ AllCops:
Gemspec/RequireMFA:
Enabled: false

Metrics/AbcSize:
Exclude:
- 'spec/**/*.rb'

Metrics/BlockLength:
Exclude:
- 'spec/**/*.rb'
Expand All @@ -18,6 +20,10 @@ Metrics/MethodLength:
Exclude:
- 'spec/**/*.rb'

Metrics/ModuleLength:
Exclude:
- 'spec/**/*.rb'

Naming/FileName:
Exclude:
- 'lib/aws-sdk-rails.rb'
Expand Down
29 changes: 0 additions & 29 deletions .rubocop_todo.yml

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Unreleased Changes
------------------

* Feature - Remove dependencies on modular feature gems: `aws-actiondispatch-dynamodb`, `aws-actionmailer-ses`, `aws-actionmailbox-ses`, `aws-activejob-sqs`, and `aws-record-rails`.

* Issue - Remove `Aws::Rails.add_action_mailer_delivery_method` in favor of `ActionMailer::Base.add_delivery_method` or the Railtie and configuration in `aws-actionmailer-ses ~> 1`.

* Issue - Remove require of `aws/rails/action_mailbox/rspec` in favor of `aws/action_mailbox/ses/rspec`.

* Issue - Remove symlinked namespaces from previous major versions.

* Feature - `ActiveSupport::Notifications` are enabled by default and removes `Aws::Rails.instrument_sdk_operations`.

* Feature - Moved railtie initializations to their appropriate spots.

* Issue - Do not execute `ActiveJob` from EB cron without the root path.

4.2.0 (2024-11-20)
------------------

Expand Down
Loading