File tree Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 1
- ### 1.8 .1 (Next)
1
+ ### 1.9 .1 (Next)
2
2
3
3
#### Features
4
4
5
- * [ #2353 ] ( https://github.com/ruby-grape/grape/pull/2353 ) : Added Rails 7.1 support - [ @ericproulx ] ( https://github.com/ericproulx ) .
6
- * [ #2355 ] ( https://github.com/ruby-grape/grape/pull/2355 ) : Set response headers based on Rack version - [ @schinery ] ( https://github.com/schinery ) .
7
5
* Your contribution here.
8
6
9
7
#### Fixes
10
8
11
9
* Your contribution here.
10
+ *
11
+ ### 1.9.0 (2023/10/18)
12
+
13
+ #### Features
14
+
15
+ * [ #2353 ] ( https://github.com/ruby-grape/grape/pull/2353 ) : Added Rails 7.1 support - [ @ericproulx ] ( https://github.com/ericproulx ) .
16
+ * [ #2355 ] ( https://github.com/ruby-grape/grape/pull/2355 ) : Set response headers based on Rack version - [ @schinery ] ( https://github.com/schinery ) .
12
17
13
18
### 1.8.0 (2023/08/30)
14
19
Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ content negotiation, versioning and much more.
160
160
161
161
## Stable Release
162
162
163
- You're reading the documentation for the next release of Grape, which should be ** 1.8 .1** .
163
+ You're reading the documentation for the next release of Grape, which should be ** 1.9 .1** .
164
164
Please read [ UPGRADING] ( UPGRADING.md ) when upgrading from a previous version.
165
- The current stable release is [ 1.8 .0] ( https://github.com/ruby-grape/grape/blob/v1.8 .0/README.md ) .
165
+ The current stable release is [ 1.9 .0] ( https://github.com/ruby-grape/grape/blob/v1.9 .0/README.md ) .
166
166
167
167
168
168
## Project Resources
Original file line number Diff line number Diff line change 1
1
Upgrading Grape
2
2
===============
3
3
4
+ ### Upgrading to >= 1.9.0
5
+
6
+ #### Response Headers
7
+
8
+ For Rack >= 3 the following response headers are returned lowercase:
9
+
10
+ * ` content-type `
11
+ * ` x-cascade `
12
+
13
+ For Rack < 3 the following response headers are returned capitalized:
14
+
15
+ * ` Content-Type `
16
+ * ` X-Cascade `
17
+
4
18
### Upgrading to >= 1.7.0
5
19
6
20
#### Exceptions renaming
Original file line number Diff line number Diff line change 2
2
3
3
module Grape
4
4
# The current version of Grape.
5
- VERSION = '1.8.1 '
5
+ VERSION = '1.9.0 '
6
6
end
You can’t perform that action at this time.
0 commit comments