File tree 3 files changed +43
-2
lines changed
3 files changed +43
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Push Gem
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ permissions :
7
+ contents : read
8
+
9
+ jobs :
10
+ push :
11
+ if : github.repository == 'varvet/pundit'
12
+ runs-on : ubuntu-latest
13
+
14
+ permissions :
15
+ contents : write
16
+ id-token : write
17
+
18
+ steps :
19
+ # Set up
20
+ - name : Harden Runner
21
+ uses : step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
22
+ with :
23
+ egress-policy : audit
24
+
25
+ - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
26
+ - name : Set up Ruby
27
+ uses : ruby/setup-ruby@cacc9f1c0b3f4eb8a16a6bb0ed10897b43b9de49 # v1.176.0
28
+ with :
29
+ bundler-cache : true
30
+ ruby-version : ruby
31
+
32
+ # Release
33
+ - uses : rubygems/release-gem@612653d273a73bdae1df8453e090060bb4db5f31 # v1
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
- - Dropped support for Ruby 3.0 (#796 )
5
+ ## 2.3.2 (2024-05-08)
6
+
7
+ - Refactor: First pass of Pundit::Context (#797 )
8
+
9
+ ## Changed
6
10
7
11
- Update ` ApplicationPolicy ` generator to qualify the ` Scope ` class name (#792 )
8
12
- Policy generator uses ` NoMethodError ` to indicate ` #resolve ` is not implemented (#776 )
9
13
14
+ ## Deprecated
15
+
16
+ - Dropped support for Ruby 3.0 (#796 )
17
+
10
18
## 2.3.1 (2023-07-17)
11
19
12
20
### Fixed
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module Pundit
4
- VERSION = "2.3.1 "
4
+ VERSION = "2.3.2 "
5
5
end
You can’t perform that action at this time.
0 commit comments