ikaruss
ikaruss

Reputation: 491

Are multiple updates of a Chrome extension applied incrementally?

Can I rely on 1.0.0 always being followed by 1.0.1, or should I also expect 1.0.2 if the user has not received 1.0.1 yet but 1.0.2 is the latest?

Basically, can 1.0.0->1.0.2 happen? Excluding 1.0.1.

The problem is, I have data structures that may change between versions and I want to figure out how to best migrate the data between them.

Upvotes: 0

Views: 25

Answers (1)

JamesKn
JamesKn

Reputation: 1045

In my experience no, you should write code that expects 1.0.0 -> 1.0.2 excluding 1.0.1

Chrome will update to the latest version of Chrome extension it can find.

Upvotes: 2

Related Questions