1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
Commit Graph

1418 Commits

Author SHA1 Message Date
Ivar Conradi Østhus
5675f99e78
fix: add user-store (#590) 2020-05-12 23:05:26 +02:00
Ivar Conradi Østhus
49e0c0fa29 fix: upgrade unleash-frontend to 3.3.1 2020-05-12 23:04:13 +02:00
Ivar Conradi Østhus
e6f6b9ac18
fix: license year and company 2020-05-12 22:41:36 +02:00
Ivar Conradi Østhus
28439d5454
Chore: add dart sdk details 2020-05-06 08:12:18 +02:00
Ivar Conradi Østhus
7a60af2edb fix: pg dependency for db-migrate as well 2020-05-02 09:57:03 +02:00
Ivar Conradi Østhus
2d154c12c4 fix: support node 14 by upgrading pg to 8.0.3 2020-05-02 09:38:27 +02:00
Ivar Conradi Østhus
5600b3fd61 fix: we are not ready for node 14 2020-05-02 09:12:36 +02:00
Ivar Conradi Østhus
770336e181 fix: add missing await for node 14 2020-05-02 09:00:08 +02:00
Ivar Conradi Østhus
295bb28b29 fix: remove Procfile for Heroku 2020-05-02 08:02:10 +02:00
Ivar Conradi Østhus
13b92e07ce 3.3.2 2020-05-02 07:49:30 +02:00
Ivar Conradi Østhus
bfa9bd6e2a chore: update changelog.md 2020-05-02 07:48:59 +02:00
Ivar Conradi Østhus
7599553a90
fix: stop measure responsetime for unknown paths (#591) 2020-04-30 23:04:06 +02:00
Ivar Conradi Østhus
924edc8109 fix: expose evaluated config and permissions object
To make it easier to extend unleash we should expose
evaluated configuration.
2020-04-28 08:20:29 +02:00
Ivar Conradi Østhus
bf7a246707 fix: user should not crash if email is missing 2020-04-28 08:17:04 +02:00
Ivar Conradi Østhus
9f86bce0ab 3.3.1 2020-04-19 21:01:48 +02:00
Ivar Conradi Østhus
0d0ef2cc81 chore: update CHANGELOG 2020-04-19 21:00:59 +02:00
Ivar Conradi Østhus
2c90d3fbff chore: reduce log-level for metrics 2020-04-19 20:57:54 +02:00
Ivar Conradi Østhus
562321175d
fix: add users-table to store user details (#586) 2020-04-19 20:51:15 +02:00
Ivar Conradi Østhus
4b650bb73a fix: upgrade unleash-frontend to version 3.2.21 2020-04-19 20:26:41 +02:00
Hendy Irawan
1e9db236c4
fix: Support proper SSL settings using DATABASE_SSL (#585)
As described in https://node-postgres.com/features/ssl , `ssl` is an object which will be passed to Node TLS socket.
Also:

```
(node:1) DeprecationWarning: Implicit disabling of certificate verification is deprecated and will be removed in pg 8. Specify `rejectUnauthorized: true` to require a valid CA or `rejectUnauthorized: false` to explicitly opt out of MITM protection.
```

This change makes it possible to configure accepted SSL CA certificate, or to accept self-signed certificate.
2020-04-18 16:29:05 +02:00
Ivar Conradi Østhus
637c4f4643 fix: disable ssl for local postgres in dev 2020-04-14 22:29:45 +02:00
Ivar Conradi Østhus
d01c9d2dac
fix: use airbnb lint rules directly (#583)
This drops usage of finn-eslint rules as they are no
longer maintained.
2020-04-14 22:29:11 +02:00
Ivar Conradi Østhus
42da450a86 3.3.0 2020-04-13 23:05:40 +02:00
Ivar Conradi Østhus
780d53f9bf chore: update changelog 2020-04-13 23:05:08 +02:00
Ivar Conradi Østhus
ed076b809e
chore: update getting-started guide 2020-04-13 23:02:50 +02:00
Ivar Conradi Østhus
482a4daae6 fix: upgrade eslint to verson 6.8.0 2020-04-13 22:58:18 +02:00
Ivar Conradi Østhus
636270b54e fix: upgrade ava to version 3.7.0
closes #552
2020-04-13 22:53:06 +02:00
Ivar Conradi Østhus
4e45ae6b53 chore: update getting-started guide 2020-04-13 22:47:12 +02:00
greenkeeper[bot]
84b31c241b
fix: Update unleash-frontend to version 3.2.20 (#582)
* fix(package): update unleash-frontend to version 3.2.20

* chore(package): update lockfile yarn.lock

Co-authored-by: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>
2020-04-13 22:44:22 +02:00
Jessica Schalz
e42b0c7801
feat: Update "enableLegacyRoutes" to false (#580)
Defining "enableLegacyRoutes" as "true" is less secure than setting it to "false" by default, according to the documentation in "Securing Unleash" (https://unleash.github.io/docs/securing_unleash).
2020-04-13 22:43:14 +02:00
Ivar Conradi Østhus
2815ab0fd5 feat: require node >= 12 2020-04-13 22:42:31 +02:00
greenkeeper[bot]
e88450a008
fix: Update pg to the latest version 🚀 (#578)
* fix(package): update pg to version 8.0.0

* chore(package): update lockfile yarn.lock

Co-authored-by: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>
2020-04-13 22:39:17 +02:00
Ivar Conradi Østhus
b912768923
feat: move secrets to settings (#577)
* feat: move secrets to settings

* feat: Add better support for detailed db options.

Added db field in options to allow better control of
db-options. Especially important to allow special chars
in database password which might lead to an invaid url
when defined as a database-url.

* fix: integrate logger with knex logger

* fix: remove secret option from all examples

* fix: more options.js unit tests

* fix: added settings-store e2e tests
2020-04-13 22:38:46 +02:00
Mattias Lundell
0f73f09675
Fix: typo webpage (#579)
entperise -> enterprise
2020-03-31 19:19:35 +02:00
Ivar Conradi Østhus
333601eaea
fix: Logout should not be xhr call (#576)
closes #520
2020-03-29 22:22:19 +02:00
Tomek Marciniak
609142f47e
fix(readme): improve heroku 1 click deploy behavior (#575) 2020-03-29 20:14:24 +02:00
Richard Lee
67aea4ee78
chore: Fix typo in gogole-auth-hook example (#572) 2020-03-17 17:05:18 +01:00
dependabot[bot]
0679886360
chore(deps): bump acorn from 7.0.0 to 7.1.1 (#571)
Bumps [acorn](https://github.com/acornjs/acorn) from 7.0.0 to 7.1.1.
- [Release notes](https://github.com/acornjs/acorn/releases)
- [Commits](https://github.com/acornjs/acorn/compare/7.0.0...7.1.1)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-03-14 07:39:00 +01:00
Ivar Conradi Østhus
5d2a94d343 3.2.30 2020-03-10 15:22:57 +01:00
Ivar Conradi Østhus
7c26d4837b fix: upgrade unleash-frontend to version 3.2.19 2020-03-10 15:21:41 +01:00
Ivar Conradi Østhus
80a1d4f586 3.2.29 2020-03-05 22:49:21 +01:00
Ivar Conradi Østhus
e5d570af85 fix: lock knex to version 0.20.10
knex version 0.20.11 is currently breaking unleash.
2020-03-05 22:48:37 +01:00
Ivar Conradi Østhus
f8586269b7 fix: upgrade unleash-frontend to version 3.2.18 2020-03-05 17:10:00 +01:00
Ivar Conradi Østhus
e35de272fa 3.2.28 2020-02-28 14:58:44 +01:00
Ivar Conradi Østhus
76c71a81a9 chore: Update changelog 2020-02-28 14:57:37 +01:00
Ivar Conradi Østhus
aac12fbee8
fix: metrics for toggle count and version (#565) 2020-02-28 14:50:32 +01:00
Ivar Conradi Østhus
713da6e2fe fix: upgrade unleash-frontend to version 3.2.17 2020-02-27 23:17:12 +01:00
Ivar Conradi Østhus
5a893bb05d fix: upgrade unleash-frontend to version 3.2.16 2020-02-27 21:43:54 +01:00
Ivar Conradi Østhus
9db8ad58a3 fix: add settings column to postgres 2020-02-27 21:33:11 +01:00
Ivar Conradi Østhus
7a410508cb
feat: api supports context fields (#564)
* feat: api supports context fields

* fix: typo for cotnext group in event-differ
2020-02-27 21:26:18 +01:00