Database – Data Versioning [closed]

I have done various audit schemes over the years and I am currently going to implement something like this: Person ———————————————— ID UINT NOT NULL, PersonID UINT NOT NULL, Name VARCHAR(200) NOT NULL, DOB DATE NOT NULL, Email VARCHAR(100) NOT NULL Person_History ———————————————— ID UINT NOT NULL, PersonID UINT NOT NULL, Name VARCHAR(200) NOT NULL, … Read more

nuget spec dependencies, get latest version?

As of Nuget 2.8 you can add the following attribute to your nuget.config <configuration> <config> <add key=”dependencyversion” value=”Highest” /> </config> </configuration> When resolving your packages, the latest version of that package will be resolved. Other attributes include HighestMinor, HighestPatch and lowest (based on semantic versioning) Source: http://docs.nuget.org/docs/release-notes/nuget-2.8

Skip composer PHP requirement

I’ve found the option: composer install –ignore-platform-reqs Ignore platform requirements (php & ext- packages). Alternative: Specify your projects’ PHP version You can skip the platform checks by configuring composer.json#/config/platform/php with the PHP version to use. Composer will fetch packages based on that configured PHP version then. So when you need to tell Composer the PHP … Read more

How to use JSF versioning for resources in jar

That’s unfortunately not possible. Library versioning is not supported for resources in JAR. You’ve basically 2 options: Do it the easy and ugly way, include server’s startup time as query string. Given that you’re using OmniFaces, you could use its builtin #{startup} managed bean referring a java.util.Date instance in application scope: <h:outputStylesheet … name=”some.css?#{startup.time}” /> … Read more