For example, we have a public subnet like 1.1.1.1/27.
I PBR via Mangle that my LAN goes out via a own Routing-Mark/Table (“WAN-.5”) via 1.1.1.5, NAT rule (SNAT) is created too. The IP (1.1.1.5) itself is DISABLED (under IP/Addresses).
But the LAN-clients can reach the internet via 1.1.1.5 (checked via myip.com). I am sure this was not possible under ROSv6?! By disabling the IP, everything else was disabled too.
Is this somehow an intended behaviour of ROSv7? It feels not right tbh…
A local IP address is only needed for packets to and from the Mikrotik itself, it is unnecessary for forwarded packets. And yes, ROSv6 behaves the same way.
Assuming that VLAN887 is an ethernet interface, and not a point-to-point interface:
From your posted configuration, it's normal that packets sent by the clients in the VLANs to remote hosts in the internet will be able to be forwarded by your router (to the next hop A.B.111.97), while having the source addresses translated to one of those .113 to .117 addresses. This only depends on your source NAT rules. The rules are normal action=src-nat rules, and not action=masquerade ones, so it doesn't matter what IP addresses are configured under /ip address for VLAN887.
One active A.B.111.111/27 assignment under /ip address is enough to have the dynamic connected route for A.B.111.96/27 needed for the A.B.111.97 lookup.
For packets in the other direction (for example response packets from the remote hosts) it depends on your provider:
If your provider is one of those that request that you register your static MAC address with them, then it might be possible that they don't need to use ARP and can just simply send everything destined for the .111-.117 range to your MAC address. Because ARP is not used, you don't need to assign the addresses to your VLAN887 interface.
The response packets arriving at your router will be handled by connection tracking, that will undo the NAT-ing and restore the original IP address to be put in the dst-address field before routing lookup. Which means the presence of the .111-.117 addresses on your router is not necessary for the response packets to be correctly forwarded to the clients in your VLANs.
If your provider is one of those who routes all addresses in the A.B.111.112-A.B.111.117 range through A.B.111.111 (usually for configuration with "routed subnet" + "main IP") then they only need to use ARP for A.B.111.111. In that case your router having the A.B.111.111/27 entry configured on VLAN887 is also enough for it to work, because the router will be able to answer all the required ARP requests. Once the packets arrive at the router, it will be like described above with conntrack undoing the NAT-ing.
But if the provider requires working ARP responses for every single addresses in the A.B.111.111-A.B.111.117 range, then the response packets destined for A.B.111.112-A.B.111.117 with not be able to reach your router if you disable the /ip address entries like in the export. The clients in the VLANs are able to send out packets to the outside but will not get any response back. It appears that this is not the configuration used by your ISP because the connections work normally as you said.
Note: another way for it to work without the /ip address entries in this situation is to either have arp=proxy-arp on VLAN887 or published=yes ARP entries added for the addresses, and having routes to the address ranges in your main routing table. With that configuration the router will also reply to ARP requests for the A.B.111.112-A.B.111.117 addresses.
If instead of the above, your connection is a point-to-point connection then it's also normal that everything works, because it's a similar situation like the first case above, where all packets are routed to your router without ARP involved.
If I rember correctly, the “pref-src” like pref-src=A.B.111.113 in the routes was responsible in ROSv6 that it did not work with the disabled IPs. But I am not 100% sure. It seems there was some change from v6 to v7??
They are not point-to-point interfaces. VLAN887 is a transfer-VLAN to the ISP-Router, who is physically not at the same place as the main-router.
You can even NAT to a specific IP address that is not assigned or bind to specific interface as long as the upstream route that subnet back to you so I think what you are experiencing is normal just my 0.002$