Commit graph

5012 commits

Author SHA1 Message Date
Tilman Vatteroth
ca5dae3f82 Add new visit functions in e2e tests
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-01-30 22:13:41 +01:00
Philip Molares
566b3009b6
feat: sort tags alphabetically (#1818)
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2022-01-30 22:10:30 +01:00
Erik Michelson
e671aa4aa8
Fix netlify not using aliases containing a slash (#1819) 2022-01-30 21:57:58 +01:00
Renovate Bot
baa6606729 chore(deps): update dependency mkdocs-material to v8.1.9
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-30 11:20:21 +00:00
Renovate Bot
fa0bea492e Update dependency copy-webpack-plugin to v10.2.3
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 18:59:06 +01:00
Renovate Bot
407bd27617 chore(deps): update dependency eslint-plugin-jest to v26
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 17:21:30 +01:00
Renovate Bot
84320f6203 fix(deps): update dependency @nestjs/swagger to v5.2.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 17:20:42 +01:00
Renovate Bot
d249263632 chore(deps): update dependency eslint to v8.8.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 17:20:13 +01:00
Renovate Bot
18b265cf09 fix(deps): update dependency joi to v17.6.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 17:13:18 +01:00
Renovate Bot
98d3abd4ef Update dependency netlify-cli to v8.15.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 12:57:17 +01:00
Renovate Bot
3a01e0803f Update dependency eslint to v8.8.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 12:51:46 +01:00
Renovate Bot
472452115d fix(deps): update dependency @types/minio to v7.0.12
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 05:35:47 +00:00
Renovate Bot
bb81873229 chore(deps): update linters to v5.10.1
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 03:58:46 +00:00
Renovate Bot
05d0591386 Update i18next
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 20:56:40 +01:00
Renovate Bot
822b1f3d86 Update dependency @fontsource/source-sans-pro to v4.5.2
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 20:52:04 +01:00
Renovate Bot
70ee5c1b21 Update nextjs monorepo to v12.0.9
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 20:47:16 +01:00
Renovate Bot
fcf0303ae5 Update linters
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 20:46:59 +01:00
Renovate Bot
cf0d0e37bb Update dependency @redux-devtools/core to v3.11.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 20:11:35 +01:00
Renovate Bot
3c7a4ba021 Update dependency dompurify to v2.3.5
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 19:28:18 +01:00
Renovate Bot
c57643ea14 Update dependency abcjs to v6.0.0-beta.37
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 19:21:59 +01:00
Renovate Bot
6502629209 Lock file maintenance
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 19:16:37 +01:00
Renovate Bot
40ee647dae Update dependency netlify-cli to v8.14.1
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-28 19:06:30 +01:00
David Mehren
ac1cdc63e0 style(e2e-tests): remove unused imports
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
4499ad4d96 test(e2e/public/alias): code cleanup
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
54eefa9f6b feat(test-setup): create notes in withUsers
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
d1dbd1bb22 feat(test-setup): restructure to synchronous builder
The previous pattern used async methods for the builder pattern,
which were hideous to use when chained multiple times.

This extracts the builder into a separate class
and uses normal functions in the builder.
These queue async functions in arrays, which are executed
at the correct time, when the new async `build` function is called.

Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
8f1aeab934 test(e2e/public/alias): test all error scenarios
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
64b136fb8b test(e2e/public/alias): use real authentication
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
28bd07597a test: create auth tokens in testSetup
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
ff500f1be0 test: allow disabling mocked authentication
This adds a (default true) parameter `withMockAuth` to the
TestSetup class.
If it is false, the TokenAuthGuard is not overridden with a mock
implementation, allowing to test with the real authentication.

Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
bcb75a1d04 build(eslint): allow numbered agent objects
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
ae52f70ef9 test(e2e/private/alias): test all error scenarios
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
b2802d4c29 test(e2e/private/alias): use testSetup with users
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
2096e23e35 test: allow creating testSetup with users
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
David Mehren
8cfe4896bc test: cleanup test_uploads folders
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-27 21:05:17 +01:00
Erik Michelson
6e1847d1e9
deployments: Fix main branch deployment and overrides (#1801)
* Use different environment per PR

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Fix main deployment by using CI-aware build script

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Use PR title and number in netlify deployment list

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Use exec

Signed-off-by: Erik Michelson <github@erik.michelson.eu>
2022-01-27 17:55:01 +01:00
Erik Michelson
523701b3d2 Add netlify deployments for PRs
Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
2022-01-26 19:00:56 +01:00
Tilman Vatteroth
b30cc5b390
Move toolbar functions into redux reducer (#1763)
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-01-26 17:14:28 +01:00
Renovate Bot
a6a2251c88 Lock file maintenance
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-24 21:08:08 +01:00
Renovate Bot
90cc5b3f9f chore(deps): lock file maintenance
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-24 01:34:17 +00:00
David Mehren
8ea28bf1c7 ci(eslint): fail on warnings
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-23 23:01:45 +01:00
David Mehren
bf743b4266 build(eslint): disable return type warnings in tests
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-23 23:01:45 +01:00
David Mehren
898abc08f3 style: remove unused variables
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-23 23:01:45 +01:00
David Mehren
91eba0d3af
Update mailmap and AUTHORS
Signed-off-by: David Mehren <git@herrmehren.de>
2022-01-23 22:13:54 +01:00
Renovate Bot
d6ebc85ebf
chore(deps): update linters to v5.10.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:34:22 +00:00
Renovate Bot
aa61f7f987
fix(deps): update nestjs packages
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:33:55 +00:00
Renovate Bot
ba883c1ede
chore(deps): update dependency typescript to v4.5.5
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:33:38 +00:00
Renovate Bot
e4a906a525
chore(deps): update dependency supertest to v6.2.2
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:32:03 +00:00
Renovate Bot
886eac2b13
chore(deps): update dependency http-proxy-middleware to v2.0.2
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:31:43 +00:00
Renovate Bot
4b048cb62f
chore(deps): update dependency mkdocs-material to v8.1.8
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-01-23 19:31:48 +00:00