Skip to content

Commit

Permalink
Add supported environments
Browse files Browse the repository at this point in the history
  • Loading branch information
mirakui committed Sep 16, 2024
1 parent ba10fe1 commit 9dc753c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Change Log
## 1.0.0
* Added support for ActiveRecord 7.1.
* Redesigned the proxy chain to accommodate internal structure changes in ActiveRecord 7.1.
* Introduced integration tests using real databases, allowing for more robust testing of functionality with MySQL, PostgreSQL, SQLite, and SQLServer.
See: https://github.com/cookpad/arproxy/issues/30

## 0.2.9
* Support ActiveRecord 7.0 (#21)
Thanks to @r7kamura
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,26 @@ end
+-------------------------+ +----------+ +----------+ +------------------+
```

## Supported Environments

Arproxy supports the following databases and adapters:

- MySQL
- `mysql2`, `trilogy`
- PostgreSQL
- `pg`
- SQLite
- `sqlite3`
- SQLServer
- `activerecord-sqlserver-adapter`

We have tested with the following versions of Ruby and ActiveRecord:

- Ruby
- `2.7`, `3.0`, `3.1`, `3.2`, `3.3`
- ActiveRecord
- `6.1`, `7.0`, `7.1`, `7.2`

## Examples
### Slow Query Logger
```ruby
Expand Down

0 comments on commit 9dc753c

Please sign in to comment.