Questions tagged [changelog]

A changelog is a log or record of changes made to a project.

A changelog is a log or record of changes made to a project, such as a website or software project, usually including such records as bug fixes, new features, etc

315 questions
12
votes
3 answers

Automatically write changelog to CHANGELOG.md in GitHub

Is there any way to automatically generate change logs from commit messages to a file called CHANGELOG.md in a GitHub repo? Might be possible using a service hook on a repo?
keto23
  • 1,177
  • 1
  • 10
  • 16
11
votes
1 answer

Changelog handling in semantic-release?

Using semantic-release in our Github workflows. They are setup like this: [ {name: 'main', prerelease: false}, {name: 'staging', prerelease: true}, {name: 'development', prerelease: true} ] Pushes to development are deployed to development…
Moritz Schmitz v. Hülst
  • 3,229
  • 4
  • 36
  • 63
11
votes
2 answers

Is there a way to use standard-version just to update the change log

I like standard-version as it updates the changelog using git commits but for a project I'm working on versioning is managed by another command - and HAS to stay like this. Is there a way of just getting standard-version just to generate the new…
Arnold Rimmer
  • 2,723
  • 2
  • 16
  • 23
11
votes
1 answer

Validate format of GitHub "Squash and Merge" commit messages

I want to set up a GitHub project to use conventional-changelog standard version to generate its changelog. We use a squash and merge workflow to merge PRs into our main development branch. Is there a way that I can enforce that the commit message…
JKillian
  • 18,061
  • 8
  • 41
  • 74
11
votes
6 answers

PHP MySQL SQL parser (INSERT and UPDATE)

I am looking to parse INSERT and UPDATE MySQL SQL queries in PHP to determine what changes where made from what original data. Now this would be pretty easy to create, but I want to see if there are any existing libraries in PHP to do…
Darryl Hein
  • 142,451
  • 95
  • 218
  • 261
10
votes
7 answers

Specifying files by absolute path was removed in Liquibase 4.0

I am getting the following liquibase error when I run my Spring Boot application: Specifying files by absolute path was removed in Liquibase 4.0. Please use a relative path or add '/' to the classpath parameter. Here is the class path in…
Clancinio
  • 734
  • 6
  • 21
  • 40
10
votes
3 answers

Do you only update the changed fields or all the fields?

I'm wondering if it's worth the server time when updating a record to retrieve the existing record, loop through the fields checking for changes and only putting the changed fields in the update query? (I am using MySQL & PHP.) The main reason for…
Darryl Hein
  • 142,451
  • 95
  • 218
  • 261
10
votes
2 answers

svn help to get all history

Summary: I want to know that how can I get all the change log from svn. I know about SVN LOG URL, but it does not give me detail that what files were changed in that commit. It just gives me commit message. I want to know that what files were…
Tweet
  • 678
  • 2
  • 10
  • 26
9
votes
3 answers

Tagging commit messages and changesets

I am searching for a solution, to tag changesets in commit messages. For me a "tag" is something like: code clean up user visible change modifies database structure (ALTER TABLE) Documentation change Up to now I use SVN, but want to switch to git.…
guettli
  • 25,042
  • 81
  • 346
  • 663
9
votes
1 answer

What is the jenkins /changes page?

When a Jenkins jobe builds it comes with a changes page located at https://jenkins.server/jenkins/job/job-name/changes. I know the purpose is to display SCM / git changes but what exactly is it? Is it a plugin, or part of a plugin? Does it have an…
Wimateeka
  • 2,474
  • 2
  • 16
  • 32
8
votes
2 answers

Where can I find changelog of JavaScript?

I would like to see list of changes that were made in every version of JavaScript. I would also be interested in what is planned to be added in JavaScript and when a new realease is planned. Do you know any site where this info can be found? Thank…
Palo
  • 10,591
  • 7
  • 28
  • 34
8
votes
1 answer

Generate changelog from commit and tag

I'm trying to generate changelog to a project (repo in bitbucket.org), but I can't find an easy solution. We are using this pattern ((): ) to fill the commit messages, and tags to version (0.1, 0.2, 0.3). Is there anything…
Christian Benseler
  • 7,907
  • 8
  • 40
  • 71
7
votes
1 answer

How to have different markdownlint rules for CHANGELOG.md files

In VS Code, I use markdownlint for my markdown files. I like the rules that it imposes except for my CHANGELOG.md file (see keepachangelog.com). Is there a way to have one set of rules for most of my markdown files and another set for the change…
Scott Nelson
  • 568
  • 2
  • 17
7
votes
0 answers

Remove newlines form git commit bodies in git log

I have following aliases in my .gitconfig to automate my tag annotations (using my git tag-release alias): [alias] lm = log --pretty=format:'(%h) %s%n%w(72,10,10)%b%w(72,0,0)by %an on %ad%n' --date=local --no-merges rn = "!f() { git lm…
Jelle
  • 298
  • 1
  • 11
7
votes
4 answers

Android 2.2.1 changelog

Is there a changelog available for Android 2.2.1?
1
2
3
20 21