Skip to content

Instantly share code, notes, and snippets.

View Haarolean's full-sized avatar
🚀
Commencing countdown, engines on

Roman Zabaluev Haarolean

🚀
Commencing countdown, engines on
View GitHub Profile
@Haarolean
Haarolean / maven.Dockerfile
Last active July 10, 2023 12:32 — forked from LuanComputacao/maven.Dockerfile
Dockerfile to install latest maven automatically
#
# Oracle Java 7 Dockerfile
#
# https://github.com/dockerfile/java
# https://github.com/dockerfile/java/tree/master/oracle-java7
#
# Pull base image.
FROM alpine as build
@Haarolean
Haarolean / release.md
Created May 11, 2023 10:16
kafka-ui 0.7.0 dev changelog

Changes

🚩 Breaking Changes

  • Masking "fieldsNamePattern" fields selection policy added @iliax (#3664):
    For MASK action: Replaced pattern with fieldsNamePattern.

  • RBAC: LDAP support @Haarolean (#3700).
    Replaced spring.ldap.dn.pattern with spring.ldap.base to match spring properties.

⚙️Features

@Haarolean
Haarolean / release.md
Created March 9, 2023 15:57
kafka-ui 0.6.0 dev changelog

Changes

⚙️Features

  • Feature: Configuration wizard @David-DB88 (#3241)
  • Integration with Open Data Discovery @iliax (#3289)

🪛Enhancements

  • FE: Redesign connector actions @David-DB88 (#3197)
  • [BE] Suppress auth errors @iliax (#3376)
@Haarolean
Haarolean / release.md
Created December 23, 2022 14:17
kafka-ui 0.5.0 dev changelog

Changes

⚙️Features

  • Role based access control / backend @Haarolean (#2790)
  • Implement per-cluster polling rates limits @iliax (#2981)
  • Data masking @iliax (#2850)
  • #2544 message fields preview @kristi-dev (#2756)
  • Msk serverless support (BE) @iliax (#2737)
  • Support prometheus as a metrics interface @MaratGumarov (#2190)
  • Pluggable serde @iliax (#2125)
@EventHandler(priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onEntityRemoveEvent(EntityRemoveEvent e) {
Iterator<Entity> it = e.getEntityList().iterator();
while (it.hasNext()) {
Entity item = it.next();
if (item.hasMetadata("MySuperItem")) {
it.remove();
}
}
}