File tree Expand file tree Collapse file tree
java/pl/databucket/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group = ' pl.databucket'
9- version = ' 3.4.3 '
9+ version = ' 3.4.4 '
1010targetCompatibility = 8
1111sourceCompatibility = 8
1212
Original file line number Diff line number Diff line change 11{
22 "homepage" : " ." ,
33 "name" : " databucket" ,
4- "version" : " 3.4.3 " ,
4+ "version" : " 3.4.4 " ,
55 "private" : true ,
66 "dependencies" : {
77 "@material-ui/core" : " 4.12.4" ,
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export default function InfoDialog() {
6262 >
6363 < img style = { { marginLeft : '100px' , marginTop : '20px' } } src = { DatabucketLogo } alt = '' width = '399' height = '65' />
6464 < div style = { { margin : '20px' } } >
65- < Typography color = 'secondary' > Version: < b > 3.4.3 </ b > </ Typography >
65+ < Typography color = 'secondary' > Version: < b > 3.4.4 </ b > </ Typography >
6666 < Link target = '_blank' href = 'https://www.databucket.pl' color = "primary" > www.databucket.pl</ Link > < br />
6767 < Link target = '_blank' href = 'https://github.com/databucket/databucket-server' color = "textSecondary" > Source code</ Link > < br />
6868 < Link target = '_blank' href = 'https://github.com/databucket/databucket-server/wiki' color = "textSecondary" > Documentation</ Link > < br />
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ export default function LoginPage() {
296296 < div className = "ContainerClass" >
297297 { < img src = { Logo } alt = '' /> }
298298 { paper ( ) }
299- < Typography variant = "caption" > 3.4.3 </ Typography >
299+ < Typography variant = "caption" > 3.4.4 </ Typography >
300300 < MessageBox
301301 config = { messageBox }
302302 onClose = { ( ) => setMessageBox ( { ...messageBox , open : false } ) }
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public Docket confDataContext() {
4848 private ApiInfo apiInfo () {
4949 return new ApiInfoBuilder ()
5050 .title ("Databucket API" )
51- .version ("3.4.3 " )
51+ .version ("3.4.4 " )
5252 .build ();
5353 }
5454}
Original file line number Diff line number Diff line change 2323import pl .databucket .server .repository .UserRepository ;
2424import pl .databucket .server .security .TokenProvider ;
2525import pl .databucket .server .service .ManageUserService ;
26- import pl .databucket .server .service .data .DataService ;
2726
2827import javax .mail .MessagingException ;
2928import java .util .*;
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ public User modifyUser(ManageUserDtoRequest manageUserDtoRequest) {
134134 User user = userRepository .findByUsername (manageUserDtoRequest .getUsername ());
135135
136136 // clear last send email dates when changed email address
137- if (!user .getEmail ().equals (manageUserDtoRequest .getEmail ())) {
137+ if (user . getEmail () != null && !user .getEmail ().equals (manageUserDtoRequest .getEmail ())) {
138138 user .setLastSendEmailForgotPasswordLinkDate (null );
139139 user .setLastSendEmailTempPasswordDate (null );
140140 }
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ spring:
1515 jackson :
1616 date-format : yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
1717
18+ recaptcha :
19+ enabled : false
20+ siteKey : yourSiteKey
21+ secretKey : yourSecretKey
22+
1823logging :
1924 level :
2025 root : info
Original file line number Diff line number Diff line change 77 ██████╔╝██║ ██║ ██║ ██║ ██║██████╔╝╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ██████╔╝
88 ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝
99
10- Databucket version: (v3.4.3 )
10+ Databucket version: (v3.4.4 )
1111Spring Boot version:${spring-boot.formatted-version}
You can’t perform that action at this time.
0 commit comments