Skip to content

Commit

Permalink
Hide internal strimzi topics/consumers by default
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon committed Apr 30, 2021
1 parent e265c0a commit 002f51d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to `Tools for Apache Kafka®` are documented in this file.
## [0.13.0]
### Added
- Show cluster state in kafka file. See [#175](https://github.com/jlandersen/vscode-kafka/pull/175).
- Hide internal [strimzi](https://strimzi.io/) topics/consumers by default. See [#176](https://github.com/jlandersen/vscode-kafka/pull/176).

## [0.12.0] - 2021-04-26
### Added
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,16 @@
"default": [
"__consumer_offsets",
"__transaction_state",
"_schemas"
"_schemas",
"__strimzi*"
],
"markdownDescription": "Glob patterns filtering topics out of the Kafka explorer. `*` matches any string, `?` matches a single character. See [here](command:vscode-kafka.open.docs.page?%5B%7B%22page%22%3A%22Explorer%22%2C%22section%22%3A%22kafkaexplorertopicsfilter%22%7D%5D) for more information."
},
"kafka.explorer.consumers.filter": {
"type": "array",
"default": [],
"default": [
"strimzi-canary*"
],
"markdownDescription": "Glob patterns filtering consumer groups out of the Kafka explorer. `*` matches any string, `?` matches a single character. See [here](command:vscode-kafka.open.docs.page?%5B%7B%22page%22%3A%22Explorer%22%2C%22section%22%3A%22kafkaexplorerconsumersfilter%22%7D%5D) for more information."
},
"kafka.producers.fakerjs.enabled": {
Expand Down

0 comments on commit 002f51d

Please sign in to comment.