Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Keeping add-ons compatible in the rapid release process
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  15 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Jorge Villalobos  
View profile  
 More options Aug 30 2011, 1:11 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Jorge Villalobos <jo...@mozilla.com>
Date: Tue, 30 Aug 2011 11:11:44 -0600
Local: Tues, Aug 30 2011 1:11 pm
Subject: Keeping add-ons compatible in the rapid release process
Hello all,

For those of you who don't know me, my name is Jorge and I'm the Add-ons
Developer Relations Lead. I'm the person you want to contact to discuss
any technical issues related to add-ons. I'm partly in charge of add-on
developer outreach, documentation, the review process for AMO, and
add-on compatibility.

Now that we're releasing major versions more quickly than ever before,
we need to establish a process that can efficiently communicate breaking
API changes to add-on developers, so that they have enough time to
prepare for new Firefox versions.

We have determined that the best time to identify and communicate these
changes is when a new version moves to the Aurora track. APIs should
remain frozen from that point on, with the exception of feature
backouts. We also know the kinds of changes that affect add-on
developers the most:

* Any change to any XPCOM interface. This includes interface removals
and merges. Even if there is no IDL interface or a [noscript]
descriptor, this could affect add-ons that use binary XPCOM.

* Any changes in the UI of the main browser window and, to a lesser
extent, other windows.

* Any changes in the way that events, observers, or other global
notifications work.

* Changes in the JS language that introduces reserved words or other
syntax changes.

* Changes in the global objects that are available to JS scripts, be it
chrome, components or modules.

* Changes in the way scripts can be loaded or executed, and in the way
chrome communicates with content.

If you are working on any bugs that do this, I encourage you to do any
(or all) of the following:

* Use the new addon-compat keyword.

* CC me on the bug (:jorgev or jo...@mozilla.com).

* Contact me directly.

It doesn't matter if you don't know when a bug will be fixed, or if
you're not sure it will impact add-on developers. I want to keep track
of all of these bugs as early as possible so I can determine their
impact on existing add-ons, and I can figure out if it requires
validation for the compatibility bump or even backing out (as it has
happened twice before with bug 672063 and bug 675075).

Knowing the impact of a bug fix early in the game helps add-on
developers prepare for upcoming releases, and it helps support the idea
that it's possible to maintain a rapid release process without
constantly breaking add-ons.

Thanks,

- Jorge


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Aug 30 2011, 1:22 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Joshua Cranmer <Pidgeo...@verizon.net>
Date: Tue, 30 Aug 2011 12:22:04 -0500
Local: Tues, Aug 30 2011 1:22 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/2011 12:11 PM, Jorge Villalobos wrote:

> * Any change to any XPCOM interface. This includes interface removals
> and merges. Even if there is no IDL interface or a [noscript]
> descriptor, this could affect add-ons that use binary XPCOM.

> * Any changes in the UI of the main browser window and, to a lesser
> extent, other windows.

> * Changes in the global objects that are available to JS scripts, be
> it chrome, components or modules.

At least these three options I suspect are possible to be verified by
running a static analysis script that can determine the differences
between versions... Have we thought about doing such a thing?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Paolo Amadini  
View profile  
 More options Aug 30 2011, 1:39 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Paolo Amadini <paolo.02....@amadzone.org>
Date: Tue, 30 Aug 2011 19:39:29 +0200
Local: Tues, Aug 30 2011 1:39 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 30/08/2011 19.11, Jorge Villalobos wrote:

> If you are working on any bugs that do this, I encourage you to do any
> (or all) of the following:

> * Use the new addon-compat keyword.
> * CC me on the bug (:jorgev or jo...@mozilla.com).
> * Contact me directly.

I guess we should also retroactively do this for bugs that already
landed in the Beta and Aurora channels, but no need to mark bugs that
reached release at present, right?

Paolo


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jorge Villalobos  
View profile  
 More options Aug 30 2011, 2:08 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Jorge Villalobos <jo...@mozilla.com>
Date: Tue, 30 Aug 2011 12:08:45 -0600
Local: Tues, Aug 30 2011 2:08 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 11:22 AM, Joshua Cranmer wrote:

> On 8/30/2011 12:11 PM, Jorge Villalobos wrote:
>> * Any change to any XPCOM interface. This includes interface removals
>> and merges. Even if there is no IDL interface or a [noscript]
>> descriptor, this could affect add-ons that use binary XPCOM.

>> * Any changes in the UI of the main browser window and, to a lesser
>> extent, other windows.

>> * Changes in the global objects that are available to JS scripts, be
>> it chrome, components or modules.

> At least these three options I suspect are possible to be verified by
> running a static analysis script that can determine the differences
> between versions... Have we thought about doing such a thing?

We have discussed creating such tools, but very little has come out of
it. Mossop had worked on a tool that diffed IDLs between different
versions, but I think it needs some work. David Baron also suggested an
HG command to diff IDLs which should work as a temporary solution.

It'd be great to have a more robust tool in place, though.

- Jorge


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jorge Villalobos  
View profile  
 More options Aug 30 2011, 2:10 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Jorge Villalobos <jo...@mozilla.com>
Date: Tue, 30 Aug 2011 12:10:12 -0600
Local: Tues, Aug 30 2011 2:10 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 11:39 AM, Paolo Amadini wrote:

> On 30/08/2011 19.11, Jorge Villalobos wrote:
>> If you are working on any bugs that do this, I encourage you to do any
>> (or all) of the following:

>> * Use the new addon-compat keyword.
>> * CC me on the bug (:jorgev or jo...@mozilla.com).
>> * Contact me directly.

> I guess we should also retroactively do this for bugs that already
> landed in the Beta and Aurora channels, but no need to mark bugs that
> reached release at present, right?

> Paolo

I don't think that's necessary. It could be useful for historical
reasons, but the automatic validation and bump already ran for Firefox 8
(current Aurora) and unless a big compat problem arises, we won't run it
again.

- Jorge


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sheppy  
View profile  
 More options Aug 30 2011, 2:29 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Sheppy <the.she...@gmail.com>
Date: Tue, 30 Aug 2011 11:29:02 -0700 (PDT)
Local: Tues, Aug 30 2011 2:29 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On Aug 30, 1:11 pm, Jorge Villalobos <jo...@mozilla.com> wrote:

> Knowing the impact of a bug fix early in the game helps add-on
> developers prepare for upcoming releases, and it helps support the idea
> that it's possible to maintain a rapid release process without
> constantly breaking add-ons.

With few, if any, exceptions, any bug that gets addon-compat should
get dev-doc-needed as well, to ensure that MDN documentation content
gets updated for the change.

Eric Shepherd
Developer Documentation Lead
Mozilla
http://www.bitstampede.com/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David E. Ross  
View profile  
 More options Aug 30 2011, 2:41 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: "David E. Ross" <nob...@nowhere.invalid>
Date: Tue, 30 Aug 2011 11:41:57 -0700
Local: Tues, Aug 30 2011 2:41 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 10:11 AM, Jorge Villalobos wrote:

  [snipped]

How about:

* Any change to preference variables, including new variables, the
obsolescence of existing variables, and changes to the meaning of
existing variables.

--

David E. Ross
<http://www.rossde.com/>

On occasion, I might filter and ignore all newsgroup messages
posted through GoogleGroups via Google's G2/1.0 user agent
because of spam from that source.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve Wendt  
View profile  
 More options Aug 30 2011, 3:36 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Steve Wendt <spam...@forgetit.org>
Date: Tue, 30 Aug 2011 12:36:51 -0700
Local: Tues, Aug 30 2011 3:36 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/2011 10:11 AM, Jorge Villalobos wrote:

> For those of you who don't know me, my name is Jorge and I'm the Add-ons
> Developer Relations Lead. I'm the person you want to contact to discuss
> any technical issues related to add-ons. I'm partly in charge of add-on
> developer outreach, documentation, the review process for AMO, and
> add-on compatibility.

Does that include bugs in AMO?  ;-)
https://bugzilla.mozilla.org/show_bug.cgi?id=610262

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jorge Villalobos  
View profile  
 More options Aug 30 2011, 3:38 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Jorge Villalobos <jo...@mozilla.com>
Date: Tue, 30 Aug 2011 13:38:49 -0600
Local: Tues, Aug 30 2011 3:38 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 12:41 PM, David E. Ross wrote:

Yes, good catch. New preferences shouldn't break add-ons, though. Only
changing the meaning of a pref (which should never happen), or the
removal or deprecation of existing preferences should be flagged for
addon-compat.

Thanks!

- Jorge


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David E. Ross  
View profile  
 More options Aug 30 2011, 4:03 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: "David E. Ross" <nob...@nowhere.invalid>
Date: Tue, 30 Aug 2011 13:03:57 -0700
Local: Tues, Aug 30 2011 4:03 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 12:38 PM, Jorge Villalobos wrote:

Some extensions establish their own preference variables.  It might be
possible that a new Gecko, Toolkit, or application variable serves the
same purpose.  While such a new variable will clearly not break an
extension, it might allow the extension developer to eliminate a
redundant, extension-specific variable.  Thus, the implementation of new
variable does need to be communicated.

--

David E. Ross
<http://www.rossde.com/>

On occasion, I might filter and ignore all newsgroup messages
posted through GoogleGroups via Google's G2/1.0 user agent
because of spam from that source.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David E. Ross  
View profile  
 More options Aug 30 2011, 4:08 pm
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: "David E. Ross" <nob...@nowhere.invalid>
Date: Tue, 30 Aug 2011 13:08:39 -0700
Local: Tues, Aug 30 2011 4:08 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 12:36 PM, Steve Wendt wrote:

> On 8/30/2011 10:11 AM, Jorge Villalobos wrote:

>> For those of you who don't know me, my name is Jorge and I'm the Add-ons
>> Developer Relations Lead. I'm the person you want to contact to discuss
>> any technical issues related to add-ons. I'm partly in charge of add-on
>> developer outreach, documentation, the review process for AMO, and
>> add-on compatibility.

> Does that include bugs in AMO?  ;-)
> https://bugzilla.mozilla.org/show_bug.cgi?id=610262

Bug #610262 was closed as a duplicate of bug #671085, another case of
closing an old bug in favor of a new one.  See
<https://bugzilla.mozilla.org/show_bug.cgi?id=671085>.

--

David E. Ross
<http://www.rossde.com/>

On occasion, I might filter and ignore all newsgroup messages
posted through GoogleGroups via Google's G2/1.0 user agent
because of spam from that source.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Legnitto  
View profile  
 More options Aug 30 2011, 4:10 pm
Newsgroups: mozilla.dev.planning
From: Christian Legnitto <clegni...@mozilla.com>
Date: Tue, 30 Aug 2011 13:10:53 -0700
Local: Tues, Aug 30 2011 4:10 pm
Subject: Re: Keeping add-ons compatible in the rapid release process

On Aug 30, 2011, at 1:03 PM, David E. Ross wrote:

This illustrates  the difference between "dev-doc-needed" and "addon-compat" I think. We need/should document it but it wouldn't affect the add-on from working on the new version.

Thanks,
Christian


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arivald  
View profile  
 More options Aug 31 2011, 4:40 am
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Arivald <arivald_@AT_interia_DOT_pl>
Date: Wed, 31 Aug 2011 10:40:24 +0200
Local: Wed, Aug 31 2011 4:40 am
Subject: Re: Keeping add-ons compatible in the rapid release process
W dniu 2011-08-30 22:03, David E. Ross pisze:

Also, new preference may be connected to feature which was mandatory in
older version, and now become optional. So addon developer should make
sure addon will not break when feature is disabled. Especially if it is
disabled by default.

--
Arivald


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Veditz  
View profile  
 More options Aug 31 2011, 4:55 pm
Newsgroups: mozilla.dev.planning
From: Daniel Veditz <dved...@mozilla.com>
Date: Wed, 31 Aug 2011 13:55:04 -0700
Local: Wed, Aug 31 2011 4:55 pm
Subject: Re: Keeping add-ons compatible in the rapid release process
On 8/30/11 1:08 PM, David E. Ross wrote:

> Bug #610262 was closed as a duplicate of bug #671085, another case of
> closing an old bug in favor of a new one.  See
> <https://bugzilla.mozilla.org/show_bug.cgi?id=671085>.

Your point? It happens, deal with it. The same firehose effect that
causes dupes in the first place means bugs get missed or ignored.
When later re-found and filed as a dupe (dupes happen) by someone
with the ability to fix it or who manages to flag the right person
on IRC progress happens. Sad that the dupe was missed earlier, but
at this point is it really reasonable to copy the work in the newer
bug back to the nearly empty older bug simply to avoid "duping forward"?

A campaign to stomp out duping forward will be as successful as the
campaign to eliminate split infinitives. Nice windmill you've got
there, Quixote.

-Dan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Process for finding changes relevant to add-ons for compatibility testing (was Re: Keeping add-ons compatible in the rapid release process)" by Mark Banner
Mark Banner  
View profile  
 More options Jan 27 2012, 6:00 am
Newsgroups: mozilla.dev.planning, mozilla.dev.platform
From: Mark Banner <mban...@mozilla.com>
Date: Fri, 27 Jan 2012 11:00:20 +0000
Local: Fri, Jan 27 2012 6:00 am
Subject: Process for finding changes relevant to add-ons for compatibility testing (was Re: Keeping add-ons compatible in the rapid release process)
On 30/08/2011 19:08, Jorge Villalobos wrote:

I've now documented the process that Thunderbird has been using for the
last few releases. Although none of it is scripted yet, I believe it
will cover most cases and is reasonably simple to run.

This takes just a couple of hours work (depending on the amount of
changes), and reduces the possible issues with missing bugs in the list.

The process is here:

https://wiki.mozilla.org/Thunderbird/Release_Driving/Rapid_Release_Ac...

Comments and suggestions welcome.

Mark.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »