Skip to content

Commit

Permalink
Merge pull request #369 from r-world-devs/332-pull_commits-returns-a-…
Browse files Browse the repository at this point in the history
…mix-of-github-handles-and-display-names

Adding to commits table result separately author handle (a login) and a display name.
  • Loading branch information
maciekbanas authored Mar 11, 2024
2 parents 59d97e1 + a25f109 commit f58f328
Show file tree
Hide file tree
Showing 23 changed files with 565 additions and 2,844 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: GitStats
Title: Get Statistics from GitHub and GitLab
Version: 1.1.0.9001
Version: 1.1.0.9002
Authors@R: c(
person(given = "Maciej", family = "Banas", email = "[email protected]", role = c("aut", "cre")),
person(given = "Kamil", family = "Koziej", email = "[email protected]", role = "aut"),
Expand Down
13 changes: 9 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

## New features:

- add `pull_release_log()` [#356](https://github.com/r-world-devs/GitStats/issues/356)
- replace all `get_*()` functions with one `get_table()`, where user passes the name of the object he wants to retrieve (e.g. `repos`, `commits`, `package_usage`) to the `table` parameter.
- Add `pull_release_log()` ([#356](https://github.com/r-world-devs/GitStats/issues/356)).
- Replace all `get_*()` functions with one `get_table()`, where user passes the name of the object he wants to retrieve (e.g. `repos`, `commits`, `package_usage`) to the `table` parameter.

## Minor features:

- use stored repositories when pulling commits or files [#159](https://github.com/r-world-devs/GitStats/issues/159)
- improve printing `GitStats` object - now when you return `GitStats` object in console, it prints `GitStats` data divided into sections to give more readable information to user: `scanning scope` (organizations, repositories and files), `search settings` (searched phrase, language, team name) and `storage` (the output tables stored in `GitStats` with basic information on dimensions) [#329](https://github.com/r-world-devs/GitStats/issues/329)
- Commits response consists now of two new columns: `author_login` and `author_name` ([#332](https://github.com/r-world-devs/GitStats/issues/332)). This is due to the mix of github/gitlab handles and display names in the `author` column (the original author `name` field in commits API response).
- Use stored repositories when pulling commits or files ([#159](https://github.com/r-world-devs/GitStats/issues/159)).
- Improve printing `GitStats` object - now when you return `GitStats` object in console, it prints `GitStats` data divided into sections to give more readable information to user: `scanning scope` (organizations, repositories and files), `search settings` (searched phrase, language, team name) and `storage` (the output tables stored in `GitStats` with basic information on dimensions) ([#329](https://github.com/r-world-devs/GitStats/issues/329)).

## Bug fixes:

- Pagination was introduced to `contributors` response ([#331](https://github.com/r-world-devs/GitStats/issues/331)).

# GitStats 1.1.0

Expand Down
Loading

0 comments on commit f58f328

Please sign in to comment.