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

Fix middleware #27

Merged
merged 3 commits into from
Oct 24, 2022
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [0.3.19](https://github.com/eea/volto-searchlib/compare/0.3.18...0.3.19) - 24 October 2022

#### :hammer_and_wrench: Others

- Fix middleware [kreafox - [`0087880`](https://github.com/eea/volto-searchlib/commit/00878806d325aaabb453b5bc39bbfa3e1faaa4ba)]
### [0.3.18](https://github.com/eea/volto-searchlib/compare/0.3.17...0.3.18) - 19 October 2022

#### :hammer_and_wrench: Others
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-searchlib",
"version": "0.3.18",
"version": "0.3.19",
"description": "@eeacms/volto-searchlib: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const applyConfig = (config) => {
middleware.id = 'esProxyMiddleware';

config.settings.expressMiddleware = [
middleware,
...config.settings.expressMiddleware,
middleware,
];
}
return config;
Expand Down