7045 Commits

Author SHA1 Message Date
justmehyp
ba81f6a06a Remove unused field 'digester' in Md4PasswordEncoder
`private Digester digester;`  defined in Md4PasswordEncoder is never used. So remove it.

Closes gh-8553
2020-05-21 11:21:58 -05:00
Maksim Vinogradov
a39efaf883 Prevent StackOverflowError for AccessControlEntryImpl.hashCode
Getting StackOverflowError when invoke AclImpl.hashCode because of
cross-references between AclImpl and AccessControlEntryImpl

Remove from AccessControlEntryImpl.hashCode method invocation of
acl.hashCode

fixes gh-5401
2020-05-21 10:09:22 -05:00
Rob Winch
7d5e032e25 Revert "Create the CSRF token on the bounded elactic scheduler"
This reverts commit e21ef422e799ff7b661b0e731df40ea717597803.
2020-05-18 11:09:41 -05:00
cbornet
e21ef422e7 Create the CSRF token on the bounded elactic scheduler
The CSRF token is created with a call to UUID.randomUUID which is blocking.
This change ensures this blocking call is done on the bounded elastic scheduler which supports blocking calls.

Fixes gh-8128
2020-05-18 11:07:41 -05:00
Artyom Tarynin
66f923dab7 Update AntPathRequestMatcher.java
Fixes gh-8512
2020-05-14 10:58:32 -04:00
Dávid Kovács
e8daeacd89 Document NoOpPasswordEncoder will not be removed
This commit adds extension to deprecation notice.

Fixes gh-8506
2020-05-13 12:57:04 -05:00
Rob Winch
27f30b04cd Remove Broken Test
Issue gh-8518
2020-05-12 13:38:42 -05:00
Rob Winch
baa238e339 Fix non-standard HTTP method for CsrfWebFilter
Closes gh-8452
2020-05-12 13:22:04 -05:00
Eleftheria Stein
cf5bd52121 Next development version 2020-05-06 16:40:35 -04:00
Eleftheria Stein
ef78626045 Release 5.0.16.RELEASE 5.0.16.RELEASE 2020-05-06 16:25:17 -04:00
Eleftheria Stein
7f8efb7680 Update to GAE 1.9.80
Closes gh-8479
2020-05-06 12:27:50 -04:00
Eleftheria Stein
2c4d13ddef Update to org.powermock 2.0.7
Closes gh-8478
2020-05-06 12:26:42 -04:00
Eleftheria Stein
ed2a646a69 Update to Spring Framework 5.0.17.RELEASE
Closes gh-8477
2020-05-06 12:25:59 -04:00
Eleftheria Stein
f8f4d960b5 Clean up Javadoc
Fixes gh-8480
2020-05-05 17:34:53 -04:00
Rob Winch
76a4df0461 Add ROLE_INFRASTRUCTURE to infrastructure beans
Closes gh-8407
2020-04-27 09:23:40 -05:00
Dávid Kovács
7eee6b102f ActiveDirectoryLdapAuthenticationProvider uses InternalAuthenticationServiceException
Closes gh-2884
2020-04-24 10:44:21 -05:00
Rob Winch
d69288e665 Fix example in javadoc of FilterChainProxy
Closes gh-8344
2020-04-08 09:15:03 -05:00
Alan Czajkowski
62bc17ea3f BCryptPasswordEncoder rawPassword cannot be null
Closes gh-8317
2020-04-07 13:48:07 -05:00
hotire
fd2798ca95 Fix typo in Javadoc of ServerHttpSecurity#hasAuthority
Closes gh-8336
2020-04-06 14:21:16 -05:00
Eleftheria Stein
173660c6ef Fix HttpSecurity Javadoc
Fixes gh-4404
2020-04-02 12:04:24 -04:00
Eleftheria Stein
d6aa6a2246 Next Development Version 2020-04-01 16:29:44 -04:00
Eleftheria Stein
1526c981aa Release 5.0.15.RELEASE 5.0.15.RELEASE 2020-04-01 15:31:39 -04:00
Eleftheria Stein
a9ddd363aa Fix typo in Getting Started docs
Fixes gh-5254
2020-04-01 15:14:23 -04:00
Eleftheria Stein
4edcac7651 Update to httpclient 4.5.12
Fixes gh-8304
2020-04-01 11:50:22 -04:00
Eleftheria Stein
eecad9ee9a Update to hibernate-validator 6.0.19.Final
Fixes gh-8303
2020-04-01 11:49:42 -04:00
Eleftheria Stein
0191e1f11e Update to reactive-streams 1.0.3
Fixes gh-8302
2020-04-01 11:49:06 -04:00
Eleftheria Stein
d73f0c5fb9 Update to hibernate-core 5.2.18.Final
Fixes gh-8301
2020-04-01 11:48:44 -04:00
Eleftheria Stein
8d07698d94 Update to groovy 2.4.19
Fixes gh-8300
2020-04-01 11:48:03 -04:00
Eleftheria Stein
c9c9532447 Update to unboundid-ldapsdk 4.0.14
Fixes gh-8299
2020-04-01 11:47:24 -04:00
Eleftheria Stein
d2d9ce9e6b Update to okhttp 3.12.10
Fixes gh-8298
2020-04-01 11:46:46 -04:00
Eleftheria Stein
df6e58ca1d Update to mockwebserver 3.12.10
Fixes gh-8297
2020-04-01 11:46:12 -04:00
Eleftheria Stein
ffa1bc8083 Update to org.powermock 2.0.6
Fixes gh-8296
2020-04-01 11:45:29 -04:00
Eleftheria Stein
c91e456ae7 Update to GAE 1.9.79
Fixes gh-8295
2020-04-01 11:44:43 -04:00
Rob Winch
45d81ffc49 Fix HttpServlet3RequestFactory Logout Handlers
Previously there was a problem with Servlet API logout integration
when Servlet API was configured before log out.

This ensures that logout handlers is a reference to the logout handlers
vs copying the logout handlers. This ensures that the ordering does not
matter.

Closes gh-4760
2020-03-30 22:19:58 -05:00
Josh Cummings
3a787e2c4f
Add Missing Import
Restored an import that was lost during a backport

Issue gh-4183
2020-03-27 15:07:57 -06:00
Josh Cummings
b50e511745
SwitchUserFilter Defaults to POST
Fixes gh-4183
2020-03-27 14:43:10 -06:00
Eleftheria Stein
e3a11c98bd Update Encryptors documentation
Fixes gh-8208
2020-03-27 11:23:55 -04:00
Erik van Paassen
d4ceabd7ac
Fix typo in Javadoc of HttpSecurity#csrf()
`HttpSecurity#csrf()` obviously returns a `CsrfConfigurer`, while the Javadoc states that it returns the `ServletApiConfigurer`.
2020-03-17 13:38:04 -06:00
Markus Engelbrecht
475a53233d
Fix typo 'properites' in documentation
Fixes gh-8095
2020-03-11 11:05:06 -06:00
AmitB
d245b0466a Fix typo in AntPathRequestMatcher contructor comment
Closes gh-8042
2020-03-02 07:22:31 -06:00
LeeHainie
d1162c39ce Remove unwanted code
Remove unwanted code
2020-02-20 12:31:21 -07:00
Joe Grandja
888aa15e20 Add release-notes-sections.yml 2020-02-05 15:21:20 -05:00
Joe Grandja
b92f105f35 Next Development Version 2020-02-05 08:40:27 -05:00
Joe Grandja
8febecd43f Release 5.0.14.RELEASE 5.0.14.RELEASE 2020-02-05 07:27:13 -05:00
Joe Grandja
425b7783b5 Update to org.slf4j 1.7.30
Fixes gh-7934
2020-02-04 20:34:15 -05:00
Joe Grandja
b7ee7136b2 Update to org.powermock 2.0.5
Fixes gh-7933
2020-02-04 20:30:32 -05:00
Joe Grandja
0d331b08b9 Update to hibernate-validator 6.0.18.Final
Fixes gh-7932
2020-02-04 20:26:20 -05:00
Joe Grandja
c47d72fd12 Update to org.bouncycastle:bcprov-jdk15on 1.64
Fixes gh-7931
2020-02-04 20:23:01 -05:00
Joe Grandja
248c956962 Update to org.bouncycastle:bcpkix-jdk15on 1.64
Fixes gh-7930
2020-02-04 20:21:09 -05:00
Joe Grandja
530def3af0 Update to org.aspectj 1.9.5
Fixes gh-7929
2020-02-04 20:18:20 -05:00