OptaPlanner detailed release notes - version

Is there somewhere where detailed release notes are located? I am specifically looking for what's in v8.24 and v8.24.1, as I am using 8.23.
Thanks in advance.

The full changelog between any two versions can be found on Github.
We do not publish any written release notes - personally, I think that we should get better at that.

Related

Finding a PEiD database

Where can I get the latest version of the PEiD database? I know that one version is available in github (https://raw.githubusercontent.com/guelfoweb/peframe/5beta/peframe/signatures/userdb.txt), but it is more than one year old and it has approximately 4000 signatures.
If you're looking for the database to use in yara, There's a yara-rules github page here that has a lot of preexisting rules and seems to be quite up to date. hope this helps!

Migration from angular 1.2 to 1.5

Currently I am using angular v1.2.26. When I upgraded it to v1.5.0(or v.1.4.8), the application stopped working.
What are the changes in the existing code of v1.2.26, I should not be missing, to make the application work?
There's now a guide available https://docs.angularjs.org/guide/migration - probably slightly less tedious than reading every single ChangeLog
Migration Guide - https://docs.angularjs.org/guide/migration
See the change log
https://github.com/angular/angular.js/blob/master/CHANGELOG.md
An easier way is to see where your code fails, debug a bit and hit the nail. There are no huge changes between the versions in question.
Although, your question is not a good candidate for StackOverflow questions but you should read the ChangeLog to see the breaking changes and fixes in each release after v1.2.26 to v1.5.0.
See the changes https://github.com/angular/angular.js/blob/master/CHANGELOG.md
Please take a look if this may help you:
http://www.diatomenterprises.com/migration-history-from-angularjs-1-3-to-1-5-and-then-2-0/
I can assist you in migration from 1.3/1.4 to 1.5 since did it a few times on different projects and all went smooth. Of course there're some tricks to do, but in general nothing breaking.

Cloudant incremental backup supported?

I was working on an incremental backup solution for my Cloudant databases.
I was using the documentation at https://docs.cloudant.com/backup-guide.html and today I tried to go back to that link to look something up and the page is gone.
Is this an error in the documentation, or has support for this been removed?
Thanks
The documentation on the page you were reading was for features that have not yet been released. Once the features are officially released, we will make that page available again. In the meantime, this page may be helpful: https://docs.cloudant.com/backup.html

Is git-blame available on smartgit?

I am searching for a way to use git blame through smartgit UI.
Is it available or am I searching for a missing feature?
UPDATE:
Available with SmartGitHg4 http://www.syntevo.com/smartgithg/whatsnew.html
Blame/Annotate is not yet present in SmartGit, but will be with the next major release.

How to view the file difference?

I'm having two versions of PHP scripts. I forgot which lines I modified in the new version.
I have more than 100 files. So can anyone tell me how to bulk view the difference by comparing two directories?
Thanks
PS: If you guys know any free or paid tool please let me know.
In Unix/Mac environments:
diff -rq dirA dirB
There are plenty of command-line and GUI tools for Windows as well. Also consider using any vcs, modern dvcs systems like git and mercurial are very well suited even for a single developer.
See also:
https://serverfault.com/questions/79226/different-files-of-two-directories
One of the best paid tools : Beyond Compare 3 http://www.scootersoftware.com/
You could combine a simple shell-script loop with the diff command... but yes, as Andreas AL mentioned, source control is a more robust solution to your problem.

Resources