Remove code deprecated in 2.6.0
See original GitHub issueThis is a handle turning exercise - no coding skill is needed, you just need to be thorough 😃
- Find out what needs to be removed:
grep -R deprec zap/src/main/java | grep "2.6.0"
- there should be 41 matches - Remove the classes / methods / fields found above
- Add a
ZAP
header to anyparos
code changed (see examples below) - Add the affected classes / methods / fields to
zap/zap.gradle.kts
(see below) - Run
spotlessApply
- Run
./gradlew japicmp
- it should pass, if not check the report it generates - Update the corresponding help file (see below)
Example PRs:
2.2.0 + 2.3.0: code: https://github.com/zaproxy/zaproxy/pull/7067 help: https://github.com/zaproxy/zap-core-help/pull/414 2.4.x: code: https://github.com/zaproxy/zaproxy/pull/7068 help: https://github.com/zaproxy/zap-core-help/pull/415 2.5.0: code: https://github.com/zaproxy/zaproxy/pull/7102 help: https://github.com/zaproxy/zap-core-help/pull/420
Issue Analytics
- State:
- Created 2 years ago
- Comments:12 (4 by maintainers)
Top Results From Across the Web
Deprecations · spring-projects/spring-boot Wiki - GitHub
As much as possible, deprecated code should not be removed until two minors after the latest minor in which the API exists. In...
Read more >Python 3.12.0 is to remove long-deprecated items
Literally every time I try to use someone else's Python code from GitHub I run into this crap. I wanted my project to...
Read more >How to replace ErrorController deprecated function on Spring ...
Starting version 2.3.x, Spring boot has deprecated this method. Just return null as it is anyway going to be ignored.
Read more >How to Fix WebSecurityConfigurerAdapter Deprecated
How to update Spring Security configuration class to remove the warning The type WebSecurityConfigurerAdapter is deprecated.
Read more >Zephyr 2.6.0 (Working Draft)
Removed support for the old zephyr integer typedefs (u8_t, u16_t, etc…). ... During the deprecation period user code invoking ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That’s steps 4 and 6 of the issue description.
Finally, thank you very much