active questions tagged release-management - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:58:47Zhttp://stackoverflow.com/feeds/tag/release-managementhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1580192/release-change-management-best-aproach1Release/Change management - best aproachBob Rivers2009-10-16T20:21:07Z2009-11-26T05:00:02Z
<p>What is the better way to work with release management? More specifically what would be the best way to release packages?</p>
<p>For example, assuming that you have a relatively stable system, a good quality assurance process (QA), etc. How do you prefer to release new versions?</p>
<p>I have a tendency to prefer to do this by releasing packets at regular intervals, not greater than 1 month. During this period, I will include into the package,fixes and improvements and make the implementation in production environment only once.</p>
<p>But I've seen some people who prefer to place small changes in production, but with a greater frequency.</p>
<p>The claim of these people is that by doing so, it is easier to identify bugs that have gone through the process of QA: in a package with 10 changes and another with only 1, it is much easier to know what caused the problem in the package with just one change... </p>
<p>What is the opinion came from you?</p>
<p><strong>Update 1</strong> (trying to define boundaries): I was thinking about an in-house, mid to large system, without clients (web based), that can be considered vital to the corporate operations.</p>
http://stackoverflow.com/questions/1245312/how-to-release-often-with-lean-kanban3How to release often with Lean/Kanban?Halvard2009-08-07T15:09:36Z2009-11-25T10:59:20Z
<p>I am quite new to Lean/Kanban, but have poured over online resources over the last few weeks and have come up with a question that I haven't found a good answer for. Lean/Kanban seems otherwise such a good fit for our company, who is already using Scrum, but have reached some limitations inside that methodology. I hope someone here can give me a good idea. </p>
<p>As I see it, one of the biggest advantages of Scrum over Waterfall is the use of sprints. By having everything ready every 14 days you get short feedback cycles and can release often. However, as I have understood from reading about Lean, there are some costs associated with this (for example, time spent in sprint planning meetings, team commitment meetings & some problems with finding something useful for everyone at the end of the sprints).</p>
<p>Lean/Kanban will remove these wastes, but only at the cost of not being able to release every 14 days. Or have I missed an important point? For, in Kanban, how can you work on new development tasks and release at the same time? How do you make sure you don't ship something that is only halfway done? And how can you test it properly? </p>
<p>My best "solutions/ideas" so far are:</p>
<ul>
<li>Don't release often and allow the waste associated with running out of new development tasks. Not really a solution to the question asked though.</li>
<li>Develop in branches and then merge into the main trunk. Makes you have to support at least two branches continuously internally.</li>
<li>Use some smart automatic labelling system to automatically build only certain finished tasks and not others.</li>
</ul>
<p>As a summary, <b>my question is</b>: When you use Lean/Kanban, can you release often without introducing waste? Or is <i>release often</i> not part of Lean/Kanban?</p>
<p><b>Additional info specific to my company</b>:
We use Team Foundation System & Source Control and have previously had some bad experiences in regards to branching and merging. Could this be solved simply by bringing in some expertise in this area?</p>
http://stackoverflow.com/questions/1789025/archivable-replicable-releases-when-building-with-maven-is-there-a-right-way0Archivable, replicable releases when building with Maven: is there a right way?David Moles2009-11-24T09:48:43Z2009-11-24T13:16:11Z
<p>We have a largish standalone (i.e. not Java EE) commercial Java project (10,000+ classes, four or five SVN repositories, ten or twenty third-party libraries) that's in the process of switching over to Maven. Unfortunately only one engineer (in a team of a dozen or so distributed across three countries) has any prior Maven experience, so we're kind of figuring it out as we go.</p>
<p>In the old Ant way of doing things, we'd:</p>
<ol>
<li>check out source code from three or four repositories</li>
<li>compile it all into a single monolithic JAR</li>
<li>release that (as part of a ZIP file with library JARs, an installer, various config files, etc.)</li>
<li>check the JAR into SVN so we had a record of what the customers had actually got.</li>
</ol>
<p>Now, we've got a Maven repository full of artifacts, and a build process that depends on Maven having access to that repository. So if we need to replicate what we actually shipped to a customer, we need to do a build against a Maven repository that has all the proper versions of everything. This is doable, I guess, if in (some version of) the (SVN-controlled) POM files we set all the dependencies to released versions?</p>
<p>But it gives our release engineer the creepy-crawlies, because there doesn't seem to be any way:</p>
<ol>
<li>to make sure that somebody doesn't clobber the copy of foo-api-1.2.3.jar on the WebDAV server by mistake (the WebDAV server has access control, but that wouldn't stop a buggy build script)</li>
<li>to detect it if they did</li>
<li>to recover afterwards</li>
</ol>
<p>His idea is, for release builds, to use a local file system as the repository rather than the WebDAV server, and put that local repository under SVN control.</p>
<p>Our one Maven-experienced engineer doesn't like that -- I guess because he doesn't like putting binaries under version control? -- and suggests that maybe the professional version of the Nexus server can solve the clobbering or clobber-tracking/recovery problem. </p>
<p>Personally, I'm not happy (sorry, Sonatype readers) with shelling out money for a non-free build system when we haven't even seen any benefit from the free version yet, and there's no guarantee it will actually solve the problem.</p>
<p>So our choices seem to be:</p>
<ol>
<li>WebDAV server
<ul><li>Pros: only one server, also accessible by devs, ...?</li>
<li>Cons: easy clobbering, no clobber-tracking/recovery</li></ul>
</li>
<li>Local file system
<ul><li> Pros: can be placed under revision control</li>
<li>Cons: only works with the distribution script</li></ul>
</li>
</ol>
<p>Frankly, both of these seem like hacks to me, and I have to wonder if there isn't a better way to do this. </p>
<p>So: Is there a right thing to do here?</p>
http://stackoverflow.com/questions/1743683/distinguishing-development-mode-and-release-mode-environment-settings-on-android0Distinguishing development mode and release mode environment settings on AndroidJoe Holloway2009-11-16T17:36:39Z2009-11-16T17:50:17Z
<p>I'm building an Android application and would like to maintain a few environment variables that I can tweak depending on whether I'm in development mode or release mode. For example, I need to invoke a web service and the URL will be slightly different in either mode. I'd like to externalize this and other settings so I can change them easily based on my target deployment.</p>
<p>Are there any best practices or anything in the SDK to assist with this need?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/916556/when-building-a-hosted-sas-application-how-do-you-manage-multiple-versions-when1When building a hosted/SAS application, how do you manage multiple versions when customizations by the customer are allowed?rrc7cz2009-05-27T15:56:14Z2009-11-06T06:56:03Z
<p>Let's imagine you are building a Calculator application. You will allow customers to customize this Calculator with their own logos and CSS stylesheets. Customers will point their domains to your hosted Calculator and the application will serve up the correct theme for each customer. For example:</p>
<ul>
<li><em>www.AcmeCalculator.com</em> will serve up the Calculator with the Acme logo, and a bland corporate style they created.</li>
<li><em>www.HellzCalc.com</em> will server up the Calculator with some Hell's Angels biker signs and a black, blood red theme they created.</li>
</ul>
<p>You've pushed out Calculator 1.0 and everyone has written their styles to work on this version.</p>
<p>Next month you are ready to release Calculator 1.1 which added a new feature, let's say "Scientific Mode" which required you to add some new UI - HTML in this example - components. This means if you push out 1.1, you will break some of your customer's styles. </p>
<p>The best solution I've come up with is that you keep multiple versions of your application running. For example:</p>
<ul>
<li><em>www.AcmeCalculator.com</em> resolves to your app server, which checks the version Acme is currently on, and forwards to <em>www.AcmeCalculator.com/1.0</em></li>
<li><em>www.HellzCalc.com</em> resolves to your app server, which notices that they are running on the new 1.1 version since they went in an updated their CSS to work on the new version and clicked the "Finish Upgrade" button or whatever, so they get redirected to "<em>www.HellzCalc.com/1.1</em></li>
</ul>
<p>One problem with this system is that you'll inevitably have lazy customers who never invest in upgrading. You'd be running 200 versions concurently, trying to fix bugs in each of them, basically going insane.</p>
<p>One solution would be to use part of your monthly hosting fee to employ a "UI Migration Team" which would be a group of designers whose only jobs is to constantly take clients in the queue running the oldest versions and tweak their CSS and validate them to run on the newest version. This would allow you to support only X versions concurrently, where X is a function of how much money you invest in the UI Migration Team, adding resources to speed them up or slow them down.</p>
<p>The same idea would work with database changes: Calculator 1.0 and 1.1 runs on database 1.0, but Calculator 1.2 runs on database 1.1, etc. You could just add schemas with version names, and employ a similar "Data Migration Team" to move data from schema 1.0 to schema 1.1, finally deleting schema 1.0 when no (app) clients are left.</p>
<p>I'm sure this type of problem has come up before, and I'd like to see how other have solved it. Perhaps there is even a "best practices" for this.</p>
http://stackoverflow.com/questions/134778/release-management-best-practice9Release management - best practicejoe2008-09-25T17:41:43Z2009-11-03T21:44:30Z
<p>I work for a product development company.We first do internal releases,and then public release.I was wondering, how other product developing companies manage their release? How do you give release number? Tag the source control?</p>
http://stackoverflow.com/questions/1111119/how-do-you-ensure-the-same-bug-does-not-creep-into-the-product-the-second-time4How do you ensure the same bug does not creep into the product the second time?msvcyc2009-07-10T18:10:44Z2009-11-03T21:05:42Z
<p>I understand the short answer to it is by doing testing but still how do you do this testing? Do you modify your test cases to include the bugs as additional test cases to run or do you just verify all the bugs in your bug tracking system starting from the oldest to the newest releases.</p>
<p>Thanks for the answers. Looks like my question was not clear.
I understand we need to write bug report, fix the bug & do the testing for fix verification. However, under which test phase should this test go so that during the next version release, we are sure to re-run the test again to make sure none of the new changes have re-introduced the bug. Should it go under regression testing or should it go under integration testing for that specific project or should we just test all the bugs in the bug tracking system since version 1.0?</p>
http://stackoverflow.com/questions/1669772/whats-the-right-way-to-manage-a-release-with-svn0What's the right way to manage a release with SVN?Shane2009-11-03T19:55:59Z2009-11-03T20:20:55Z
<p>My last employer had developed an elaborate system which sat on top of SVN to deal with ongoing development: (<b>change management</b>) look at bugs/issues and associate them with commits when making the commit by tagging the bug id number and (<b>release management</b>) tag items in SVN as part of a specific release based on the bug/issue tracking system. This second part had a workflow associated with it to get sign-off from users/management. Then, when it came time to do the release (usually every Thursday evening), they could run a command to checkout all the tagged code and deploy it. </p>
<p>My new firm is much smaller and I'm interested in finding a low-cost/low-maintenance equivalent, even if it just means dealing directly with SVN. In particular, I regularly find commits late-in-the-game breaking our build, and it becomes very difficult to untangle what we can include. (So far as managing SVN is concerned, I tend to prefer the idea of tags over branches because it require less forethought, but I'm happy to be convinced otherwise.)</p>
<p>What do people use to tag commits for a release and to do a subsequent deployment? Are there any good open-source solutions to manage a release cycle that allows you to browse SVN from a web browser and tag issues/commits for a release? The best thing that I have seen so far is <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a>, but that looks like a very big tool (is it difficult to configure/maintain?). The Apache Foundation makes good use of Jira for this purpose (see, for instance, <a href="https://issues.apache.org/jira/browse/MAHOUT?report=com.atlassian.jira.plugin.system.project:roadmap-panel" rel="nofollow">the Mahout roadmap</a>). </p>
<p>Going even a step beyond this would be to have this same system also include continuous integration so that our unit tests could be run with each commit and each bug/issue would then also have this information associated.</p>
<p>Note: There are some slightly related questions on stackoverflow, but I don't see anything covering this aspect of the deployment cycle and release management (see <a href="http://stackoverflow.com/questions/569353/release-management-in-svn">release-management-in-svn</a>, <a href="http://stackoverflow.com/questions/493403/how-do-you-manage-your-project-life-cycle">manage-your-project-life-cycle</a>, and <a href="http://stackoverflow.com/questions/184652/what-is-the-best-way-to-handle-change-management">best-way-to-handle-change-management</a>).</p>
http://stackoverflow.com/questions/1358022/ideal-release-methodology-tools-structure9Ideal Release Methodology, Tools, StructureHounshell2009-08-31T15:30:39Z2009-10-28T23:23:34Z
<p>I'm at a firm that currently does releases in a very slow, manual way: Each deployable project has an installer. Once the release is ready, somebody remotes into the server and runs each installer. I know there are better ways, and I've built better ways, but I want to present a way that is so stellar, so clear, and so easy that nobody could possibly find fault with it.</p>
<p>A few background notes: We're a C# shop, all code is deployed internally to servers, we've got several services, a couple web sites, an ISAPI service (the only C++ component), dozens of reference assemblies, a couple third party DLLs (no licensing files), we rarely create new services, usually update existing ones, releases are currently handled by dev staff (we're looking for a release engineer, but haven't been too lucky).</p>
<p>So...</p>
<ul>
<li>What tools do you people use to release with? </li>
<li>What's the ideal folder structure for compiled output? </li>
<li>Is compiled output kept in some shared location? in source control?</li>
<li>How do configuration files fit into that structure? </li>
<li>How do you handle new vs. update releases?</li>
<li>What's the easiest way to effect these changes?</li>
</ul>
http://stackoverflow.com/questions/1626988/website-deployment-skills0WebSite Deployment SkillsAlex2009-10-26T19:57:02Z2009-10-27T11:29:24Z
<p>We need to increase our knowledge on deployment of ASP.NET Web sites/Web App. We are getting increasingly bigger and more traffic and need a more professional approach. Not too mention, we are also moving up to multiple database/multiple back end/ multiple front end server deployments and we just don't want to screw it up.</p>
<p>What type of skills should we be looking for and is there a typical title people with these skills use? </p>
<p>Thanks,</p>
<p>Actually, We have most of the talents the two answers mention, what we are looking for is I guess what Dave calls the web server guru. I simply want someone to handle the deployment aspect. The developers we have need to be working on their end of it not trying to figure out dpeloyment best practices. Also, we may end up with multiple projects and teams and I don't think each team having a seperate person rolling their own solutions would be as good as 1 dedicated resource for all the teams. </p>
http://stackoverflow.com/questions/1581877/migrating-to-maven-from-an-unusual-svn-directory-structure1Migrating to maven from an unusual svn directory structure? tangens2009-10-17T10:09:23Z2009-10-18T14:02:51Z
<p>Contrary to a 'normal' svn directory structure I'm using the following structure:</p>
<pre>
trunk/
project1/
project2/
project3/
...
branches/
project1-branch/
project1/
project2/
...
project2-branch/
project1/
project2/
...
tags/
project1/
V1
V2
...
</pre>
<p>As you see I don't have separate triples (trunk/branches/tags) for each project. </p>
<p>For development I do a checkout of trunk (sometimes a sparse checkout) containing all the projects I need (there are dependencies between the projects and some projects are simply libraries). </p>
<p>The benefits that I see in this are:</p>
<ul>
<li><p>Update and checkin is easy, because I have a common root directory (trunk) of all projects. One simple <code>svn update</code> or <code>svn commit</code> does it all.</p></li>
<li><p>Creation of a tag or branch is simple, because it's only the trunk that I have to <code>svn copy</code> for this.
(Branches and tags actually contain more projects than needed, but a <code>svn copy</code> is cheap and I still can do sparse checkouts on a branch or tag if needed.)</p></li>
<li><p>Moving of resources from one project to another is easy, because they all live in the same repository.</p></li>
<li><p>Global refactoring (for example changing the package of a commonly used class) is easy when I'm working on a full checkout of trunk, because I can be sure I don't miss a project.</p></li>
<li><p>Merging is easy, because I can always merge the whole branch at once even if there was a refactoring move from one project to another.</p></li>
</ul>
<p><hr /></p>
<p>I intend to migrate to maven and split all the projects from trunk to maven projects. I'd like to benefit from the maven dependency management and from the available plugins (right now I'm using huge custom ant files).</p>
<p><strong>Now my questions are:</strong> </p>
<ul>
<li><p>Do I have to change the svn directory structure to give every project its own triple (trunk/branches/tags)? I guess the answer is 'yes'.</p></li>
<li><p>If I change the structure, which of the benefits mentioned above do I loose (I mean what will be more complicated doing it with maven)?</p></li>
<li><p>What are the equivalent ways to do it with maven?</p></li>
</ul>
http://stackoverflow.com/questions/1567280/how-to-track-version-changes-to-dependent-components-libraries1How to track version changes to dependent components/libraries?Better Not Known2009-10-14T15:58:13Z2009-10-14T15:58:13Z
<p>We have a project that has several components developed independently. Yet we have many releases all named as different products with different schedules. We want to get immediate feedback when a component has a new version (probably related with a bug-fix), thus all products depending on that version to be updated as well.</p>
<pre><code>A -> v1.0 (released 10.10.2009)
B -> v1.0 (depending on A, released on 11.10.2009)
A -> v1.1 (released 12.10.2009) ---> B must be updated
</code></pre>
<p>Of course this is just a simple example. There should be projects dedicated to this scenario, but I couldn't find. What do you do to handle such situations? What is the preferred (easy, yet powerful) way?</p>
http://stackoverflow.com/questions/1524283/versioning-for-a-maven-project-with-small-very-frequent-releases2Versioning for a maven project with small, very frequent releasesRobert Munteanu2009-10-06T08:27:47Z2009-10-06T18:20:25Z
<p>I'm converting an ant project to a maven one. This project differs from the ones I've usually converted since it has very frequent releases, typically 8-10 times per day.</p>
<p>By release I mean that the resulting jar is packaged and included in the production enviroment. This project is a <em>leaf</em> one, so it publishes no API, it only consumes it. It is also at most a <em>runtime</em> dependency for two other projects.</p>
<p>I'd like to have a versioning scheme where:</p>
<ul>
<li>it's easy to deploy without forcing the developers to think about what version number to assign to the project, since the number is meaningless;</li>
<li>It's easy to include the latest version of this project as a dependency without constantly bumping up dependency versions;</li>
</ul>
<p>Most likely the dependency version would not be a <code>-SNAPSHOT</code>, since that would conflict with the <code>maven-release-plugin</code> we're using for other projects, but I'm open to suggestions.</p>
http://stackoverflow.com/questions/1485160/what-are-common-practices-for-deployment-of-large-scale-systems3What are common practices for deployment of large scale systems?parkr2009-09-28T02:38:54Z2009-10-05T10:01:43Z
<p>Given a large scale software project with several components written in different languages, configuration files, configuration scripts, environment settings and database migration scripts - what are the common practices for deployment to production?</p>
<p>What are the difficulties to consider? Can the process be simplified with tools like Ant or Maven? How can rollback and database management be handled? Is it advisable to use version control for the production environment?</p>
http://stackoverflow.com/questions/1512644/python-pypi-what-is-your-process-for-releasing-packages-for-different-python-ver3Python Pypi: what is your process for releasing packages for different Python versions? (Linux)jldupont2009-10-03T02:45:36Z2009-10-03T15:22:02Z
<p>I've got several eggs I maintain on Pypi but up until now I've always focused on Python 2.5x.
I'd like to release my eggs under both Python 2.5 & Python 2.6 in an automated fashion i.e.</p>
<ol>
<li>running tests </li>
<li>generating doc</li>
<li>preparing eggs</li>
<li>uploading to Pypi</li>
</ol>
<p>How do you guys achieve this?</p>
<p>A related question: how do I tag an egg to be "version independent" ? works under all version of Python?</p>
http://stackoverflow.com/questions/1482085/tracking-db-changes-with-zend-framework1Tracking DB changes with Zend Framework?Chad Johnson2009-09-26T20:17:06Z2009-09-30T02:26:10Z
<p>I am trying to decide between the Zend Framework and Ruby On Rails for my web application.</p>
<p>If I go with ZF, I need the following:</p>
<ul>
<li>A way to incrementally track changes to my database, as with RoR's migration feature (001_something.sql, 002_something_else.sql).</li>
<li>A place to put SQL for the next release of my software. At work in our custom PHP solution, we just have release.sql, which gets run, archived, and blanked out upon release.</li>
</ul>
<p>ZF has Zend_Db_Schema_Manager, which does the same thing, but I'm not interested as its not official, complete, or maintained.</p>
<p>Is there an official mechanism that ZF provides for doing something similar to what I described?</p>
http://stackoverflow.com/questions/1458178/iphone-dealloc-release-vs-nil0iPhone - dealloc - Release vs. nilbbullis212009-09-22T05:02:38Z2009-09-24T06:17:38Z
<p>Wondering if someone with experience could possibly explain this a bit more. I have seen examples of...</p>
<p>[view release];</p>
<p>view = nil; </p>
<p>....inside the (void) dealloc.</p>
<p>What is the difference and is one better then the other?
What is the best way?</p>
<p>When doing retainCount testing I have personally seen nil drop a count from 3 to 0 for me, but release only drops it from 3 to 2.</p>
http://stackoverflow.com/questions/700833/what-standards-does-your-team-enforce-for-a-major-version-code-deployment12What standards does your team enforce for a major-version code deployment?Chris2009-03-31T13:03:01Z2009-09-21T06:25:19Z
<p>I'm curious as to what sort of standards other teams make sure is in place before code ships (or deploys) out the door in major releases.</p>
<p>I'm not looking for specific answers to each, but here's an idea of what I'm trying to get an idea of.</p>
<ul>
<li>For server-based apps, do you ensure monitoring is in place? To what degree...just that it responds to ping, that it can hit all of its dependencies at any given moment, that the logic that the app actually services is sound (e.g., a service that calculates 2+2 actually returns "4")</li>
<li>Do you require automated build scripts before code is released? Meaning, any dev can walk onto a new box, yank something from source control, and start developing? Given things like an OS and IDE, of course.</li>
<li>How about automated deployment scripts, for server-based apps?</li>
<li>What level of documentation do you require for a project to be "done?"</li>
<li>Do you make dang sure you have a full-fledged backup plan for all of the major components of the system, if it's server-based?</li>
<li>Do you enforce code quality standards? Think StyleCop for .NET or cyclomatic complexity evaluations.</li>
<li>Unit testing? Integration tests? Performance load testing?</li>
<li>Do you have standards for how your application's error logging is handled? How about error notification?</li>
</ul>
<p>Again, not looking for a line-by-line punchlist of answers to anything above, necessarily. In short, <strong>what non-coding items must a code release have completed before it's officially considered "done" for your team?</strong></p>
http://stackoverflow.com/questions/1444785/what-sort-of-info-would-go-into-good-deployment-documentation1What sort of info would go into good deployment documentation?Zahir2009-09-18T14:10:01Z2009-09-18T14:57:56Z
<p>I have these constant battles with my colleagues regarding composition of deployment documentation. </p>
<p>Everyone agrees that the documentation is necessary. Not everyone can find common ground on what level of detail should go into this especially differentiating between large releases, bug-fixes and enhancements. </p>
<p>What have you found works best for you?</p>
http://stackoverflow.com/questions/1377384/policy-on-maintenance-releases-vs-normal-releases3Policy on maintenance releases vs normal releases?Andrew Swan2009-09-04T05:33:25Z2009-09-13T21:22:10Z
<p>My company is struggling with the question of maintenance releases versus "normal" releases, in the context of an application installed on-site at large organisations who pay for support. First let me define my terms:</p>
<ul>
<li>Imagine we've released versions 1.0, 1.1, and 1.2 of the product. These are what I call "<strong>normal</strong>" releases, i.e. they are the next release from the main branch of development, incorporating all the latest and greatest bug fixes and enhancements (possibly tens of each per release).</li>
<li>Now imagine some bigshot customer on 1.0 reports a show-stopping issue that nobody's encountered before. The problem still exists in 1.2, and unfortunately 1.3 isn't due out for several weeks or months. So we branch our code at 1.0 to create a 1.0.1 "<strong>maintenance</strong>" release, containing just the one change that fixes the issue.</li>
</ul>
<p>This approach makes the customer happy because we fix their issue within a day or so, instead of making them wait weeks until the next normal release. Also, because the maintenance release only contains one small change, they don't need to go through an extensive UAT process, whereas if they upgrade to the next normal release, which could be several versions on, they would be receiving maybe 30 or 40 product changes that (in their risk-averse opinion) require extensive UAT.</p>
<p>The problem is that:</p>
<ul>
<li>It's costly for us to create and support multiple versions of our software</li>
<li>It allows stick-in-the-mud customers to fall too far behind the latest version</li>
<li>It complicates the process of eventually upgrading those customers in the future, as their installation is subtly different from every other 1.0 customer (upgrading their database is particularly complicated if the maintenance release changed it somehow)</li>
</ul>
<p>So I was wondering what is everyone else's stance on this issue? How do you keep the customer happy without making a rod for your own back through a proliferation of maintenance releases? For example, do you allow some categories of fix to be done as a maintenance release, but insist that other types are done in the next normal release?</p>
<p><em>Clarification: writing bug-free software isn't a total solution, because an "issue" in the above context could be an unforeseeable change to the behaviour of an external system upon which our product depends.</em></p>
http://stackoverflow.com/questions/1188076/best-set-of-names-for-iterations2Best set of names for iterations ?Perica Zivkovic2009-07-27T13:08:35Z2009-09-10T10:57:43Z
<p>Hi there,</p>
<p>I was curious what do you use as iteration names and how much iterations do you have? What is the best set of names for iterations which will also be simple enough to explain to the customer.</p>
<p>EDIT: lets say that my iterations are 5 weeks long each.</p>
<p>cheers</p>
<p>Perica</p>
http://stackoverflow.com/questions/789996/release-engineering-what-books5Release engineering: what books?Gian Paolo Ghilardi2009-04-26T00:23:51Z2009-09-03T21:10:53Z
<p>A part of my daily job can be described as release-engineering stuff and I'd like to keep on improving my knowledge+skill even on that specific field.</p>
<ul>
<li>Are there other books besides the 3 ones listed on Wikipedia ("<a href="http://en.wikipedia.org/wiki/Release%5Fengineering" rel="nofollow">releng</a>" entry -> "further reading") </li>
<li>What are your favourite ones on this topic?</li>
</ul>
<p>Please, no generic/all-inclusive/2k-pages-long software engineering books: if possible, I prefer books focused on release-engineering, especially on the "build and release cycle".</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/315628/release-notes-what-for8Release notes, what for?Ville M2008-11-24T21:51:50Z2009-09-02T22:30:48Z
<p>What are release notes for and who reads them? Should/could they be automated by just spitting out bugfixes for the current release, or do they warrant careful human editing?
So, anybody with a link to best practices(reasoning behind) in regards to software release notes?</p>
http://stackoverflow.com/questions/638423/how-should-release-notes-be-written5How should release notes be written?DeFiNite2009-03-12T12:35:06Z2009-09-02T22:26:09Z
<p>Is there any sort of guidelines or best practices on how release notes should be written? I guess I am trying to find the proper balance between making the point without being too specific. Also, do developer usually provide a much more release notes for QA team compare to the one submitted for public view?</p>
http://stackoverflow.com/questions/1322505/how-to-release-a-subset-of-deliverables1How to release a subset of deliverables?Lee Englestone2009-08-24T13:42:27Z2009-08-24T17:18:50Z
<p>Hi,</p>
<p>Further to my question at <a href="http://stackoverflow.com/questions/1318818/accidentally-released-code-to-live-how-to-prevent-happening-again">accidentally-released-code-to-live-how-to-prevent-happening-again</a>. After client UAT we often have the client saying they are happy for a subset of features to be released while others they want in a future release instead.</p>
<p>My question is "How do you release 2/3 (two out of 3) of your features".
I'd be interested in how the big players such as Microsoft handle situations like..
"Right we're only going to release 45/50 of the initially proposed features/fixes in the next version of Word, package it and ship it out".</p>
<p>Assuming those 5 features not being released in the next release <strong>have</strong> been started.. how can you ignore them in the release build & deployment?</p>
<p>How do you release 2/3 of your developed features?</p>
<p>How to release a subset of deliverables?</p>
<p>-- Lee</p>
http://stackoverflow.com/questions/558048/how-do-you-celebrate-a-major-release1How do you celebrate a major releaserwarren2009-02-17T18:09:50Z2009-08-24T15:21:28Z
<p>I've heard of companies issuing 'gold disks' to developers, ie the shipped dvd sprayed gold and mounted in a frame with a metal plaque underneath. I think Microsoft used to give everyone who worked on the project a copy of the box which was finally shipped (so the more boxes on the book case the longer someone had worked there). Problem is if you don't ship anything, ie you just deploy to a webserver somewhere, how do you celebrate and give people that feeling of finishing the job.</p>
<p>We generally head to the pub for lunch and then go out after work to the same. How does anyone else celebrate? have you had any particularly excellent/noteworthy celebrations?</p>
http://stackoverflow.com/questions/1318818/accidentally-released-code-to-live-how-to-prevent-happening-again5Accidentally released code to live. How to prevent happening again?Lee Englestone2009-08-23T15:33:36Z2009-08-23T17:36:49Z
<p>We had an incident recently where some code got released to live that was not scheduled to be released.</p>
<p>It had obviously been checked into the trunk. Which is fine i guess as you want to <strong>'check in early, check in often'</strong>. </p>
<p>However in this instance it was not supposed to be released in the next release.</p>
<p>What kind of checks / strategy / process can be put in place to avoid code being released to live prematurely.</p>
<p>It seems to me even with Continuous Integration and Unit Tests this is a human procedure issue?</p>
<p>-- Lee</p>
http://stackoverflow.com/questions/586202/best-practices-for-copying-files-with-maven3Best practices for copying files with Mavenredder2009-02-25T14:38:00Z2009-08-13T10:53:25Z
<p>I have config files and various documents that I want to copy from the dev environment to the server directory in Maven2. Strangely, Maven does not seem strong at this task. </p>
<p>Options: </p>
<ol>
<li><p>Simple use a <em>copy</em> task in Maven</p>
<p><em><copy file="src/main/resources/config.properties" tofile="${project.server.config}/config.properties"/></em></p></li>
<li><p>Use the Ant plugin to execute <em>copy</em> from Ant.</p></li>
<li><p>Construct an artifact of type <em>zip</em>, alongside the "main" artifact of the POM which is usually of type <em>jar</em>, then <em>unpack</em> that artifact from the repository into the target directory.</p></li>
<li><p><em>maven-resources</em> plugin.</p></li>
<li><p>Maven Assembly plugin -- but this seems to require a lot of manual definitions, when I want to do things simply and "conventionally."</p></li>
<li><p><a href="http://maven-plugins.sourceforge.net/cgi-bin/wiki?PluginTutorial" rel="nofollow">This</a> even shows how to build a plugin to do copying!</p></li>
</ol>
<p>All these seem needlessly ad hoc: Maven is supposed to excel at doing these standard tasks without fuss and bother. </p>
<p>Any advice?</p>
http://stackoverflow.com/questions/1266411/which-open-source-projects-use-odd-unstable-even-stable-style-of-versioning0Which open-source projects use odd-unstable/even-stable style of versioningIonut G. Stan2009-08-12T14:11:00Z2009-08-12T14:30:28Z
<p>One of my colleagues told me today that some projects use a weird, IMHO, way of versioning their releases. If the release is unstable, the minor version is an odd number, eg. 1.3, 1.5. On the other hand, stable releases have an even minor version number, eg. 1.2, 1.4.</p>
<p>At first I couldn't believe my ears, it seemed unreal. Then <a href="http://en.wikipedia.org/wiki/Software%5Fversioning#Odd-numbered%5Fversions%5Ffor%5Fdevelopment%5Freleases" rel="nofollow">Wikipedia</a> enlightened me that it is a practice coming from the Linux kernel community, although it seems(?) to have been dropped recently.</p>
<p>A few hours later, I'm reading <a href="http://whytheluckystiff.net/ruby/pickaxe/html/preface.html" rel="nofollow">Programming Ruby's preface</a>, and what do I see? Ruby uses the same convention for version numbers.</p>
<p>What's your experience with this? What (open-source) projects/products you know of that use this versioning schema? Is there an easy way to figure it out quickly if they observe this convention? Is it that popular? I've begun software development a little more than 3 years ago and haven't heard about this practice before.</p>
<p>Thanks for your responses.</p>
http://stackoverflow.com/questions/489565/does-anybody-create-installers-to-deploy-internal-asp-net-web-applications4Does anybody create installers to deploy internal asp.net web applications?John MacIntyre2009-01-28T21:54:10Z2009-08-06T12:54:00Z
<p>I've always deployed my web applications via FTP (sometimes even xcopy), and then manually run database scripts myself. </p>
<p>I started deploying this way in the 90's, but lately, I've seen a few web apps with installers. I'm starting to question, if I'm locked into an out dated process. I'm a consultant, my apps are usually internal, so I don't worry about distributing and having others installing them.</p>
<p>But I'm curious; does anybody create installers to deploy internal asp.net web applications?</p>
<p>If so, why? (Voluntarily, mandated, or part of an automation process)</p>
<p>And have you had any problems doing it this way?</p>