Skip to content

Commit

Permalink
Prepare aws-sdk-rails 5 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp authored Nov 21, 2024
1 parent ceede5c commit 76598dd
Show file tree
Hide file tree
Showing 37 changed files with 191 additions and 934 deletions.
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 - [Major Version] 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

0 comments on commit 76598dd

Please sign in to comment.