Skip to content

Commit 7439b7b

Browse files
committed
[release] prepare for 1.2.3
1 parent 7e6e165 commit 7439b7b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

History.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
## 1.2.3
22

3-
- Adds basic compatibility with JRuby 10.0
3+
- avoid warnings due usage of `File.exists?`
4+
- Fix Rails 7.1 compatibility by ensuring active_support is required before railtie
5+
- Workaround logger require issues with concurrent-ruby 1.3.5 and older Rails versions
6+
- Workaround NameError frozen string literal issues with JRuby 9.3 and Rails 5.2/6.0
7+
- Use non-public lookup to avoid classloader issues (#268)
8+
- visibility changes to ensure they can be run on Java 17+ as well without using reflection hack
9+
- Fix ERB deprecation warning
10+
- Fix new loggers to avoid logging at multiple levels
411
- update (bundled) rack to 2.2.15
512
- Corrects Rack 2.x compatibility when used with modern Rails, and requires Rack 2.x going forward
613
- forward ports all 1.1.x fixes to the 1.2.x stream which were omitted in 1.2.2 release (#262)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>org.jruby.rack</groupId>
1212
<artifactId>jruby-rack</artifactId>
13-
<version>1.2.3-SNAPSHOT</version>
13+
<version>1.2.3</version>
1414
<name>JRuby-Rack</name>
1515
<url>https://github.com/jruby/jruby-rack/</url>
1616
<description>

src/main/ruby/jruby/rack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
module JRuby
1010
module Rack
11-
VERSION = '1.2.2'
11+
VERSION = '1.2.3'
1212
end
1313
end

0 commit comments

Comments
 (0)