Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmerchante committed Dec 11, 2024
1 parent 9d06400 commit 0422282
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 28 deletions.
20 changes: 20 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Releases

## perceval 1.1.0 - (2024-12-11)

**Bug fixes:**

* Git stats not assigned with their actions\
Git stats were not assigned to their actions in a commit for filenames
that contain whitespaces. Instead, an empty stat was created like in a
merge commit, where actions normally don't take place.

**Performance improvements:**

* Git sync improved for `--latest-items` flag\
The speed updating a git repository when `--lates-items` is set was
very poor. The main problem was when the references were updated to
the new hashes. All the active refs on the repository were modified,
even when they were up-to-date. Now, only references updated on the
remote repository are modified on the local one. Repositories are
synched 2 times faster than before.


## perceval 1.0.9 - (2024-11-13)

* Update Poetry's package dependencies
Expand Down
4 changes: 2 additions & 2 deletions perceval/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File auto-generated by semverup on 2024-12-11 09:08:50.057484
__version__ = "1.1.0-rc.1"
# File auto-generated by semverup on 2024-12-11 10:23:40.112235
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "perceval"
version = "1.1.0-rc.1"
version = "1.1.0"
description = "Send Sir Perceval on a quest to fetch and gather data from software repositories."
authors = [
"GrimoireLab Developers"
Expand Down
19 changes: 19 additions & 0 deletions releases/1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## perceval 1.1.0 - (2024-12-11)

**Bug fixes:**

* Git stats not assigned with their actions\
Git stats were not assigned to their actions in a commit for filenames
that contain whitespaces. Instead, an empty stat was created like in a
merge commit, where actions normally don't take place.

**Performance improvements:**

* Git sync improved for `--latest-items` flag\
The speed updating a git repository when `--lates-items` is set was
very poor. The main problem was when the references were updated to
the new hashes. All the active refs on the repository were modified,
even when they were up-to-date. Now, only references updated on the
remote repository are modified on the local one. Repositories are
synched 2 times faster than before.

This file was deleted.

14 changes: 0 additions & 14 deletions releases/unreleased/processed/git-sync-perfomance-improved.yml

This file was deleted.

0 comments on commit 0422282

Please sign in to comment.