Skip to content

Commit 673355d

Browse files
authored
Fix markdown lists
1 parent 1f1b364 commit 673355d

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

java/ql/lib/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
### Minor Analysis Improvements
88

9-
Fixed a sanitizer of the query `java/android/intent-redirection`. Now, for an intent to be considered
10-
safe against intent redirection, both its package name and class name must be checked.
9+
* Fixed a sanitizer of the query `java/android/intent-redirection`. Now, for an intent to be considered
10+
safe against intent redirection, both its package name and class name must be checked.
1111

1212
## 0.2.1
1313

java/ql/lib/change-notes/released/0.2.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
### Minor Analysis Improvements
88

9-
Fixed a sanitizer of the query `java/android/intent-redirection`. Now, for an intent to be considered
10-
safe against intent redirection, both its package name and class name must be checked.
9+
* Fixed a sanitizer of the query `java/android/intent-redirection`. Now, for an intent to be considered
10+
safe against intent redirection, both its package name and class name must be checked.

python/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Breaking Changes
44

5-
`API::moduleImport` no longer has any results for dotted names, such as `API::moduleImport("foo.bar")`. Using `API::moduleImport("foo.bar").getMember("baz").getACall()` previously worked if the Python code was `from foo.bar import baz; baz()`, but not if the code was `import foo.bar; foo.bar.baz()` -- we are making this change to ensure the approach that can handle all cases is always used.
5+
* `API::moduleImport` no longer has any results for dotted names, such as `API::moduleImport("foo.bar")`. Using `API::moduleImport("foo.bar").getMember("baz").getACall()` previously worked if the Python code was `from foo.bar import baz; baz()`, but not if the code was `import foo.bar; foo.bar.baz()` -- we are making this change to ensure the approach that can handle all cases is always used.
66

77
## 0.3.0
88

python/ql/lib/change-notes/released/0.4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
### Breaking Changes
44

5-
`API::moduleImport` no longer has any results for dotted names, such as `API::moduleImport("foo.bar")`. Using `API::moduleImport("foo.bar").getMember("baz").getACall()` previously worked if the Python code was `from foo.bar import baz; baz()`, but not if the code was `import foo.bar; foo.bar.baz()` -- we are making this change to ensure the approach that can handle all cases is always used.
5+
* `API::moduleImport` no longer has any results for dotted names, such as `API::moduleImport("foo.bar")`. Using `API::moduleImport("foo.bar").getMember("baz").getACall()` previously worked if the Python code was `from foo.bar import baz; baz()`, but not if the code was `import foo.bar; foo.bar.baz()` -- we are making this change to ensure the approach that can handle all cases is always used.

ruby/ql/lib/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
### Major Analysis Improvements
44

5-
Added data-flow support for [hashes](https://docs.ruby-lang.org/en/3.1/Hash.html).
5+
* Added data-flow support for [hashes](https://docs.ruby-lang.org/en/3.1/Hash.html).
66

77
### Minor Analysis Improvements
88

9-
Support for data flow through instance variables has been added.
10-
Support of the safe navigation operator (`&.`) has been added; there is a new predicate `MethodCall.isSafeNavigation()`.
9+
* Support for data flow through instance variables has been added.
10+
* Support of the safe navigation operator (`&.`) has been added; there is a new predicate `MethodCall.isSafeNavigation()`.
1111

1212
## 0.2.1
1313

ruby/ql/lib/change-notes/released/0.2.2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
### Major Analysis Improvements
44

5-
Added data-flow support for [hashes](https://docs.ruby-lang.org/en/3.1/Hash.html).
5+
* Added data-flow support for [hashes](https://docs.ruby-lang.org/en/3.1/Hash.html).
66

77
### Minor Analysis Improvements
88

9-
Support for data flow through instance variables has been added.
10-
Support of the safe navigation operator (`&.`) has been added; there is a new predicate `MethodCall.isSafeNavigation()`.
9+
* Support for data flow through instance variables has been added.
10+
* Support of the safe navigation operator (`&.`) has been added; there is a new predicate `MethodCall.isSafeNavigation()`.

0 commit comments

Comments
 (0)