Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.5.1 #155

Merged
merged 1 commit into from
May 27, 2024
Merged

2.5.1 #155

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2.5.1

- ignore null user on logout
- compat nc29

## 2.5.0

- compat nc28

## 2.3.0

- new session is now generated on slave when using user_saml
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ build_dir=$(CURDIR)/build/artifacts
source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
version+=2.3.1

all: appstore

Expand Down Expand Up @@ -62,5 +61,5 @@ release:
--exclude=/Makefile \
--exclude=.drone.yml \
$(project_dir)/ $(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name)-$(version).tar.gz \
tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Global Site Selector</name>
<summary>Nextcloud Portal to redirect users to the right instance</summary>
<description>The Global Site Selector allows you to run multiple small Nextcloud instances and redirect users to the right server</description>
<version>2.5.0</version>
<version>2.5.1</version>
<licence>agpl</licence>
<author>Bjoern Schiessle</author>
<author>Maxence Lange</author>
Expand All @@ -17,7 +17,7 @@
<bugs>https://github.com/nextcloud/globalsiteselector/issues</bugs>
<repository>https://github.com/nextcloud/globalsiteselector</repository>
<dependencies>
<nextcloud min-version="28" max-version="28"/>
<nextcloud min-version="28" max-version="29"/>
</dependencies>
<background-jobs>
<job>OCA\GlobalSiteSelector\BackgroundJobs\UpdateLookupServer</job>
Expand Down
Loading