Skip to content

Commit d428d77

Browse files
authored
Merge pull request #1292 from activerecord-hackery/release-3.0.0
Get ready for 3.0.0 release
2 parents 8af5162 + 7d871d7 commit d428d77

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22

33
## Unreleased
44

5+
## 3.0.0 - 2022-03-30
6+
7+
* Move documentation into Docusaurus.
8+
PR [1291](https://github.com/activerecord-hackery/ransack/pull/1291)
9+
10+
* [BREAKING CHANGE] Remove deprecated `#search` method.
11+
PR [1147](https://github.com/activerecord-hackery/ransack/pull/1147)
12+
13+
* Allow scopes that define string SQL joins.
14+
PR [1225](https://github.com/activerecord-hackery/ransack/pull/1225)
15+
516
* Improve `sort_link` documentation.
17+
PR [1290](https://github.com/activerecord-hackery/ransack/pull/1290)
618

719
* Deprecate passing two trailing hashes to `sort_link`, for example:
820

@@ -11,6 +23,7 @@
1123
```
1224

1325
Pass a single hash with all options instead.
26+
PR [1289](https://github.com/activerecord-hackery/ransack/pull/1289)
1427

1528
* Fix `:class` option to `sort_link` not being passed to the generated link
1629
correctly when no additional options are passed. For example:
@@ -19,6 +32,11 @@
1932
sort_link(@q, :bussiness_name, class: "foo")
2033
```
2134

35+
PR [1288](https://github.com/activerecord-hackery/ransack/pull/1288)
36+
37+
* Evaluate `ransackable_scopes` before attributes when building the query.
38+
PR [759](https://github.com/activerecord-hackery/ransack/pull/759)
39+
2240
## 2.6.0 - 2022-03-08
2341

2442
* Fix regression when joining a table with itself.

lib/ransack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Ransack
2-
VERSION = '2.6.0'
2+
VERSION = '3.0.0'
33
end

0 commit comments

Comments
 (0)