Release v0.0.27 #141
Pinned
shivasurya
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This release gives a huge boost to query structure and support by adding
predicatesupport andSELECTentity keyword in code-pathfinder queries parity to CodeQL. 🚀You can now declare predicates within the
CQLquery and invoke them within the query. It improves re-usability and puts us in better place to implementclass and predicatesin future release 🏅predicate isPublicOrProtected(method_declaration md) { md.getVisibility() == "public" || md.getVisibility() == "protected" } FROM method_declaration AS md WHERE isPublicOrProtected(md) SELECT md, "Listing all public or protected methods"You can now use
SELECTkeyword to pick specific one from the bunch of result. ⛏️What's New?
CQLquery by @shivasurya in feat: Add SELECT clause support forCQLquery #137Chore
Full Changelog: v0.0.26...v0.0.27
This discussion was created from the release Release v0.0.27.
Beta Was this translation helpful? Give feedback.
All reactions