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

build(release): 6.4.0 #914

Merged
merged 2 commits into from
Dec 3, 2024
Merged
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
21 changes: 0 additions & 21 deletions .php_cs-fixer.dist.php

This file was deleted.

26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@
# Changelog
All notable changes to this project will be documented in this file.

## 6.4.0

### Added

* [Feat(groups): add setting display name to group backend (user_saml#855)](https://github.com/nextcloud/user_saml/pull/855)
* [Feat(PassthroughParameters): Make it possible to pass through parameters to the SAML library (user_saml#901)](https://github.com/nextcloud/user_saml/pull/901)

### Fixed

* [Fix(settings): Fix settings name (user_saml#903)](https://github.com/nextcloud/user_saml/pull/903)
* [Fix(Controller): make redirectUrl optional (user_saml#905)](https://github.com/nextcloud/user_saml/pull/905)
* [Fix(UI): fix usage of $.ajax by going VanillaJS (user_saml#913)](https://github.com/nextcloud/user_saml/pull/913)

### Dependencies

* [Build(deps): bump firebase/php-jwt from 6.10.1 to 6.10.2 in /3rdparty (user_saml#908)](https://github.com/nextcloud/user_saml/pull/908)
* [Deps(php-saml): apply PHP 8.4 compat patch (user_saml#912)](https://github.com/nextcloud/user_saml/pull/912)

### Under the hood

* [Refactor: small adjustments not impacting functionalities (user_saml#896)](https://github.com/nextcloud/user_saml/pull/896)
* [Build(deps-dev): bump nextcloud/coding-standard from 1.3.1 to 1.3.2 (user_saml#899)](https://github.com/nextcloud/user_saml/pull/899)
* [Build(deps-dev): bump behat/behat from 3.14.0 to 3.15.0 in /tests/integration (user_saml#900)](https://github.com/nextcloud/user_saml/pull/900)* [Build(deps-dev): bump nextcloud/coding-standard from 1.3.1 to 1.3.2 (user_saml#899)](https://github.com/nextcloud/user_saml/pull/899)
* [Refactor: Apply code best practices PHP8+ (user_saml#907)](https://github.com/nextcloud/user_saml/pull/907)
* [Build(deps): cleanup composer (user_saml#909)](https://github.com/nextcloud/user_saml/pull/909)

## 6.3.0

### Added
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ appstore: clean
--exclude=.github \
--exclude=.gitignore \
--exclude=.git-blame-ignore-revs \
--exclude=.php-cs-fixer.dist.php \
--exclude=.scrutinizer.yml \
--exclude=.travis.yml \
--exclude=.tx \
Expand All @@ -42,10 +43,12 @@ appstore: clean
--exclude=/issue_template.md \
--exclude=/l10n/l10n.pl \
--exclude=/Makefile \
--exclude=/psalm.xml \
--exclude=/README.md \
--exclude=/screenshots \
--exclude=/tests \
--exclude=/translationfiles \
--exclude=/vendor/cweagens \
$(project_dir)/ $(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following providers are supported and tested at the moment:
* Any other provider that authenticates using the environment variable

While theoretically any other authentication provider implementing either one of those standards is compatible, we like to note that they are not part of any internal test matrix.]]></description>
<version>6.3.0</version>
<version>6.4.0</version>
<licence>agpl</licence>
<author>Lukas Reschke</author>
<namespace>User_SAML</namespace>
Expand Down
Loading