Skip to content

Commit f06d452

Browse files
authored
Merge pull request #460 from crowi/wip-v1.7.8
Prepare v1.7.8
2 parents a75cc1a + b89c7f6 commit f06d452

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGES
22
========
33

4-
## 1.7.7
4+
## 1.7.8
55

66
- Feature: Recently viewd page list appears when focus on search bar (#415)
77
- Feature: Rebuild search index without downtime (#406)
@@ -15,6 +15,10 @@ CHANGES
1515
- Fix: Update config correctly even run Crowi with multiple servers (#435)
1616
- and some fixes. (Thank you @okonomi, @inductor, @potato4d
1717

18+
## 1.7.7
19+
20+
- Release revoked.
21+
1822
## 1.7.6
1923
- Fix: error occurs in admin/share page after a shared page was completely deleted (#393)
2024
- Improve: Resize profile image before upload (#400)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:8.11.2
22

33
ARG NODE_ENV="production"
44

5-
ENV CROWI_VERSION v1.7.7
5+
ENV CROWI_VERSION v1.7.8
66
ENV NODE_ENV ${NODE_ENV}
77

88
WORKDIR /crowi

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Crowi - Empower the team with sharing your knowledge.
44
================================================================
55

66

7-
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/crowi/crowi/tree/v1.7.7)
7+
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/crowi/crowi/tree/v1.7.8)
88

99
[![Circle CI](https://circleci.com/gh/crowi/crowi.svg?style=svg)](https://circleci.com/gh/crowi/crowi)
1010
[![Docker Pulls](https://img.shields.io/docker/pulls/crowi/crowi.svg)](https://hub.docker.com/r/crowi/crowi)

lib/util/middlewares.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exports.loginChecker = function(crowi, app) {
1111

1212
// session に user object が入ってる
1313
if (req.session.user && '_id' in req.session.user) {
14-
User.findById(req.session.user._id, '+password', function(err, userData) {
14+
User.findById(req.session.user._id, '+password +apiToken', function(err, userData) {
1515
if (err) {
1616
next()
1717
} else {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crowi",
3-
"version": "1.7.7",
3+
"version": "1.7.8",
44
"description": "The simple & powerful Wiki",
55
"tags": [
66
"wiki",

0 commit comments

Comments
 (0)