Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add note about `X-Forwarded-Proto` to 1.7.0 release notes | David Mehren | 2020-12-21 | 1 | -0/+4 |
| | | | | | | This header needs to be set correctly if the reverse proxy terminates TLS, otherwise we don't send cookies. Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | Merge release notes of 1.7.0-rc1 and rc2 into 1.7.0 | David Mehren | 2020-12-21 | 1 | -9/+3 |
| | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | Update yarn.lock | David Mehren | 2020-12-21 | 1 | -125/+57 |
| | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | Merge pull request #632 from hedgedoc/webpack-css-contenthash | David Mehren | 2020-12-21 | 1 | -1/+4 |
|\ | | | | | Generate CSS filenames with contenthash | ||||
| * | Generate CSS filenames with contenthash | David Mehren | 2020-12-21 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | Previously, .css files always had the same name, which can lead to caching problems. In our case, the new CSS for the HedgeDoc logo was not loaded when Chrome had the 1.6.0 CSS in the cache, leading the HedgeDoc logo filling the whole screen. This commit adds the contenthash to the .css files generated by webpack, which ensures that changed files are always loaded. References: https://github.com/webpack-contrib/mini-css-extract-plugin#filename https://webpack.js.org/configuration/output/#outputfilename Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | Merge pull request #633 from hedgedoc/fix-features-pdf-embed | David Mehren | 2020-12-21 | 1 | -1/+2 |
|\ \ | | | | | | | Fix broken PDF embed in features page & explain embedding problems | ||||
| * | | Fix broken PDF embed in features page & explain embedding problems | David Mehren | 2020-12-21 | 1 | -1/+2 |
|/ / | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | Merge pull request #629 from hedgedoc/renovate/less-3.x | David Mehren | 2020-12-21 | 2 | -5/+18 |
|\| | | | | | Update dependency less to v3.13.1 | ||||
| * | Update dependency less to v3.13.1 | Renovate Bot | 2020-12-18 | 2 | -5/+18 |
| | | | | | | | | Signed-off-by: Renovate Bot <bot@renovateapp.com> | ||||
* | | Merge pull request #627 from hedgedoc/renovate/copy-webpack-plugin-6.x | David Mehren | 2020-12-21 | 2 | -5/+5 |
|\ \ | |/ |/| | Update dependency copy-webpack-plugin to v6.4.1 | ||||
| * | Update dependency copy-webpack-plugin to v6.4.1 | Renovate Bot | 2020-12-16 | 2 | -5/+5 |
|/ | | | | Signed-off-by: Renovate Bot <bot@renovateapp.com> | ||||
* | Merge pull request #625 from hedgedoc/apache-docs | Yannick Bungers | 2020-12-13 | 1 | -1/+27 |
|\ | |||||
| * | Fix typo in reverse proxy docs | David Mehren | 2020-12-13 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Document reverse proxy config for Apache | David Mehren | 2020-12-13 | 1 | -0/+26 |
|/ | | | | | | As we found out in #616, Apache does not set the `X-Forwarded-Proto` header, which is now required because we switched to secure cookies in 383d791a50919bb9890a3f3f797ecc95125ab8bf. Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | Merge pull request #622 from hedgedoc/renovate/less-3.x | David Mehren | 2020-12-13 | 2 | -5/+5 |
|\ | | | | | Update dependency less to v3.13.0 | ||||
| * | Update dependency less to v3.13.0 | Renovate Bot | 2020-12-12 | 2 | -5/+5 |
|/ | | | | Signed-off-by: Renovate Bot <bot@renovateapp.com> | ||||
* | Merge pull request #619 from hedgedoc/renovate/copy-webpack-plugin-6.x | David Mehren | 2020-12-11 | 2 | -5/+5 |
|\ | | | | | Update dependency copy-webpack-plugin to v6.4.0 | ||||
| * | Update dependency copy-webpack-plugin to v6.4.0 | Renovate Bot | 2020-12-07 | 2 | -5/+5 |
|/ | | | | Signed-off-by: Renovate Bot <bot@renovateapp.com> | ||||
* | Merge pull request #613 from nidico/patch-1 | David Mehren | 2020-12-03 | 1 | -3/+3 |
|\ | | | | | Fix some typos in history.md | ||||
| * | Fix some typos in history.md | Nicolas Dietrich | 2020-12-01 | 1 | -3/+3 |
| | | |||||
* | | Release 1.7.0-rc2 | David Mehren | 2020-12-02 | 3 | -2/+10 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | Update yarn.lock | David Mehren | 2020-12-02 | 1 | -3/+3 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | Merge pull request #609 from hedgedoc/fix/oauth2-auth | David Mehren | 2020-12-02 | 1 | -12/+19 |
|\ \ | | | | | | | Fix crash when OAuth2 config parameters are missing | ||||
| * | | Fix crash when OAuth2 config parameters are missing | David Mehren | 2020-11-30 | 1 | -12/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the optional config options `config.oauth2.userProfileIdAttr` or `config.oauth2.rolesClaim` were not set, `String.split` was called on `undefined`, triggering a crash. This commit adds handling of these cases and improves error logging in `checkAuthorization`. Fixes #608 Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | | Merge pull request #610 from hedgedoc/fix/migration-error-message | David Mehren | 2020-12-02 | 10 | -9/+33 |
|\ \ \ | |||||
| * | | | Add missing catch | Tilman Vatteroth | 2020-12-02 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
| * | | | Catch more errors | Tilman Vatteroth | 2020-12-02 | 9 | -10/+31 |
| | | | | | | | | | | | | | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
| * | | | [Migrations] Replace similar code | Tilman Vatteroth | 2020-11-30 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
| * | | | [Migrations] Add variant of error message to catch block | Tilman Vatteroth | 2020-11-30 | 1 | -1/+4 |
| |/ / | | | | | | | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
* | | | Merge pull request #614 from hedgedoc/update-pr-template-labels | David Mehren | 2020-12-02 | 4 | -4/+4 |
|\ \ \ | | | | | | | | | Update issue templates to use the new labels | ||||
| * | | | Update issue templates to use the new labels | David Mehren | 2020-12-01 | 4 | -4/+4 |
|/ / / | | | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | | Merge pull request #605 from hedgedoc/YunoHost-link-update | David Mehren | 2020-12-01 | 1 | -2/+2 |
|\ \ \ | |_|/ |/| | | Update yunohost.md | ||||
| * | | Update yunohost.md | ericgaspar | 2020-11-30 | 1 | -2/+2 |
| |/ | | | | | | | | | | | | | | | Signed-off-by: ericgaspar <junk.eg@free.fr> Upgrade YunoHost doc link Signed-off-by: ericgaspar <junk.eg@free.fr> | ||||
* | | Merge pull request #611 from hedgedoc/fix/renovate-label | David Mehren | 2020-11-30 | 1 | -1/+1 |
|\ \ | |/ |/| | Change label used by renovate to "type: maintenance" | ||||
| * | Change label used by renovate to "type: maintenance" | Tilman Vatteroth | 2020-11-30 | 1 | -1/+1 |
|/ | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
* | Merge pull request #401 from hedgedoc/wip_release/1.6.1 | David Mehren | 2020-11-29 | 4 | -242/+149 |
|\ | |||||
| * | Changelog for 1.7.0-rc1 | David Mehren | 2020-11-29 | 1 | -0/+86 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Bump Version to 1.7.0-rc1 | David Mehren | 2020-11-29 | 2 | -2/+2 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Update yarn.lock | David Mehren | 2020-11-29 | 1 | -240/+61 |
|/ | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | Merge pull request #597 from hedgedoc/fix/install-docs | David Mehren | 2020-11-29 | 2 | -26/+17 |
|\ | |||||
| * | Document that Git can also be used to checkout releases. | David Mehren | 2020-11-27 | 1 | -1/+2 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Mention that the database connection string needs an absolute path to the ↵ | David Mehren | 2020-11-27 | 1 | -1/+1 |
| | | | | | | | | | | | | SQLite file Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Replace mentions of `config.js` with `config.json` | David Mehren | 2020-11-27 | 1 | -3/+3 |
| | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | Update manual install docs for 1.7 | David Mehren | 2020-11-27 | 1 | -22/+12 |
| | | | | | | | | | | | | | | Starting with 1.7, releases include the frontend bundle. This commit updates the docs accordingly. Signed-off-by: David Mehren <git@herrmehren.de> | ||||
* | | Merge pull request #571 from hedgedoc/improve/authors | Yannick Bungers | 2020-11-27 | 2 | -10/+139 |
|\ \ | |||||
| * | | Update .mailmap and AUTHORS | David Mehren | 2020-11-27 | 2 | -9/+24 |
| | | | | | | | | | | | | Signed-off-by: David Mehren <git@herrmehren.de> | ||||
| * | | Generate new AUTHORS file | Tilman Vatteroth | 2020-11-27 | 1 | -8/+122 |
|/ / | | | | | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> | ||||
* | | Update el.json (POEditor.com) | Sheogorath | 2020-11-27 | 1 | -102/+129 |
| | | |||||
* | | Update cs.json (POEditor.com) | Sheogorath | 2020-11-27 | 1 | -119/+129 |
| | | |||||
* | | Update eo.json (POEditor.com) | Sheogorath | 2020-11-27 | 1 | -102/+129 |
| | |