Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: FiberedMySQL2 Gem Build
on: [push, pull_request]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pull_request was seemingly causing two builds to run at the same time. Removing it fixed the issue.

on: [push]
jobs:
test:
name: Unit Tests
Expand All @@ -11,8 +11,8 @@ jobs:
ruby: [3.1, 3.2, 3.3]
gemfile:
- Gemfile
- gemfiles/rails_6_1.gemfile
- gemfiles/rails_7_0.gemfile
- gemfiles/rails_7_1.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

require "appraisal/matrix"

appraisal_matrix(rails: [">= 6.1", "< 7.1"])
appraisal_matrix(rails: [">= 7.0", "< 7.2"])
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2025-08-21
### Added
- Support for Rails 7.1.

### Removed
- Removed support for Rails 6.
- Removed usage of EventMachine::Synchrony ActiveRecord Mysql adapter. This adapter code was extremely old and we were overriding their patches back to the current ActiveRecord version.

## [0.3.1] - 2024-10-30
### Fixed
- Fixed bug in FiberedMysqlAdapter.new_client that was causing `uninitialized constant` errors.
Expand Down
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ gemspec

gem 'appraisal'
gem 'appraisal-matrix'
gem 'coveralls', require: false
gem 'mysql2', '~> 0.5'
gem 'nokogiri'
gem 'pry'
gem 'pry-byebug'
gem 'rake'
gem 'rspec'
Comment on lines -10 to -16
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am consistently getting random segfaults issues with coveralls and rspec mocks. Rspec 3.12 seems to be a little better for the segfaults but I think this is an issue with EventMachine as well...

Also coveralls is no longer supported so I removed it.

gem 'rspec', '< 3.13'
Loading