Skip to content

Commit 4dd7217

Browse files
Release OpenProject 15.0.1
2 parents 9494b64 + 00c2bb5 commit 4dd7217

File tree

4 files changed

+57
-2
lines changed

4 files changed

+57
-2
lines changed

docs/release-notes/15-0-1/README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: OpenProject 15.0.1
3+
sidebar_navigation:
4+
title: 15.0.1
5+
release_version: 15.0.1
6+
release_date: 2024-11-13
7+
---
8+
9+
# OpenProject 15.0.1
10+
11+
Release date: 2024-11-13
12+
13+
We released OpenProject [OpenProject 15.0.1](https://community.openproject.org/versions/2157).
14+
The release contains several bug fixes and we recommend updating to the newest version.
15+
In these Release Notes, we will give an overview of important feature changes.
16+
At the end, you will find a complete list of all changes and bug fixes.
17+
18+
## Important feature changes
19+
20+
<!-- Inform about the major features in this section -->
21+
22+
## Important updates and breaking changes
23+
24+
<!-- Remove this section if empty, add to it in pull requests linking to tickets and provide information -->
25+
26+
<!--more-->
27+
28+
## Bug fixes and changes
29+
30+
<!-- Warning: Anything within the below lines will be automatically removed by the release script -->
31+
<!-- BEGIN AUTOMATED SECTION -->
32+
33+
- Bugfix: OpenID Connect Microsoft Entra: Tenant not correctly output \[[#59261](https://community.openproject.org/wp/59261)\]
34+
35+
<!-- END AUTOMATED SECTION -->
36+
<!-- Warning: Anything above this line will be automatically removed by the release script -->
37+
38+
## Contributions
39+
A very special thank you goes to our sponsors for this release.
40+
Also a big thanks to our Community members for reporting bugs and helping us identify and provide fixes.
41+
Special thanks for reporting and finding bugs go to Javier Valero Celada.
42+
43+
Last but not least, we are very grateful for our very engaged translation contributors on Crowdin, who translated quite a few OpenProject strings!
44+
Would you like to help out with translations yourself?
45+
Then take a look at our translation guide and find out exactly how you can contribute.
46+
It is very much appreciated!
47+

docs/release-notes/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ Stay up to date and get an overview of the new features included in the releases
1313
<!--- New release notes are generated below. Do not remove comment. -->
1414
<!--- RELEASE MARKER -->
1515

16+
## 15.0.1
17+
18+
Release date: 2024-11-13
19+
20+
[Release Notes](15-0-1/)
21+
22+
1623
## 15.0.0
1724

1825
Release date: 2024-11-13

lib/open_project/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module OpenProject
3333
module VERSION # :nodoc:
3434
MAJOR = 15
3535
MINOR = 0
36-
PATCH = 0
36+
PATCH = 1
3737

3838
class << self
3939
# Used by semver to define the special version (if any).

modules/openid_connect/app/models/openid_connect/provider/hash_builder.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def provider_specific_to_h
3939
}
4040
when "microsoft_entra"
4141
{
42-
use_graph_api:
42+
use_graph_api:,
43+
tenant:
4344
}
4445
else
4546
{}

0 commit comments

Comments
 (0)