Dmitriy Popov
Dmitriy Popov
We've got the same problem for Spring artifacts, and it seems that the CVE is actually for Python which is not used in the project 🤦 See https://github.com/spring-projects/spring-boot/issues/31776. CVE-2022-31569 is...
@lackovic This is an example of the suppression file to ignore this CVE: ```xml ^pkg:maven/jakarta.*$ CVE-2022-31569 ``` And this is how to set the ignore file in Maven plugin settings:...
An additional thing: when I run the same check locally (not on GitLab), I am getting the following NPEs: **UPDATE:** these NPEs are also present in the GitLab pipeline. ```...
> > > I wouldn't recommend disabling the oss indexer though, we are currently getting four failures with the indexer enabled, but none with it disabled. I would instead recommend...
Hello, guys. I'm trying to connect to my postgreSQL instance and get the same error when starting ``cloud_sql_proxy_x64.exe`` on Windows: `mkdir dpopov-gcp-spring-boot:us-central1:dpopov-postgres: The filename, directory name, or volume label syntax...
Hello, @Carrotman42, thanks for answering. Hm, I double-checked the spelling and tried this: `` cloud_sql_proxy_x64.exe -instances=dpopov-gcp-spring-boot:us-central1:dpopov-postgres=tcp:5433 `` and it seems to be working! ``` c:\java\gcp\cloud_sql_proxy>cloud_sql_proxy_x64.exe -instances=dpopov-gcp-spring-boot:us-central1:dpopov-postgres=tcp:5433 2018/08/24 17:27:13 Listening on...
Still the same problem, in both cases when inserting TOC manually or via `TocGenerator`. I tried ```java tocGenerator.generateToc(0,"TOC \\o \"1-3\" \\h \\z \\u ", false); tocGenerator.updateToc(false); ``` and also ```java...
@jfuss does the fix apply to reading file from s3 bucket? I have a `Fn:Transform` which looks like this: ``` MyApi: Type: AWS::Serverless::Api Properties: StageName: Prod DefinitionBody: Fn::Transform: Name: AWS::Include...
Hi guys. I am now migrating my app to Spring Boot `3.0.0-RC2` and Spring Security `6.0.0-RC2`. And `WebSecurityConfigurerAdapter` is not anymore there (see also https://spring.io/blog/2022/02/21/spring-security-without-the-websecurityconfigureradapter). Therefore the project does not...
Radiogroup values received by `PdfBoxForm#processRadioButtonGroup` are correct. Probably something is wrong with calls to `PDButton`, although I've debugged `PDButton#setValue` called from `PdfBoxForm#processRadioButtonGroup` and it seems to behave correctly. Maybe the...