Adding the same address to egress under another category (backend/client) triggers major update

We have following section in manifest:

permissions:
  external:
    fetch:
      client:
        - address: "*.mixpanel.com"
          category: analytics
          inScopeEUD: false

We use mixpanel egress for analytics, but recently we found it to be unreliable transport and we want to move it over to backend. So, we tried changing that section in manifest to include backend egress permission:

permissions:
  external:
    fetch:
      client:
        - address: "*.mixpanel.com"
          category: analytics
          inScopeEUD: false
      backend:
        - address: "*.mixpanel.com"
          category: analytics
          inScopeEUD: false

But this change triggers major update which is no-go for us currently. Note, we did not add any new egress addresses, just added existing one to backend.

1 Like