Channel trigger do not catch events any more (OH 2.5.10)

I updated to 2.5.10 and Xioami and Aqara buttons do not work anymore. I can see the event on the log, but Channel triggers do not catch the events anymore. Any ideas what is changed / what I should change?

On the log there is lines like:
2020-12-02 23:34:16.378 [vent.ChannelTriggeredEvent] - mihome:sensor_switch:158d00020dca8c:button triggered SHORT_PRESSED
2020-12-02 23:34:17.143 [vent.ChannelTriggeredEvent] - mihome:sensor_switch_aq2:158d00044dd300:button triggered SHORT_PRESSED
2020-12-02 23:34:18.186 [vent.ChannelTriggeredEvent] - mihome:sensor_switch:158d00020dca8c:button triggered DOUBLE_PRESSED
2020-12-02 23:34:19.307 [vent.ChannelTriggeredEvent] - mihome:sensor_switch_aq2:158d00044dd300:button triggered DOUBLE_PRESSED

I removed all the extra codes from triggers, so they are:
rule “Trigger aq Switch 300”
when
Channel “mihome:sensor_Switch_aq2:158d00044dd300:button” triggered
then
logInfo(“Debug”,“Button”)
end

rule "Trigger aq Switch 300_2"
when
    Channel "mihome:sensor_Switch_aq2:158d00044dd300:button" triggered SHORT_PRESSED
then
	logInfo("Debug","Button") 
end

rule "Trigger xiaomi Switch a8c"
when
    Channel "mihome:sensor_Switch:158d00020dca8c:button" triggered
then
	logInfo("Debug","Button")
end

Appreciate any help / hints
Thank you!

Please use code fences to make it easier to read your code. Just select the text and press the </> button.

From what I can see, your channel triggers don’t match the channels in the log.

sensor_switch
sensor_Switch

Thank You, all the triggers work now!

Probably code behind rules is changed to separate capital and small letters or somehow name of the channels changed during the update.