forked from playframework/play1
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play 1.7.1 #54
Merged
Merged
Play 1.7.1 #54
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
4e9b3d4
Third party dependency update 20220403
tazmaniax 97a8c2c
fixed #1399
jacol84 547bf88
[#1401] 🐛 Fix python3 incompatibilities in module manipulation code
holajsh b1729b1
Merge pull request #1402 from holajsh/1401_python3_module_fixes
xael-fry 4a41d32
Merge pull request #1400 from jacol84/run-on-win
xael-fry 20d8744
Merge pull request #1397 from tazmaniax/third_party_dependency_update…
xael-fry 5d057d4
[#1403] 🐛 Fix Groovy compilation unit that tries to write in applicat…
holajsh 1dbaf5c
[#1403] 🐛 Add a comment to explain why reflection is used instead of …
holajsh ed2622d
Merge pull request #1406 from holajsh/1403_groovy_compilation_fixes
xael-fry 72e331f
#1405: replace HashMap be ConcurrentHashMap
aleksandy 0dfa874
update check of java version
aleksandy 672e3c5
Do not overwrite system property net.spy.log.LoggerImpl
2478bd2
Merge pull request #1408 from aleksandy/fix/1405
xael-fry d9cfc33
[#1411] Update framework/src/play/cache/MemcachedImpl.java
xael-fry 7cc3fbb
Merge pull request #1411 from sp00m/patch-1
xael-fry 629aee5
Merge pull request #1409 from aleksandy/correct-check-of-java-version…
xael-fry 629ccd3
* Prepare release 1.7.1
xael-fry 9acc220
Merge pull request #1416 from xael-fry/prepare-1.7.1-release
xael-fry f0f6e3e
Updated dependencies as of 20220618 (#1417)
tazmaniax 913ec06
ThreadLocal#remove() instead of ThreadLocal#set(null)
aleksandy 678d7e4
cleanup code
aleksandy de2816d
set valid source and target levels
aleksandy 2f3c232
cleanup code
aleksandy fd05a73
use standard java.nio instead of third party library
aleksandy d874f33
cleanup modules
aleksandy 45085fa
reorganize fields order and make them final
aleksandy 07e954e
cleanup code
aleksandy 6171e0b
use new api to create predefined maps
aleksandy 015d0ad
remove redundant unboxing and nulls checks
aleksandy bae4d87
remove duplicates
aleksandy 7b1340c
use standard charset directly
aleksandy f959f53
remove unused private fields
aleksandy fd8eaf0
use lambdas instead of anonymous class
aleksandy d957a30
StringBuilder instead of StringBuffer
aleksandy 729c5ff
use primitives instead of wrapper class
aleksandy 90e5f4a
use new java 9+ api
aleksandy 7d1c9fe
make classes static
aleksandy 4a0314a
remove duplicates and use immutable map
aleksandy 234ed39
use constructors with argument instead of no-args+putAll()
aleksandy caa9b07
use new api to create predefined map
aleksandy b51bea0
use new api to create predefined list
aleksandy f4fda5a
Updated dependencies
tazmaniax 5faf514
Updated dependencies 14/9/2022
tazmaniax d7e801f
Updated dependencies 14/9/2022
tazmaniax 576fcc0
Merge pull request #1425 from tazmaniax/depenencies-20220828
xael-fry d6dae44
Merge pull request #1407 from aleksandy/cleanup-code
xael-fry 400e648
Merge remote-tracking branch 'play/master' into play_1.7.1
renat-nosto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
documentation/manual/releases/release1.7.x/releasenotes-1.7.1.textile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Play 1.7.1 -- Release notes | ||
|
||
Play 1.7.1 has been released of the master branch. | ||
|
||
The changes in this release are listed in the "1.7.1 on github":https://github.com/playframework/play1/milestone/7832586 including 13 resolved tickets. | ||
|
||
|
||
## What's new in Play 1.7.1 | ||
|
||
|
||
## What's fixed in Play 1.7.1 | ||
|
||
* "#1397":https://github.com/playframework/play1/issues/1397 : Third party dependency update 20220403 | ||
* "#1399":https://github.com/playframework/play1/issues/1399 : [1.7.0] Regression: `play idealize` dies with `UnboundLocalError: local variable 'playHome' referenced before assignment` | ||
* "#1400":https://github.com/playframework/play1/issues/1400 : fixed #1399 "UnboundLocalError: local variable 'playHome' referenced before assignment | ||
* "#1401":https://github.com/playframework/play1/issues/1401 : Python3 incompatibilities in module manipulations | ||
* "#1402":https://github.com/playframework/play1/issues/1402 : [#1401] 🐛 Fix python3 incompatibilities in module manipulation code | ||
* "#1403":https://github.com/playframework/play1/issues/1403 : Temporary class of Groovy template is output directly under application dir | ||
* "#1405":https://github.com/playframework/play1/issues/1405 : 1.7.0: concurrent modification exception | ||
* "#1406":https://github.com/playframework/play1/issues/1406 : [#1403] 🐛 Fix Groovy compilation unit that tries to write in applicat… | ||
* "#1408":https://github.com/playframework/play1/issues/1408 : #1405: replace HashMap be ConcurrentHashMap | ||
* "#1409":https://github.com/playframework/play1/issues/1409 : update check of java version | ||
* "#1411":https://github.com/playframework/play1/issues/1411 : Do not overwrite system property net.spy.log.LoggerImpl -> 1.7.1 | ||
* "#1413":https://github.com/playframework/play1/issues/1413 : #1405: replace HashMap be ConcurrentHashMap | ||
* "#1414":https://github.com/playframework/play1/issues/1414 : Memcached implementaion broken due to log4j update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+289 KB
framework/lib/groovy-xml-3.0.9.jar → framework/lib/groovy-xml-3.0.12.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+295 KB
framework/lib/log4j-api-2.17.1.jar → framework/lib/log4j-api-2.18.0.jar
Binary file not shown.
Binary file renamed
BIN
+1.71 MB
framework/lib/log4j-core-2.17.1.jar → framework/lib/log4j-core-2.18.0.jar
Binary file not shown.
Binary file renamed
BIN
+23.7 KB
framework/lib/log4j-slf4j-impl-2.17.1.jar → framework/lib/log4j-slf4j-impl-2.18.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+6.64 MB
...ework/lib/org.eclipse.jdt.core-3.28.0.jar → ...ework/lib/org.eclipse.jdt.core-3.31.0.jar
Binary file not shown.
Binary file renamed
BIN
+992 KB
framework/lib/postgresql-42.3.1.jar → framework/lib/postgresql-42.5.0.jar
Binary file not shown.
Binary file renamed
BIN
+40.5 KB
framework/lib/slf4j-api-1.7.35.jar → framework/lib/slf4j-api-1.7.36.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix for play idealize
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh! is that it? interesting