Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "DTP Plug-in Versioning Policy"

Line 1: Line 1:
 
{{Back To|name=DTP Main Page|href=Data Tools Platform Project}}
 
{{Back To|name=DTP Main Page|href=Data Tools Platform Project}}
 
==Status==
 
==Status==
[3/6/08]: Update the qualifier tag format following decision in [https://bugs.eclipse.org/bugs/show_bug.cgi?id=221541 BZ221541].
+
[3/6/08]: Updated the qualifier tag format following decision in [https://bugs.eclipse.org/bugs/show_bug.cgi?id=221541 BZ221541].
  
 
[3/4/08]: Updated for the new qualifier tag format in the PDE build.
 
[3/4/08]: Updated for the new qualifier tag format in the PDE build.
Line 26: Line 26:
 
* If a field is reset to 0, then it may be incremented again during a release cycle.
 
* If a field is reset to 0, then it may be incremented again during a release cycle.
 
==Qualifier Field Format==
 
==Qualifier Field Format==
The qualifier field must be "vYearMonthDateIteration." Further the value '''must''' reflect the date in Shanghai. Since DTP now uses a PDE based system with map files, only source code specified in the map files (by tag) will be used for DTP builds. Thus, when you wish to update a plug-in for the build:
+
The qualifier field must be "vYearMonthDayHourMinute" (that is: "vYYYYMMDDHHMM"). Further the value '''must''' reflect the date in Shanghai. Since DTP now uses a PDE based system with map files, only source code specified in the map files (by tag) will be used for DTP builds. Thus, when you wish to update a plug-in for the build:
  
 
*Commit any changes for the plug-in as usual to CVS HEAD
 
*Commit any changes for the plug-in as usual to CVS HEAD
 
*Create a Qualifier field date stamp
 
*Create a Qualifier field date stamp
**Determine the current date in Shanghai. You can use [http://www.worldtimeserver.com/current_time_in_CN.aspx this site] to do so.
+
**Determine the current date and time in Shanghai. You can use [http://www.worldtimeserver.com/current_time_in_CN.aspx this site] to do so.
**Use a "v" followed by the four digit year, two digit month, and two digit date
+
**Use a "v" followed by the four digit year, two digit month, two digit date, two digit hour, and two digit minute
**Add the iteration count at the end of the Qualifier field. For the first update to a plug-in on a given (Shanghai) calendar day, this value is 1. For each subsequent update to that same plug-in on the same (Shanghai) calendar day, increment the iteration count.
+
 
*Create a CVS tag on HEAD for the plug-in using the Qualifier value.
 
*Create a CVS tag on HEAD for the plug-in using the Qualifier value.
 
*Update the appropriate map file to use the new CVS tag for that plug-in.
 
*Update the appropriate map file to use the new CVS tag for that plug-in.
Line 39: Line 38:
 
'''Qualifier Examples:'''
 
'''Qualifier Examples:'''
  
Suppose the date is March 4, 2008 in Boston, MA (ET). First, I check the [http://www.worldtimeserver.com/current_time_in_CN.aspx time clock] to get the date for Shanghai, which happens to be March 5, 2008. So, the format of the Qualifier is:
+
Suppose it is 11:40am on March 6, 2008 in Boston, MA (ET). First, I check the [http://www.worldtimeserver.com/current_time_in_CN.aspx time clock] to get the date for Shanghai, which happens to be 12:40am on March 7, 2008. So, the format of the Qualifier is:
  
* v200803051
+
* v200803071240
  
 
Next, I take this value and create a tag in CVS HEAD for the updated plug-in. Finally, I check out and update the map file using the exact same Qualifier value for that plug-in.
 
Next, I take this value and create a tag in CVS HEAD for the updated plug-in. Finally, I check out and update the map file using the exact same Qualifier value for that plug-in.
 
Suppose I then realize that I forgot to commit one small change. So, I commit the additional change to CVS HEAD, [http://www.worldtimeserver.com/current_time_in_CN.aspx check the date in Shanghai] -- which turns out to be the same -- and create a new tag in CVS HEAD for the plug-in:
 
 
* v200803052
 
 
Notice in this case that the final number ("iteration") has been incremented. I then update the associated map file for this new value.
 
  
 
==Initial Version for New Plug-ins==
 
==Initial Version for New Plug-ins==

Revision as of 12:41, 6 March 2008

Back to DTP Main Page

Status

[3/6/08]: Updated the qualifier tag format following decision in BZ221541.

[3/4/08]: Updated for the new qualifier tag format in the PDE build.

[11/5/07]: This document has been reviewed and approved: it now represents DTP policy.

Introduction

This document specifies plug-in versioning rules for DTP. That is, a policy for changing plug-in version numbers based on the types of changes made to the plug-in is specified below. We follow generally accepted Eclipse rules in this area, for example the versioning policy for the Eclipse platform, and we deviate only slightly as described below in the "Qualifier Field Format" section. It is important that all DTP committers adhere to this policy so tools (such as Eclipse Update Manager) and DTP users can determine the types of changes present between two versions of a given plug-in.

Definitions

  • A DTP plug-in version number has four fields, separated by a ".": Major.Minor.Service.Qualifier
  • A major change indicates breakage in API or significant new/reorganization of functionality.
  • A minor change indicates changes visible to users or extenders of DTP.
  • A service change indicates bug fixes.
  • A qualifier change indicates the plug-in has changed.

As with any specification, there is room for interpretation, and each committer's best judgment is required. When in doubt, ask the DTP team/community by creating a bug or message to the DTP dev mailing list.

Fundamental Constraint

Whatever is done to plug-in version numbers following this policy, each update must result in a number that ismonotonically increasing. Otherwise, the Eclipse Update Manager will not detect the newer version of the plug-in, and users' DTP installations will be rendered inconsistent. If you believe that the policy expressed herein requires breaking this fundamental constraint, immediately notify the DTP PMC for direction.

Policy

  • The major, minor, and service fields respectively are to be incremented only once per DTP stream release cycle, depending on the type of change as described above. For example, "1.5.0" can go to "1.5.1" during a release cycle, but not "1.5.2" or higher.
  • The qualifier field is to be updated whenever anything delivered in DTP builds for the plug-in is changed.
  • The precedence of the fields is major > minor > service. When a higher precedence field is updated, fields of lower precedence should be reset to 0 ("zero"). Note:
    • The precedence rules mean that the major field can not be reset to 0.
    • The qualifier field is updated separately, and is not simply incremented nor reset to zero (see below).
  • If a field is reset to 0, then it may be incremented again during a release cycle.

Qualifier Field Format

The qualifier field must be "vYearMonthDayHourMinute" (that is: "vYYYYMMDDHHMM"). Further the value must reflect the date in Shanghai. Since DTP now uses a PDE based system with map files, only source code specified in the map files (by tag) will be used for DTP builds. Thus, when you wish to update a plug-in for the build:

  • Commit any changes for the plug-in as usual to CVS HEAD
  • Create a Qualifier field date stamp
    • Determine the current date and time in Shanghai. You can use this site to do so.
    • Use a "v" followed by the four digit year, two digit month, two digit date, two digit hour, and two digit minute
  • Create a CVS tag on HEAD for the plug-in using the Qualifier value.
  • Update the appropriate map file to use the new CVS tag for that plug-in.
  • Commit the changes to the map file.

Qualifier Examples:

Suppose it is 11:40am on March 6, 2008 in Boston, MA (ET). First, I check the time clock to get the date for Shanghai, which happens to be 12:40am on March 7, 2008. So, the format of the Qualifier is:

  • v200803071240

Next, I take this value and create a tag in CVS HEAD for the updated plug-in. Finally, I check out and update the map file using the exact same Qualifier value for that plug-in.

Initial Version for New Plug-ins

Plug-ins newly added to a DTP release cycle normally will start with a "1.0.0.Qualifier" version number, unless the plug-in is considered to be a "tech preview" version for that release. Committers adding new plug-ins to a DTP release should confirm the initial version with their project lead.

Back to the top