Why would you want to increase the ID?
You could autoincrease a version (integer) attribute or just work with a datetime-Attribute if the updated_at isn’t enough for your UseCase.
In my opinion, manipulating the ID should not be considered as a solution.
If you want to create a new entity you could however also create a solution by using beforeUpdate-Lifecycle-Hook and create a new (copied) entity that will - by default - get a new ID.
So I guess it’s not a question “if strapi does support it” more like how flexible you are.