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
245
votes
11 answers

What are some good ways to manage a changelog using Git?

I've been using Git for a while now, and I recently started using it to tag my releases so that I could more easily keep track of changes and be able to see which version each of our clients is running (unfortunately the code currently mandates that…
Topher Fangio
  • 20,372
  • 15
  • 61
  • 94
87
votes
4 answers

What's new in Hibernate 4?

I just saw that a beta of Hibernate 4 was released. What's new in 4 compared to 3(.6)? I couldn't find this info in the beta announcement, nor when Googling the title of this question.
Bart van Heukelom
  • 43,244
  • 59
  • 186
  • 301
44
votes
4 answers

How to include git changelog in Jenkins emails?

Is there any way to import the changelog that is generated by Jenkins to the subject of an email (either through the default email, or the email-ext plugin)? I am new to Jenkins configuration, so I apologize if this is a simple issue, but I was…
Igor
  • 33,276
  • 14
  • 79
  • 112
28
votes
10 answers

Git changelog: how to get all changes up to a specific tag?

Is there an easy way or command to get all git commits up to a specific tag to generate an automatic changelog for a project? I always tag my git repos with a version number like v0.1.0 and for instance would like all commits up to tag v0.1.0. I've…
Luwe
  • 3,026
  • 1
  • 20
  • 21
23
votes
7 answers

Updating my google play "What's new" section

I am about to release an update for my companies android app. The previous guy who wrote the app has now left, and I was just wondering how I change what appears in the What's New section in google play. I can't find any guides anywhere!? I read…
Russ Wheeler
  • 2,590
  • 5
  • 30
  • 57
23
votes
8 answers

Changelog generation from Github issues?

Is there a way to automatically generate a change log from Github issues? Ideally I want to be able to point at a closed milestone and generate either a plain text list of closed issues with their titles or, even better, a list with markup for links…
James McMahon
  • 48,506
  • 64
  • 207
  • 283
22
votes
5 answers

git: changelog day by day

How to generate changelog of commits groupped by date, in format: [date today] - commit message1 - commit message2 - commit message3 ... [date day+3] - commit message1 - commit message2 - commit message3 ... (skip this day if no commits) [date…
takeshin
  • 49,108
  • 32
  • 120
  • 164
21
votes
2 answers

PostgreSQL how to find any changes in the last n-minutes

I am writing a program that syncs PostgreSQL and MS SQL server databases (and adds some changes in this transition). With multi million records, it takes a long time, and loads server pretty bad with select *; it also takes more resources to parse…
Andrew
  • 7,619
  • 13
  • 63
  • 117
17
votes
3 answers

TFS2010: Retrieve all changesets associated with a branch (full recursion)

This follows my previous question about TFS 2010 and the possibility to create a changelog. I was previously using labels to identify a version of the program, but as labels are not fixed points in time, now I'm using branches. Here's how the branch…
ken2k
  • 48,145
  • 10
  • 116
  • 176
17
votes
5 answers

How to implement a changelog in android?

for my app i want to implement a changelog, but dont know how (which concept). I want, that the changelog pops up once a time after new version of my app installed. Sounds easy, but i have no clue. :/ Dialog to show my Changelog exists already, i…
Prexx
  • 2,959
  • 5
  • 31
  • 48
17
votes
1 answer

How can I maintain an automatic changelog per module in a monorepo?

I'm working on a project which consists of multiple git repositories. There are multiple microservices, a frontend, some npm-packages and gateway containers, etc. As I often run into the problem that for new features I have to change the code in…
Chop Suey
  • 230
  • 2
  • 6
17
votes
3 answers

Git and changelog guideline

I'm a noob with git and i would like to know the best practice to create tags and generate/mantain a changelog. Until now, i always created a readme.md and manually indicate (in the section "changelog") the most important feature For…
redmile
  • 345
  • 1
  • 4
  • 13
16
votes
4 answers

Create changelog artifact in TeamCity

Is there a simple way to have TeamCity include a text or html change-log as one of its output artifacts? Perhaps I need to go down the route of having msbuild or some other process create the change log but as TeamCity generates one for every build,…
grenade
  • 31,451
  • 23
  • 97
  • 126
14
votes
2 answers

With Liquibase, is there a difference between using a unique and using with a unique constraint?

Liquibase has two ways to define a column as unique: When creating the table, using on the column:
Rob Hruska
  • 118,520
  • 32
  • 167
  • 192
13
votes
2 answers

Custom git merge union strategy for a Changelog

We have an ONGOING.md file where each developer adds item when pushing code. It looks like : ### Added - item 1 ### Changed - item 2 It happened all the time that lines got overwritten when pulling/pushing code so I added a .gitattributes file at…
kraymer
  • 3,254
  • 1
  • 24
  • 32
1
2 3
20 21