summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md12
-rw-r--r--Stackerfile.yml2
-rw-r--r--client/components/boards/boardsList.js2
-rw-r--r--client/components/main/layouts.js10
-rw-r--r--package.json2
-rw-r--r--sandstorm-pkgdef.capnp4
-rw-r--r--server/header-login.js10
7 files changed, 30 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a17c8d1d..95bff021 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# v2.47 2019-03-14 Wekan release
+
+This release fixes the following bugs, thanks to GitHub user xet7:
+
+- [Remove ordering of cards by starred/color/description, so that cards would not reorder all the time](https://github.com/wekan/wekan/issues/2241).
+- Try to fix [LDAP Login: "Login forbidden", ReferenceError: req is not defined](https://github.com/wekan/wekan-ldap/44).
+
# v2.46 2019-03-13 Wekan release
This release fixes the following bugs:
@@ -8,7 +15,7 @@ This release fixes the following bugs:
because of feedback from Wekan users, that need Subtask boards to be visible.
Thanks to xet7.
-Thanks to above GitHub users and translators for their translations.
+Thanks to above GitHub users for their contributions and translators for their translations.
# v2.45 2019-03-11 Wekan release
@@ -37,7 +44,7 @@ and fixes the following bugs:
Thanks to andresmanelli.
- Try to fix [Order All Boards by starred, color, board name and board description. Part 2](https://github.com/wekan/wekan/commit/8f337f17e45f8af8d96b6043d54466e5878b7e0b).
Works on new Wekan install. Could still have boards keeping reording happening all the time on old Wekan installs.
- Thanks to xet7.
+ Thanks to xet7. Note: Ordering by starred/color/description was removed at Wekan v2.47.
- [Changed brute force protection package from eluck:accounts-lockout to lucasantoniassi:accounts-lockout that is maintained and works.
Added Snap/Docker/Source settings](https://github.com/wekan/wekan/commit/b7c000b78b9af253fb115bbfa5ef0d4c0681abbb).
Thanks to xet7.
@@ -50,6 +57,7 @@ This release adds the following new features, thanks to xet7:
- [Hide Subtask boards from All Boards](https://github.com/wekan/wekan/issues/1990). This was reverted in Wekan v2.46 to make Subtask boards visible again.
- [Order All Boards by Starred, Color, Title and Description](https://github.com/wekan/wekan/commit/856872815292590e0c4eff2848ea1b857a318dc4).
+ This was removed at Wekan v2.47.
- [HTTP header automatic login](https://github.com/wekan/wekan/commit/ff825d6123ecfd033ccb08ce97c11cefee676104)
for [3rd party authentication server method](https://github.com/wekan/wekan/issues/2019) like siteminder, and any webserver that
handles authentication and based on it adds HTTP headers to be used for login. Please test.
diff --git a/Stackerfile.yml b/Stackerfile.yml
index 3b0fdd60..2557ac42 100644
--- a/Stackerfile.yml
+++ b/Stackerfile.yml
@@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
-appVersion: "v2.46.0"
+appVersion: "v2.47.0"
files:
userUploads:
- README.md
diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js
index ad5ee551..3aacdedb 100644
--- a/client/components/boards/boardsList.js
+++ b/client/components/boards/boardsList.js
@@ -25,7 +25,7 @@ BlazeComponent.extendComponent({
archived: false,
'members.userId': Meteor.userId(),
type: 'board',
- }, { sort: [['stars', 'desc'], ['color', 'asc'], ['title', 'asc'], ['description', 'asc'], ['_id', 'asc']] });
+ }, { sort: ['title'] });
},
isStarred() {
const user = Meteor.user();
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js
index 4305de7c..d5b59b5f 100644
--- a/client/components/main/layouts.js
+++ b/client/components/main/layouts.js
@@ -105,10 +105,10 @@ async function authentication(event, instance) {
// If header login id is set, use it for login.
// Header username = Email address
// Header password = Login ID
- // Not user currently: req.headers[process.env.HEADER_LOGIN_FIRSTNAME]
- // and req.headers[process.env.HEADER_LOGIN_LASTNAME]
- const match = req.headers[process.env.HEADER_LOGIN_EMAIL] || $('#at-field-username_and_email').val();
- const password = req.headers[process.env.HEADER_LOGIN_ID] || $('#at-field-password').val();
+ // Not user currently: request.headers[Meteor.settings.public.headerLoginFirstname]
+ // and request.headers[Meteor.settings.public.headerLoginLastname]
+ const match = request.headers[Meteor.settings.public.headerLoginEmail] || $('#at-field-username_and_email').val();
+ const password = request.headers[Meteor.settings.public.headerLoginId] || $('#at-field-password').val();
if (!match || !password) return;
@@ -117,7 +117,7 @@ async function authentication(event, instance) {
if (result === 'password') return;
// If header login id is not set, don't try to login automatically.
- if (!process.env.HEADER_LOGIN_ID) {
+ if (!Meteor.settings.public.headerLoginId) {
// Stop submit #at-pwd-form
event.preventDefault();
event.stopImmediatePropagation();
diff --git a/package.json b/package.json
index 92829eb6..0f125899 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "v2.46.0",
+ "version": "v2.47.0",
"description": "Open-Source kanban",
"private": true,
"scripts": {
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index d0f43f91..fe17cca2 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 248,
+ appVersion = 249,
# Increment this for every release.
- appMarketingVersion = (defaultText = "2.46.0~2019-03-13"),
+ appMarketingVersion = (defaultText = "2.47.0~2019-03-14"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/server/header-login.js b/server/header-login.js
new file mode 100644
index 00000000..51144c2d
--- /dev/null
+++ b/server/header-login.js
@@ -0,0 +1,10 @@
+Meteor.startup(() => {
+
+ if ( process.env.HEADER_LOGIN_ID ) {
+ Meteor.settings.public.headerLoginId = process.env.HEADER_LOGIN_ID;
+ Meteor.settings.public.headerLoginEmail = process.env.HEADER_LOGIN_EMAIL;
+ Meteor.settings.public.headerLoginFirstname = process.env.HEADER_LOGIN_FIRSTNAME;
+ Meteor.settings.public.headerLoginLastname = process.env.HEADER_LOGIN_LASTNAME;
+ }
+
+});