Commit graph

1114 commits

Author SHA1 Message Date
renovate[bot]
52b8a0de25
Update dependency release-it to v13 (#379)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-28 09:45:48 +01:00
renovate[bot]
8d6f45342d
Update dependency ember-math-helpers to v2.14.0 (#389)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-28 09:45:32 +01:00
renovate[bot]
fe3b7a5adb
Update dependency ember-cli-page-object to v1.16.2 (#357)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 21:56:17 +01:00
renovate[bot]
51875aae6e
Update dependency release-it to v12.6.3 (#372)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 21:05:47 +01:00
renovate[bot]
4151806fa9
Update dependency sass to v1.26.3 (#374)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 20:28:47 +01:00
renovate[bot]
ccfb68a591
Update dependency babel-eslint to v10.1.0 (#376)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 20:28:39 +01:00
renovate[bot]
e224356ded
Update dependency release-it-lerna-changelog to v2 (#381)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 20:28:31 +01:00
renovate[bot]
8860f26911
Update dependency fs-extra to v9 (#387)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-20 20:28:21 +01:00
renovate[bot]
a532f01343
Update dependency ember-math-helpers to v2.13.0 (#368)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 23:10:00 +01:00
renovate[bot]
7da8e37947
Update dependency ember-page-title to v5.2.1 (#365)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 23:09:53 +01:00
renovate[bot]
221bbad1b0
Update dependency ember-cli-flash to v1.8.1 (#377)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 22:19:54 +01:00
renovate[bot]
61bec460fd
Update dependency ember-test-selectors to v4 (#371)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 21:41:43 +01:00
renovate[bot]
9711e216e3
Update dependency ember-fetch to v7.0.1 (#370)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 21:41:35 +01:00
renovate[bot]
8e071f249f
Update dependency lerna-changelog to v1.0.1 (#378)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-16 21:41:25 +01:00
renovate[bot]
9452bda17c
Update dependency ember-intl to v4.2.4 (#360)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-02-26 23:53:00 +01:00
Jeldrik Hanschke
88089df7c0
Safari parses date-time strings without explicit time zone as UTC (#364)
Safari does not follow ES5 / ECMAScript 2015 date parsing rules. Per spec a date that has day + time but does not have an explicit time zone (e.g. "2019-01-01T00:00") should be parsed in local time. But Safari treats that one as UTC.
2020-01-31 21:45:58 +01:00
Jeldrik Hanschke
b386c45f92 Release 0.6.2 2020-01-31 20:29:03 +01:00
renovate[bot]
5c495527b8
Update dependency sass to v1.25.0 (#327)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-31 20:23:00 +01:00
Jeldrik Hanschke
a99d83d569
support absolute path for dataDir config option (#363) 2020-01-31 20:22:22 +01:00
Jeldrik Hanschke
8a62662e6e
migrate from ember-i18n to ember-intl (#358)
* mark string as html safe before passing to translation instead of bypassing HTML escape using {{{unsafe}}} syntax
* replace ember-i18n with ember-intl
2020-01-30 00:23:12 +01:00
renovate[bot]
c72a865289 Update dependency ember-composable-helpers to v3.1.0 (#350)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-22 20:14:27 +01:00
masterwendu
6043d23a42 run CI with GitHub Actions (#320)
All CI tests currently run in TravisCI are ported to GitHub Actions except for the BrowserStack tests.

TravisCI is kept in place for some transition period until we know GitHub Actions are working as expected. Also tests run on BrowserStack must be migrated to GitHub Actions before.
2020-01-22 19:55:43 +01:00
Jeldrik Hanschke
33886f3c4e
fix link to GitHub used in translated text (#355) 2020-01-21 22:16:21 +01:00
renovate[bot]
9b75f6d81e Update dependency flow/jsonpath to ^0.5.0 (#324)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-18 15:04:06 +01:00
renovate[bot]
809bb001d8 Update dependency ember-cli-bundlesize to ^0.3.0 (#347)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-18 12:30:43 +01:00
renovate[bot]
e3d0833d25 Update dependency ember-cli-clipboard to ^0.14.0 (#348)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-18 12:20:48 +01:00
renovate[bot]
f226db090b Update dependency babel-eslint to v10 (#351)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-18 12:18:39 +01:00
Jeldrik Hanschke
77afc0d9fa
remove implicit this usage in templates (#352)
This refactors references to values in templates from `{{foo}}` to either `{{this.foo}}` if it's a property of backing JavaScript class or `{{@foo}}` if it's passed in on invocation.

You could find more details on this change in Ember docs:
- [required `this` in templates](https://guides.emberjs.com/release/upgrading/current-edition/templates/#toc_required-this-in-templates)
- [named arguments](https://guides.emberjs.com/release/upgrading/current-edition/templates/#toc_named-arguments)

While doing this I noticed that `<PollEvaluationSummaryOption>` component could be easily refactored to a template-only component. Done it as part of this pull request even so it's technically not related.
2020-01-18 12:17:06 +01:00
Jeldrik Hanschke
c9482786c1
refactor to native ECMAScript classes (#344)
Replaces Ember's old object model by native ECMAScript classes. Mostly automated with ember-native-class-codemod.
2020-01-18 10:13:50 +01:00
Jeldrik Hanschke
9983f76189
refactor form steps implementation (#345) 2020-01-13 17:13:23 +01:00
renovate[bot]
9dae6eda0a Update dependency ember-bootstrap to v3.1.1 (#341)
Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
2020-01-10 00:25:33 +01:00
Jeldrik Hanschke
061b9a0d4a
use ember data modules for import (#340) 2020-01-08 15:58:52 +01:00
Jeldrik Hanschke
18ba1b6bbc
convert component invocation to angle brackets (#339) 2020-01-08 15:58:10 +01:00
Jeldrik Hanschke
7e784434b6
Upgrade Ember to 3.15 and other deps (#338) 2020-01-08 15:57:46 +01:00
Jeldrik Hanschke
efdc208772 Release 0.6.1 2020-01-05 23:08:44 +01:00
Jeldrik Hanschke
c7a1ad4473
do not include self-reference . folder release archive (#337) 2020-01-05 22:00:16 +01:00
Jeldrik Hanschke
811a388c95 Release 0.6.0 2020-01-05 16:51:43 +01:00
Jeldrik Hanschke
0ace28ed10
Merge pull request #336 from jelhan/renovate/ember-composable-helpers-3.x-lockfile
Update dependency ember-composable-helpers to v3.0.3
2020-01-05 15:38:13 +01:00
Jeldrik Hanschke
be5833bfa0
test should not depend on time zone (#335)
This hopefully fixes the flickering tests in Safari.
2020-01-05 15:37:06 +01:00
Jeldrik Hanschke
da16d8d199
Add and delete buttons should indicate focus (#332)
Add and delete buttons used for option creation don't have any text (except
for screenreader) but only an icon. Open Iconic uses a display: inline-block
for icons as default. But that one prevents text decoration from being applied.
Since text decoration is used to visually indicate focus, that's a serious
accessibility issue.

Closes #293
2020-01-05 15:36:54 +01:00
Renovate Bot
6f6c6e651f
Update dependency ember-composable-helpers to v3.0.3 2020-01-05 09:41:19 +00:00
Jeldrik Hanschke
5e5dbe84db test should not depend on time zone
This hopefully fixes the flickering tests in Safari.
2020-01-03 14:25:37 +01:00
Jeldrik Hanschke
31118748ce
improve spanish translation (#333)
Accordingly to a spanish user the translation for validation error "Times
must be explicit" should be "Horas deben ser explícitas". Changed the
template accordingly. Hopefully that also makes sense for other unique
validations.

Closes #311
2020-01-03 13:41:31 +01:00
Jeldrik Hanschke
87e2dd15ba
add separate section for i18n to changelog (#334) 2020-01-03 13:40:57 +01:00
Jeldrik Hanschke
3d48c221a0
use specialised button for saving (#331)
Adds a <SaveButton> component that renders a save button similar to
<NextButton> but using a special icon that helps to distinguish both.

Also removes the block mode for <NextButton> component and some arguments
that aren't needed anymore.

Closes #294
2020-01-02 17:13:36 +01:00
renovate[bot]
8eb37c250d Update dependency ember-math-helpers to v2.12.1 (#328) 2020-01-02 12:02:39 +01:00
renovate[bot]
c8704c6885 Update dependency lerna-changelog to v1 (#321) 2020-01-02 10:26:58 +01:00
renovate[bot]
a4ad6e1a4b Update dependency ember-cli-mirage to v1.1.6 (#322) 2020-01-02 10:12:11 +01:00
renovate[bot]
4db4497cde Update dependency eslint-plugin-node to v11 (#329) 2020-01-02 10:11:13 +01:00
Jeldrik Hanschke
0544cdfe45
fix typo in german translation (#325)
s/behälst/behältst/
2019-12-18 19:44:26 +01:00