Skip to content

Commit

Permalink
Merge branch 'master' into deprecate-pkgreview
Browse files Browse the repository at this point in the history
  • Loading branch information
repo-ranger[bot] authored Oct 10, 2022
2 parents b1575dc + ac26caf commit c13f5d6
Show file tree
Hide file tree
Showing 15 changed files with 1,789 additions and 1,593 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ Note: this changelog is for the shields.io server. The changelog for the badge-m

---

## server-2022-10-08

- deprecate [criterion] service [#8501](https:/badges/shields/issues/8501)
- fix formatRelativeDate error handling; run [date] [#8497](https:/badges/shields/issues/8497)
- allow/validate bitbucket_username / bitbucket_password in private config schema [#8472](https:/badges/shields/issues/8472)
- fix [pub] points badge test and example [#8498](https:/badges/shields/issues/8498)
- feat: add [GitlabLanguageCount] service [#8377](https:/badges/shields/issues/8377)
- [GitHubGistStars] add GitHub Gist Stars [#8471](https:/badges/shields/issues/8471)
- fix display/search of CII badge examples [#8473](https:/badges/shields/issues/8473)
- feat: add 2022 support to GitHub Hacktoberfest [#8468](https:/badges/shields/issues/8468)
- fix [GitLabCoverage] subgroup bug [#8401](https:/badges/shields/issues/8401)
- implement ruby gems-specific version sort/color functions [#8434](https:/badges/shields/issues/8434)
- Add `rc` to pre-release identifiers [#8435](https:/badges/shields/issues/8435)
- add [GitHub] Number of commits between branches/tags/commits [#8394](https:/badges/shields/issues/8394)
- add [Packagist] dependency version [#8371](https:/badges/shields/issues/8371)
- fix Docker build status invalid response data bug [#8392](https:/badges/shields/issues/8392)
- Dependency updates

## server-2022-09-04

- fix frontend compile for users running on Windows [#8350](https:/badges/shields/issues/8350)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Prettier before a commit by default.
When adding or changing a service [please write tests][service-tests], and ensure the [title of your Pull Requests follows the required conventions](#running-service-tests-in-pull-requests) to ensure your tests are executed.
When changing other code, please add unit tests.

To run the integration tests, you must have redis installed and in your PATH.
To run the integration tests, you must have Redis installed and in your PATH.
Use `brew install redis`, `yum install redis`, etc. The test runner will
start the server automatically.

Expand Down
2 changes: 2 additions & 0 deletions core/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ const privateConfigSchema = Joi.object({
jenkins_pass: Joi.string(),
jira_user: Joi.string(),
jira_pass: Joi.string(),
bitbucket_username: Joi.string(),
bitbucket_password: Joi.string(),
bitbucket_server_username: Joi.string(),
bitbucket_server_password: Joi.string(),
librariesio_tokens: Joi.arrayFromString().items(Joi.string()),
Expand Down
Loading

0 comments on commit c13f5d6

Please sign in to comment.