active questions tagged versioning - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:25:41Z http://stackoverflow.com/feeds/tag/versioning http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803363/blackberry-get-current-applications-applicationdescriptor-object 1 Blackberry - Get current application's ApplicationDescriptor object Fermin 2009-11-26T12:17:11Z 2009-11-26T16:48:52Z <p>Hi,</p> <p>I'd like to get access to my currently running applications applicationDescriptor object. I want this so that I can get the current version number and, on the initial screen have a title like "MyApp Version x.x.x" where I get x.x.x from the <code>ApplicationDescriptor.getVersion()</code></p> <p>One way that I've found is to use:</p> <pre><code>ApplicationManager manager = ApplicationManager.getApplicationManager(); ApplicationDescriptor[] descriptors = manager.getVisibleApplications(); //Loop round descriptors then use... ApplicationDescriptor myApp = manager.getProcessId(descriptors[x]); </code></pre> <p>Using the loop to check all applications seems a bit long winded to me, i'm hoping that there is an easier route. </p> <p>Thanks</p> http://stackoverflow.com/questions/1791390/web-app-keeping-trace-of-the-version-of-the-application-in-database 1 Web-App : Keeping trace of the version of the application in database ? Antoine Claval 2009-11-24T16:54:21Z 2009-11-26T13:49:30Z <p>Hi,</p> <p>We are building a webapp which is shipped to several client as a debian package. Each client runs his own server. But the update and support is done by us. We make regular releases of the product, with a clean version number. Most of the users get an automatic update (by Puppet), some others don't.</p> <p>We want to keep a trace of the version of the application (in order to allow the user to check the version in an "about" section, and for our support to help the user more accurately).</p> <p>We plan to store the version of the code and the version of the base in our database, and to keep the info up to date automatically.</p> <p>Is that a good idea ? </p> <p>The other alternative we see is a file.</p> http://stackoverflow.com/questions/1797057/ecm-document-control-management-versioning-and-cms 0 ECM - Document Control Management / Versioning and CMS Laykes 2009-11-25T13:55:14Z 2009-11-25T13:55:14Z <p>Hello All, I anticipate this is going to be a very broad question however I shall endevour to be as concise as possible without divulging too much project critical information. </p> <p>For quite some time I have been working a Content Management System. However, its vastly different to many CMS's available because of the way it handles the dispatch of requests over a server pool and incorporates its own Template Engine which I developed speciffically with flexibility and ease of use in mind. </p> <p>Any way, this is completed and I'm happy.</p> <p>Looking over my product, I'm seeing lots of practical applications for such a product. However for my target audience to be reached I need to expand on several of the core features which I currently offer.</p> <p>Namely, I want to provide a solid document management system and include sharing and versioning of documents to enable businesses to pretty much use the product as an Enterprise Content Management Solution. </p> <p>I am trying to find if there are first any 'plug' in document control solutions available on licence. After researching SharePoint I can see that its not really the 'plug' in type of thing I'm looking for as I would need to take a massive step BACK to refactor lots of the site. </p> <p>The site is coded in PHP and runs several Java apps in the back end also currently so code/language divergence is not an issue. I run accross a mySQL database currently however can support (again) other types of RDMS. </p> <p>If you have created a website, which creates websites, how would you handle the additional features that a ECM demands. </p> http://stackoverflow.com/questions/1795920/how-do-other-development-teams-approach-version-numbers 4 How do other development teams approach version numbers? Noel 2009-11-25T10:11:49Z 2009-11-25T11:09:01Z <p>Our application is quite mature, and thus we are up to version 16. However, this can give the impression that the software is old and out of touch (how many commercial applications are there with a version 20+??)</p> <p>Obviously, version numbers are quite arbitrary - what do other people use? I quite like the Ubuntu approach of month.date, but I'd like to see what other strategies people use.</p> http://stackoverflow.com/questions/1793781/git-global-tags-evidently-bad-but-why 2 Git global tags--- evidently bad, but why? AndyL 2009-11-24T23:50:14Z 2009-11-24T23:56:02Z <p>In his <a href="http://lkml.indiana.edu/hypermail/linux/kernel/0506.2/2023.html" rel="nofollow">2005 email to the Linux Kernel mailing list</a>, Linus Torvalds is very emphatic that tags in git should be private and not be automatically included when fetching from others:</p> <blockquote> <p>Pulling a regular head <em>cannot</em> and <em>must</em> <em>not</em> update tags. Tags are not associated with the tree, and they <em>cannot</em> and <em>must</em> <em>not</em> be so, exactly because that would make them global instead of private, and it would fundamentally make them not be distributed</p> </blockquote> <p>and:</p> <blockquote> <p>It is wrong, wrong, <em>wrong</em> to think that fetching somebody elses tree means that you should fetch his tags.</p> </blockquote> <p>I am not a kernal hacker. One of the reasons I use git is to be able to edit my own code from different locations. Tags seem like a natural way to describe different versions for future reference, e.g. what works, what doesn't, what quirks exist. Thus to me it would seem helpful to have tags persist across fetches. Can someone explain what the peril of this paradigm is? </p> <p>Why is having private tags so important? And what is the alternative? Should I simply make a separate branch every time I may want to flag a particular version of the code? </p> http://stackoverflow.com/questions/1785609/would-like-to-create-some-defaults-for-my-hgignore-files-in-tortoisehg-mercurial 0 Would like to create some defaults for my .hgignore files in TortoiseHG/Mercurial DanThMan 2009-11-23T20:07:22Z 2009-11-23T21:53:34Z <p>I'd like to make it so that every time I create a new repository, certain filters automatically get added to my .hgignore files by default.</p> <p>For example, for C# projects, I would like these to be added:</p> <pre><code>glob:bin/* glob:obj/* </code></pre> <p>Is this possible? How?</p> <p>If it can't be automated, is it at least safe to copy the .hgignore file from one repository to another?</p> <p>[I hope this isn't too terribly off topic for stackoverflow...I considered SuperUser but thought it was more of a question for programmers.]</p> http://stackoverflow.com/questions/926808/version-control-for-a-total-newbie 15 Version Control for a total newbie Neil 2009-05-29T16:06:49Z 2009-11-22T16:42:45Z <p>Hello everyone, I'm totally new to the world of programming and understand very little in terms of jargon and typical methodology.</p> <p>A while ago I was writing some code, but accidentally deleted some good code while I was deleting bad code. From then on I started creating versions of my files, I would name each file with the date and a version number.</p> <p>However, this is a pain in the ass, having to give an unique name to each file and then going to my core file and changing the reference to the name of the new file.</p> <p>And then, just the other day I accidentally over wrote something important even with this method, probably because of a typo in naming.</p> <p>Needless to say, this method sucks.</p> <p>I'm looking for suggestions on better practices, better tools. I've been looking at version control, but a lot of them, git svn look really complicated. The idea is to speed up the whole versioning process, not make it harder by having to do command line.</p> <p>Right now I'm hoping that there's a tool that would save an unique version of the file every time I hit ctrl-s, and give me one button to create a finalized version. </p> <p>Of course if there are suggestions for totally different ways of doing things, that would be more awesome.</p> <p>Thanks everyone.</p> http://stackoverflow.com/questions/1775204/svn-avoid-storing-passwords-in-plain-text 0 SVN avoid storing passwords in plain text? Kaushik Gopal 2009-11-21T11:19:12Z 2009-11-21T11:43:15Z <p>Under a bare bones setup for SVN on windows (without using VisualSVN), as per the instructions, the passwords are to be entered in the passwd file.</p> <p>Does SVN provide a way to encrypt or atleast mask this file? as if a person has access to the server directories, he can quite casually edit these files in plain text and come to know of all passwords for the SVN repositories.</p> <p>I'm not installing the apache service etc. Just basic SVN on a windows 2003 server with TortoiseSVN as client.</p> <p>Cheers K</p> http://stackoverflow.com/questions/897907/how-to-effectively-manage-branches-with-jira 1 How to effectively manage branches with JIRA? Boris Terzic 2009-05-22T13:42:13Z 2009-11-20T13:22:25Z <p>We develop a product that consists of a core runtime shared across products (project1, project2, ...) and a project/product specific part. For each of those "products" we maintain multiple branches because different versions are rolled out into the field and require maintenance and sometimes even feature backports.</p> <p>We also use JIRA as an issue tracking system and I'm having trouble finding the right way to model our product types/branches. The JIRA elements that seem relevant in this context are components and versions:</p> <ul> <li>we use components to differentiate between CORE, PRO1, PRO2, etc</li> <li>we use components also to identify what branches are concerned</li> <li>we use Fix Version to keep track of what iteration to resolve the issue (iterative development, bi-weekly iterations)</li> </ul> <p>This more or less works but using the Component type for branches is a hack and has the disadvantage that you can not "retire" components, only delete them. We choose to go this way since if we would mix the iterations together with the branches in the Fix Version field we can no longer query for "iteration X and branch Y" (JIRA does not support AND queries).</p> <p>What sort of best practices exist for maintaining branches and tracking iterations in JIRA?</p> <p>Some stats for context: we are talking about around 4 product types and about 3 major branches per product type to maintain.</p> http://stackoverflow.com/questions/1381028/winsxs-how-to-take-dependency-on-specific-version-of-gdiplus-dll -1 WinSxS: How to take dependency on specific version of gdiplus.dll? Ian Boyd 2009-09-04T19:11:09Z 2009-11-19T21:00:03Z <p>I need to add a dependency on a specific version of GDIPlus. This is the version of GDI+ that i want:</p> <p><img src="http://i31.tinypic.com/2qiv57t.jpg" alt="alt text" /></p> <p>I want to be sure that I'm using this version for a specific compatibility reason.</p> <p>I've added an assembly manifest to my executable, defining my dependancy on the version of <strong>GdiPlus</strong>:</p> <pre><code>&lt;dependency&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity type="win32" name="Microsoft.Windows.GdiPlus" pubicKeyToken="6595b64144ccf1df" version="5.1.3102.2180" processorArchitecture="x86" language="*" /&gt; &lt;/dependentAssembly&gt; &lt;/dependency&gt; </code></pre> <p>Except when I run my application, Windows' fusion loader gives me some other version of gdiplus.dll from the Side-by-Side folder, which I can see in Process Explorer:</p> <p><img src="http://i29.tinypic.com/hrwitz.jpg" alt="alt text" /></p> <p>It's giving me version <strong>5.02.6002.18005</strong>, rather than <strong>5.1.3102.2180</strong>.</p> <p>So the question is: How do I take a dependency on a specific version of a Windows dll?</p> http://stackoverflow.com/questions/1755406/best-practice-way-to-version-a-web-service-application-microsoft-route 0 Best practice way to version a web service application (Microsoft Route) JL 2009-11-18T11:33:15Z 2009-11-18T11:33:15Z <p>I have an IIS Web Service Application (WCF Services). I would like to know what is the best practice method to versioning a web app like this?</p> <p>My idea is to create another web service that pulls the version from the main DLL sitting in the bin folder, but this seems a bit clumsy, surely there is some built in mechanism for this?</p> http://stackoverflow.com/questions/711242/access-version-info-for-project 0 Access Version Info for Project Refracted Paladin 2009-04-02T19:32:10Z 2009-11-16T15:07:39Z <p>I would like to display what version my App is in on the UI. It looks like I set that in <em>Properties --> Application --> Assembler Information</em>. </p> <ul> <li>Is that correct?</li> <li>Do I manually increment that upon releases?</li> <li>How do I access that programmatically?</li> </ul> <p>Thanks!</p> http://stackoverflow.com/questions/1697456/versioning-of-models-in-ruby-on-rails 5 Versioning of Models in Ruby on Rails Marcel J. 2009-11-08T18:34:03Z 2009-11-16T08:33:24Z <p>I'm looking for a plugin/act to allow versioning of my models. It's kind of difficult to find a list of the available solutions. So far I gathered:</p> <ul> <li><code>acts_as_versioned</code></li> <li><code>simply_versioned</code></li> <li><code>vestal_versions</code></li> </ul> <p>The last two solutions only require a single version table - this sounds nice, but I've got a bad feeling about how the ease of migrations will be affacted by this (because they serialize states as a string).</p> <p>On the other hand, <code>acts_as_versioned</code> is a little bit dusty (last commit in January). Are there any recent experiences with any of these? Or other solutions (or forks) I might have overlooked?</p> http://stackoverflow.com/questions/1436023/bamboo-versioning 1 Bamboo Versioning reddy 2009-09-16T23:25:44Z 2009-11-16T04:14:26Z <p>Hello guyz, I have a situation where i need to maintain version information of my builds. By googling i found limited information. one way is to create a version file on source control and keep updating. other is to use the source control revision number. final one is to use bamboo build number. i haven't implemented anyone of this before. colud anyone point out the pros and cons of each method. </p> <p>Thank you, Reddy.</p> <p>Please atleast tell me which method have u used to implement the same. Thnq..</p> http://stackoverflow.com/questions/1709585/versioned-and-indexed-data-store 1 Versioned and indexed data store Dave 2009-11-10T17:11:20Z 2009-11-13T14:02:52Z <p>I have a requirement to store all versions of an entity in a easily indexed way and was wondering if anyone has input on what system to use. </p> <p>Without versioning the system is simply a relational database with a row per, for example, person. If the person's state changes that row is changed to reflect this. With versioning the entry should be updated in such a way so that we can always go back to a previous version. If I could use a temporal database this would be free and I would be able to ask 'what is the state of all people as of yesterday at 2pm living in Dublin and aged 30'. Unfortunately there doesn't seem to be any mature open source projects that can do temporal.</p> <p>A really nasty way to do this is just to insert a new row per state change. This leads to duplication, as a person can have many fields but only one changing per update. It is also then quite slow to select the correct version for every person given a timestamp.</p> <p>In theory it should be possible to use a relational database and a version control system to mimic a temporal database but this sounds pretty horrendous.</p> <p>So I was wondering if anyone has come across something similar before and how they approached it?</p> <p><strong>Update</strong> As suggested by Aaron here's the query we currently use (in mysql). It's definitely slow on our table with >200k rows. (id = table key, person_id = id per person, duplicated if the person has many revisions)</p> <blockquote> <p>select name from person p where p.id = (select max(id) from person where person_id = p.person_id and timestamp &lt;= :timestamp)</p> </blockquote> <p><strong>Update</strong> It looks like the best way to do this is with a temporal db but given that there aren't any open source ones out there the next best method is to store a new row per update. The only problem is duplication of unchanged columns and a slow query.</p> http://stackoverflow.com/questions/740397/modelling-versioning-when-versions-are-related 1 Modelling versioning when versions are related Álvaro Martínez 2009-04-11T16:36:33Z 2009-11-12T19:00:03Z <p>Hi, I'm modelling a class diagram and I'm absolutely stuck with this issue:</p> <p>My new web application has "cards" (entries about a subject) which can be modified by the users, à là wiki. But unlike wikis, different cards hold different data. Also unlike wikis, cards are interrelated with other cards explicitly in the database. Let me show you how I initially designed it using a dummy example:</p> <pre><code>/** Similar to strategy/bridge pattern */ class Card&lt;T extends CardInfoVersion&gt; is composed of T // container of versions class CardInfoVersion // one version class Painting extends CardInfoVersion class Museum extends CardInfoVersion is composed of Paintings </code></pre> <p>Elegant, clean, but <strong>wrong</strong>. Using this approach, <strong>museums are tied to painting versions, not to the painting itself</strong>. The first solution that came off my head was this one:</p> <pre><code>class Card&lt;T extends CardInfoVersion&gt; is composed of T class CardInfoVersion class Painting extends CardInfoVersion class Museum extends CardInfoVersion is composed of Card&lt;Painting&gt; </code></pre> <p>This approach smells. Class hierarchy under CardInfoVersion is huge, so UML model would be unreadable and Card class would be filled with ORM references to CardInfoVersion subclasses. Then I came up with this:</p> <pre><code>class Card is composed of proposedModifications: Set&lt;Card&gt; class Painting extends Card class Museum extends Card is composed of Paintings </code></pre> <p>Which also smells. In fact, this is all fucked up since versioning vanishes. It also requires administrators to validate proposed modifications to cards.</p> <p>I don't really know how to solve this problem. <strong>Remember: original design would be OK if CardInfoVersion subclasses weren't interrelated.</strong></p> <p>Please help!</p> http://stackoverflow.com/questions/1706601/how-do-i-share-a-label-value-between-multiple-cc-net-builds 2 How do I share a label value between multiple CC.NET builds? ArnieZ 2009-11-10T09:20:49Z 2009-11-12T17:22:27Z <p>I have two projects set up in CC.NET: CI build and daily build.</p> <p>Both of them execute the same nant script, but with different parameters.</p> <p>The CCNET label (currently generated by the <em>DefaultLabeler</em>) is embedded into AssemblyInfo as the build part of the version (e.g *MajorVersion.MinorVersion.CCNET_Label.SVN_Revision*).</p> <p>For more consistent versioning I would like both projects to share the same CCNET label value.</p> <p>I have investigated the labelers that are available as part of the CC.NET installation but could not find one that does what I want.</p> <p>How do I share a label value between multiple CC.NET builds?<br /> If there is a better way to do this, I would like to know.</p> <p><strong>EDIT: Found a way. See my answer below.</strong></p> http://stackoverflow.com/questions/483122/how-do-you-do-version-numbering-in-an-agile-project 6 How do you do version numbering in an agile project? Paul Fedory 2009-01-27T11:53:11Z 2009-11-12T15:15:58Z <p>Currently, we're using the following version numbering scheme for our C# winforms project:</p> <p>"Major Release"."Minor Release"."Iteration Number"."Build Number within that Iteration"</p> <p>We wanted to be able to identify the iteration number and the build number within that iteration just by looking at the version number. </p> <p>In the past, we had done something like:"Major Release"."Minor Release"."Sequential Build Number from 1.0". For example, "4.0.648" would mean there were 648 builds since 1.0 - but this information is fairly useless and anecdotal, which is why we changed to reflect iterations and builds within iterations.</p> <p>So considering this new agile version numbering, we now have the problem where a different product group would like to make changes in their iteration for our project. In this instance, the version number would not make sense, because their iteration and build numbers do not correspond. For example, my project's last build was 1.0.5.1 indicating the 1st build of iteration 5. Now this other project that in it's 3rd iteration would like to make changes to my project and rebuild.</p> <p>How should I cope with this situation? How do you do version numbering in your agile project?</p> http://stackoverflow.com/questions/1685662/how-to-commit-subversion-revision-with-every-commit-in-order-to-refer-between-two 4 How to commit subversion revision with every commit in order to refer between two repositories. Wayne 2009-11-06T05:47:09Z 2009-11-12T13:35:18Z <p>Consider software spread in two separate repositories, Pub and Priv. Pub repository is public. Priv is closed. An continuous integration server builds both Pub and Priv when either side changes. It then creates downloadable binaries from Priv that are available to users of Pub. Those binaries are labeled internally and on the file name with the subversion revision.</p> <p>Question is: How to have programs built from Pub aware of the correct, corresponding Priv revision number so they can auto download and run?</p> <p>The current solution is for the build server to modify files in Pub to set the revision number of Priv and commit those changes to Pub. However, this presents 2 significant problems:</p> <ol> <li><p>The build takes a long time so if someone commits changes to Pub (or Priv) during the build, it creates conflicts. That can be forced resolved but the log history looks odd as if those revisions made it into that build.</p></li> <li><p>The subversion log has many entries like "Auto build updated the version." from every time the build run which polutes the otherwise informative subversion log.</p></li> </ol> <p>So can we do this in a way which doesn't require changing the repository.</p> <p>Sincerely, Wayne</p> http://stackoverflow.com/questions/998708/trade-offs-implementing-versioning-of-services-accessed-by-reliable-async-messagi 1 Trade-offs implementing versioning of services accessed by reliable async messaging? Nat 2009-06-15T22:18:33Z 2009-11-09T22:00:02Z <p>Clients of HTTP services can specify the version (and format) they understand by requesting or posting data with a specific content type. The HTTP protocol defines error codes for reporting that the content type is not understood.</p> <p>Messaging systems (e.g. JMS, MQ Series and the like) do not have a standard way of describing message protocol versions and content formats.</p> <p>How have you implemented versioning for services accessed over reliable, asynchronous messaging?</p> <p>Some possibilities:</p> <ul> <li>The sender indicates the version as a message property</li> <li>Queue or Topic names include the protocol version of the messages accepted at that destination</li> <li>The version is in the payload of the message</li> </ul> <p>I'm sure there are other ways. How did you do it? What advantages and disadvantages did you find?</p> http://stackoverflow.com/questions/1679322/web-services-api-versioning 2 Web Services API Versioning Paul Izzy 2009-11-05T09:21:38Z 2009-11-09T17:03:22Z <p>I offer a small Web Services API to my clients which I plan to evolve over time. So I need some sort of versioning, but I can't find any information about how you do something like that.</p> <p>Is there a best practise?</p> <p>How can I keep adding new functionality without breaking compatibility with the web services consumers?</p> http://stackoverflow.com/questions/1380219/how-to-force-the-build-to-be-out-of-date-when-a-text-file-is-modified 1 How to force the build to be out of date, when a text file is modified? demoncodemonkey 2009-09-04T16:16:15Z 2009-11-09T11:00:05Z <p><strong>The Scenario</strong><br /> My project has a post-build phase set up to run a batch file, which reads a text file "version.txt". The batch file uses the information in version.txt to inject the DLL with a version block using <a href="http://www.codeproject.com/KB/install/VerPatch.aspx" rel="nofollow">this tool</a>.</p> <p>The version.txt is included in my project to make it easy to modify. It looks a bit like this:</p> <pre><code>@set #Description="TankFace Utility Library" @set #FileVersion="0.1.2.0" @set #Comments="" </code></pre> <p>Basically the batch file renames this file to version.bat, calls it, then renames it back to version.txt afterwards.</p> <p><strong>The Problem</strong><br /> When I modify version.txt (e.g. to increment the file version), and then press F7, the build is not seen as out-of-date, so the post-build step is not executed, so the DLL's version doesn't get updated.</p> <p>I really want to include the .txt file as an input to the build, but without anything actually trying to use it.</p> <p>If I #include the .txt file from a CPP file in the project, the compiler fails because it obviously doesn't understand what "@set" means.</p> <p>If I add /* ... */ comments around the @set commands, then the batch file has some syntax errors but eventually succeeds. But this is a poor solution I think.</p> <p><strong>So... how would you do it?</strong></p> http://stackoverflow.com/questions/916556/when-building-a-hosted-sas-application-how-do-you-manage-multiple-versions-when 1 When building a hosted/SAS application, how do you manage multiple versions when customizations by the customer are allowed? rrc7cz 2009-05-27T15:56:14Z 2009-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/1682090/net-setup-project-force-new-file-replacement-on-reinstall 0 .net Setup project force new file replacement on reinstall Trouts 2009-11-05T17:07:06Z 2009-11-05T17:07:06Z <p>Hello,</p> <p>I have a setup project that install a couple of projects and a couple of external files (one of which is a SQLite Database) - everything worked fine until i've recently modified the base database file included in the setup project. </p> <p>Now, everytime i try to reinstall the project the new database file does not replace the previously installed one... Can i force it somehow in VS or make the setup realize this is a new version so the file gets replaced?</p> <p>Best Regards,</p> <p>Carlos Ouro</p> http://stackoverflow.com/questions/750591/how-to-fetch-current-subversion-revision-number-and-url-with-maven 2 How to fetch current subversion revision number and URL with maven Juha Syrjälä 2009-04-15T07:03:40Z 2009-11-04T17:00:14Z <p>I make a checkout of some branch or tag from subversion repository and then build the project with maven. </p> <p>Now, I'd like to get store <em>current</em> revision number and URL to some file. How can I do that? That is, I'd like to get revision number and URL of whatever branch/tag I have made checkout of.</p> <p>I know about <a href="http://mojo.codehaus.org/buildnumber-maven-plugin/" rel="nofollow">buildnumber-maven-plugin</a> but I think it doesn't do this. It fetches revision number of branch that is specified in pom.xml.</p> http://stackoverflow.com/questions/1670900/execute-maven-plugin-goal-on-parent-module-but-not-on-children 0 Execute Maven plugin goal on parent module, but not on children Dougnukem 2009-11-03T23:48:36Z 2009-11-04T01:14:58Z <p>We have a multi-module maven project that uses a profile that defines a <a href="http://mojo.codehaus.org/buildnumber-maven-plugin/" rel="nofollow">buildnumber-maven-plugin</a> to increment a build number and then check it into source control.</p> <p>If I define the plugin in the parent pom.xml it executes for all the child builds as well.</p> <p>Here's my parent pom.xml</p> <pre><code>&lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;com.webwars&lt;/groupId&gt; &lt;artifactId&gt;parent&lt;/artifactId&gt; &lt;packaging&gt;pom&lt;/packaging&gt; &lt;properties&gt; &lt;buildNumber.properties&gt;${basedir}/../parent/buildNumber.properties&lt;/buildNumber.properties&gt; &lt;/properties&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;name&gt;Parent Project&lt;/name&gt; &lt;profiles&gt; &lt;profile&gt; &lt;id&gt;release&lt;/id&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;debug&gt;false&lt;/debug&gt; &lt;optimize&gt;true&lt;/optimize&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;buildnumber-maven-plugin&lt;/artifactId&gt; &lt;version&gt;1.0-beta-3&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;validate&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;create&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;configuration&gt; &lt;buildNumberPropertiesFileLocation&gt;${buildNumber.properties}&lt;/buildNumberPropertiesFileLocation&gt; &lt;getRevisionOnlyOnce&gt;true&lt;/getRevisionOnlyOnce&gt; &lt;doCheck&gt;false&lt;/doCheck&gt; &lt;doUpdate&gt;false&lt;/doUpdate&gt; &lt;format&gt;{0, number}&lt;/format&gt; &lt;items&gt; &lt;item&gt;buildNumber&lt;/item&gt; &lt;/items&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-scm-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;install&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;checkin&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;configuration&gt; &lt;basedir&gt;${basedir}&lt;/basedir&gt; &lt;includes&gt;buildNumber.properties&lt;/includes&gt; &lt;message&gt;[Automated checkin] of ${basedir} Build version: ${major.version}.${minor.version}.${buildNumber}&lt;/message&gt; &lt;developerConnectionUrl&gt;...&lt;/developerConnectionUrl&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;/profiles&gt; &lt;modules&gt; &lt;module&gt;../common&lt;/module&gt; &lt;module&gt;../data&lt;/module&gt; &lt;module&gt;../client&lt;/module&gt; &lt;module&gt;../webplatform&lt;/module&gt; &lt;/modules&gt; ... &lt;/project&gt; </code></pre> http://stackoverflow.com/questions/1456785/a-definite-guide-to-api-breaking-changes-in-net 28 A definite guide to API-breaking changes in .NET Pavel Minaev 2009-09-21T20:52:04Z 2009-10-30T20:58:54Z <p>I would like to gather as much information as possible regarding API versioning in .NET/CLR, and specifically how API changes do or do not break client applications. First, let's define some terms:</p> <p><strong>API change</strong> - a change in the publicly visible definition of a type, including any of its public members. This includes changing type and member names, changing base type of a type, adding/removing interfaces from list of implemented interfaces of a type, adding/removing members (including overloads), changing member visibility, renaming method and type parameters, adding default values for method parameters, adding/removing attributes on types and members, and adding/removing generic type parameters on types and members (did I miss anything?). This does not include any changes in member bodies, or any changes to private members (i.e. we do not take into account Reflection).</p> <p><strong>Binary-level break</strong> - an API change that results in client assemblies compiled against older version of the API potentially not loading with the new version. Example: removing an existing class member.</p> <p><strong>Source-level break</strong> - an API change that results in existing code written to compile against older version of the API potentially not compiling with the new version. Already compiled client assemblies work as before, however. Example: adding a new overload that can result in ambiguity in method calls that were unambiguous previous.</p> <p><strong>Source-level quiet semantics change</strong> - an API change that results in existing code written to compile against older version of the API quietly change its semantics, e.g. by calling a different method. The code should however continue to compile with no warnings/errors, and previously compiled assemblies should work as before. Example: implementing a new interface on an existing class that results in a different overload being chosen during overload resolution.</p> <p>The ultimate goal is to catalogize as many breaking and quiet semantics API changes as possible, and describe exact effect of breakage, and which languages are and are not affected by it. To expand on the latter: while some changes affect all languages universally (e.g. adding a new member to an interface will break implementations of that interface in any language), some require very specific language semantics to enter into play to get a break. This most typically involves method overloading, and, in general, anything having to do with implicit type conversions. There doesn't seem to be any way to define the "least common denominator" here even for CLS-conformant languages (i.e. those conforming at least to rules of "CLS consumer" as defined in CLI spec) - though I'll appreciate if someone corrects me as being wrong here - so this will have to go language by language. Those of most interest are naturally the ones that come with .NET out of the box: C#, VB and F#; but others, such as IronPython, IronRuby, Delphi Prism etc are also relevant. The more of a corner case it is, the more interesting it will be - things like removing members are pretty self-evident, but subtle interactions between e.g. method overloading, optional/default parameters, lambda type inference, and conversion operators can be very surprising at times.</p> <p>A few examples to kickstart this:</p> <h2>Adding new method overloads</h2> <p>Kind: source-level break</p> <p>Languages affected: C#, VB, F#</p> <p>API before change:</p> <pre><code>public class Foo { public void Bar(IEnumerable x); } </code></pre> <p>API after change:</p> <pre><code>public class Foo { public void Bar(IEnumerable x); public void Bar(ICloneable x); } </code></pre> <p>Sample client code working before change and broken after it:</p> <pre><code>new Foo().Bar(new int[0]); </code></pre> <h2>Adding new implicit conversion operator overloads</h2> <p>Kind: source-level break.</p> <p>Languages affected: C#, VB</p> <p>Languages not affected: F#</p> <p>API before change:</p> <pre><code>public class Foo { public static implicit operator int (); } </code></pre> <p>API after change:</p> <pre><code>public class Foo { public static implicit operator int (); public static implicit operator float (); } </code></pre> <p>Sample client code working before change and broken after it:</p> <pre><code>void Bar(int x); void Bar(float x); Bar(new Foo()); </code></pre> <p>Notes: F# is not broken, because it does not have any language level support for overloaded operators, neither explicit nor implicit - both have to be called directly as <code>op_Explicit</code> and <code>op_Implicit</code> methods.</p> <h2>Adding new instance methods</h2> <p>Kind: source-level quiet semantics change.</p> <p>Languages affected: C#, VB</p> <p>Languages not affected: F#</p> <p>API before change:</p> <pre><code>public class Foo { } </code></pre> <p>API after change:</p> <pre><code>public class Foo { public void Bar(); } </code></pre> <p>Sample client code that suffers a quiet semantics change:</p> <pre><code>public static class FooExtensions { public void Bar(this Foo foo); } new Foo().Bar(); </code></pre> <p>Notes: F# is not broken, because it does not have language level support for <code>ExtensionMethodAttribute</code>, and requires CLS extension methods to be called as static methods. </p> http://stackoverflow.com/questions/1643279/product-version-in-sql-server 0 Product version in SQL Server. Workshop Alex 2009-10-29T12:10:48Z 2009-10-29T12:51:20Z <p>Simple situation. I've created an application which uses SQL Server as database. I could add a table to this database which contains the version number of my application, so my application can check if it's talking to the correct version of the database. But since there are no other settings that I store inside a database, this would mean that I would add a single table with a single field, which contains only one record.</p> <p>What a waste of a good resource...</p> <p>Is there another wat that I can tell the SQL Server database about the product version that it's linked to? </p> <p><strong>I'm not interested in the version of SQL Server itself but of the database that it's using.</strong></p> <p>(Btw, this applies to both SQL Server 2000 and 2005.)</p> http://stackoverflow.com/questions/1366242/find-latest-approved-version-of-an-splistitem 3 Find latest approved version of an SPListItem Riddler777 2009-09-02T07:15:18Z 2009-10-27T15:40:39Z <p>I am trying to iterate through the SPListItem.Versions collection to find the latest approved list item.</p> <p>My list item has three versions: the first two are approved, the last is in draft. But my code says they're all in draft! Please help!</p> <pre><code>// Iterate through all versions for (int index = 0; index &lt; item.Versions.Count; index++) { SPListItem versionedItem = item.Versions[index].ListItem; // Check if moderation information is set to approved if (versionedItem.ModerationInformation.Status.Equals(SPModerationStatusType.Approved)) { // We found an approved version! itemFound = versionedItem; } } </code></pre> http://stackoverflow.com/questions/151403/what-is-a-good-free-utility-to-create-a-self-extracting-executable-with-an-embedd 1 What is a good free utility to create a self-extracting executable with an embedded file version? Blorgbeard 2008-09-30T01:20:50Z 2009-10-27T12:12:58Z <p>According to the answers to <a href="http://stackoverflow.com/questions/151250/how-do-i-embed-a-file-version-in-an-msi-file-with-visual-studio">this</a> question, I cannot embed a file version in my .msi file. </p> <p>The installer that I give the client needs to have a file version. </p> <p>So, what I want to do is create a self-extracting executable containing the msi file and the setup.exe generated by Visual Studio, and put the file version on this self-extracting executable instead.</p> <p>Therefore, I need a utility to create self-extracting executables which supports embedding a file version in its output. It also needs to support automatically running a file after extraction, so I can start the real installer automatically. It would be nice if it was scriptable.</p> <p>All I could find was <a href="http://www.gdgsoft.com/pb/customize-package.aspx" rel="nofollow">this</a>, which looks great, but I would much prefer a free alternative.</p> <p>Does anyone have any suggestions?</p> <p><strong>Edit:</strong> To clarify, I'm not really looking to create an installer - I already have a VS setup project. I just want a self-extractor (like WinZip can create). So, the user mouses over Setup-Blorgbeard2008.exe, sees "Version: 1.0.0.0". User doubleclicks it, it silently extracts setup.exe and setup.msi to a temp folder, then runs setup.exe. User then sees normal installer screen and proceeds as normal.</p> <p><strong>Another Edit:</strong> Yay, I don't need a self-extractor anymore, since my other question has now been answered. That makes this whole question pretty much irrelevant. It <em>would</em> still be nice to be able to distribute only one file, rather than setup.exe and setup.msi.</p>