Spring Buildmaster
0e9d9da46b
Release version 4.0.4.RELEASE
10 years ago
Rob Winch
5f6e3855f1
Next Development Version
10 years ago
Spring Buildmaster
19f88e9179
Release version 4.0.3.RELEASE
10 years ago
Rob Winch
269127c2c6
SEC-2941: Default RequestPostProcessor overrides
...
Previously a default RequestPostProcessor overrode additional
RequestPostProcessor instances added to the request. This was due to
SPR-12945. Now that SPR-12945 is fixed, this commit adds a test to
ensure this stays fixed.
10 years ago
Rob Winch
969f3a7d1b
Update pom.xml to latest snapshots
11 years ago
Thomas Darimont
ad1d858e2b
SEC-3056 - Fix JavaDoc errors.
...
Fixed JavaDoc errors accross multiple modules in order to make javadoc happy with Java 8.
11 years ago
Rob Winch
e8c9f75f9c
Update pom.xml to latest versions
11 years ago
Rob Winch
bc53945d89
Remove unused import in WithSecurityContextTestExecutionListenerTests
11 years ago
Rob Winch
2d448658cd
SEC-3042: Add SecurityTestExecutionListeners
11 years ago
Rob Winch
4cafd575c0
SEC-3041: Fix WithSecurityContextTestExecutionListener w/ no ApplicationContext
11 years ago
Rob Winch
e4517016ca
SEC-2984: Add @WithMockUser authorities property
11 years ago
Rob Winch
1bca645add
SEC-2935: Multiple MockMvc invocations proper SecurityContext setup
...
Previously if a MockMvc instance was setup with a user and then again with
no user, then the original user would be setup.
This commit ensures that if a user is setup and then no user is setup no
user is used.
11 years ago
Rob Winch
d5dfeeca49
SEC-2927: Update chat-jc pom so Maven Builds
...
Previously there were some incorrect dependency versions. This commit fixes
that.
We added dependencyManagement for Spring Framework and corrected
Thymeleaf and embedded redis versions.
11 years ago
Rob Winch
db531d9100
SEC-2917: Update to Spring 4.1.6
11 years ago
Rob Winch
ae6af5d73c
SEC-2915: Updated Java Code Formatting
11 years ago
Rob Winch
0a2e496a84
SEC-2915: groovy/gradle spaces->tabs
11 years ago
Rob Winch
cf9f58a4ac
SEC-2915: XML spaces->tabs
11 years ago
Rob Winch
706e7fd7a2
SEC-2863: Update to Spring 4.1.5
11 years ago
Rob Winch
9c5cb2f438
SEC-2593: Add additional test
11 years ago
Rob Winch
8f0001f59a
Next Development Version
11 years ago
Spring Buildmaster
49b69196de
Release version 4.0.0.RC1
11 years ago
Rob Winch
1677836d53
SEC-2790: Deprecate @EnableWebMvcConfig
11 years ago
Rob Winch
3171cc4364
SEC-2788: Add @Configuration as meta annotation to @Enable* annotations
11 years ago
Rob Winch
11116c2b80
SEC-2787: Update Versions
11 years ago
Rob Winch
c67ff42b8a
SEC-2783: XML Configuration Defaults Should Match JavaConfig
...
* j_username -> username
* j_password -> password
* j_spring_security_check -> login
* j_spring_cas_security_check -> login/cas
* j_spring_cas_security_proxyreceptor -> login/cas/proxyreceptor
* j_spring_openid_security_login -> login/openid
* j_spring_security_switch_user -> login/impersonate
* j_spring_security_exit_user -> logout/impersonate
* login_error -> error
* use-expressions=true by default
11 years ago
Rob Winch
b56e5edbbd
SEC-2784: Fix build plugins
11 years ago
Rob Winch
dfa17bdb98
SEC-2747: Remove spring-core dependency from spring-security-crypto
11 years ago
Rob Winch
5ba8f000a7
SEC-2714: Add AuthenticationPrincipal resolver for messaging support
11 years ago
Rob Winch
d316f661e8
SEC-2719: Fix order sensitive authenticated().withRoles(..)
11 years ago
Rob Winch
02c3565e22
Fix compiling in Eclipse
11 years ago
Rob Winch
533b71b9b8
SEC-2688: Remove ORDER constant
12 years ago
Rob Winch
3187ee8bf3
SEC-2700: Register WithSecurityContextTestExecutionListener by default
12 years ago
Rob Winch
b72c1ad314
SEC-2686: Create SecurityMockMvcConfigurer
12 years ago
Rob Winch
9654817fd8
SEC-2601: Add DigestRequestPostProcessor
12 years ago
Rob Winch
c8348d60e1
SEC-2602: Add test support for x509 certificate
12 years ago
Rob Winch
906a0cb0e2
SEC-2684: Correct spelling of WithSecurityContextTestExecutionListener
12 years ago
Rob Winch
e4fa42c399
SEC-2593: Add test for TestSecurityContext RPP in stateless mode
12 years ago
Rob Winch
7e3e821db1
SEC-2593: Support stateless mode in Spring Security Test
12 years ago
Rob Winch
6d45957eec
SEC-2572: Add spring-security-test method showcase
...
This will allow for using the showcase in the documentation.
12 years ago
Rob Winch
dabe3a03e7
SEC-2586: Create DefaultSecurityTestExecutionListeners
12 years ago
Rob Winch
00e1094178
Add springio-platform plugin
12 years ago
Rob Winch
8baf82532c
SEC-2015: Add spring-security-test
12 years ago
Ben Alex
b8b31d6f65
Tidy up Maven migration by eliminating unnecessary directories and having Eclipse classpath use MAVEN_REPO.
21 years ago
Ben Alex
2426bb9e8e
Make JdbcDaoTests use in-memory database.
22 years ago
Colin Sampaleanu
e2de3c9dbc
Enhance AuthenticationProcessingFilterEntryPoint and related classes, to support a property forcing the login page to be access via https even if the original intercepted request came in as http.
22 years ago
Colin Sampaleanu
3ceb492cb2
move password encoder tests to proper packages.
...
rename saltSource param in PasswordEncoder interfce to salt. It was already called salt in subclasses, and is in fact supposed to be the salt, not the source for the salt, although depending on the implementation it may still be treated as the latter.
22 years ago
Colin Sampaleanu
3d089aaa67
move and rename password encoding classes.
...
change saltSource arument to salt argument, which impl may or may not use.
22 years ago
Colin Sampaleanu
5d9d734735
more final version of the various PasswordEncoder implementations.
...
add unit tests for PasswordEncoder implementations.
remove ignore password case and ignore username case flags and handling from DaoAuthenticationProvider.
remove requirement described in JavaDoc for AuthenticationDao that it ignore case when returning a user by username. Implementations may still do so if configured as such.
22 years ago
Colin Sampaleanu
41a837f8cd
add back HSQL db in test dir, as it turns out _it is_ supposed to be in CVS
...
modify JdbcDaoTests to test for role prefix functionality
fix glitch in JdbcDaoImpl
modify Eclipse classpath so HSQL lib is loaded, so unit tests can run in Eclipse as well.
22 years ago
Colin Sampaleanu
547b1ff4e3
remove test data that somehow got checked into CVS
22 years ago