Skip to content

Commit 37d1455

Browse files
authored
Merge pull request #428 from ember-bootstrap/upgrade-with-ember-cli-blueprints-6-4
upgrade with Ember CLI 6.4 blueprints
2 parents 3911b90 + 4769b68 commit 37d1455

File tree

24 files changed

+610
-409
lines changed

24 files changed

+610
-409
lines changed

.eslintignore

Lines changed: 0 additions & 14 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 56 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,5 @@
1414
/testem.log
1515
/yarn-error.log
1616

17-
# ember-try
18-
/.node_modules.ember-try/
19-
/npm-shrinkwrap.json.ember-try
20-
/package.json.ember-try
21-
/package-lock.json.ember-try
22-
/yarn.lock.ember-try
23-
2417
# broccoli-debug
2518
/DEBUG/

.npmignore

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
/.ember-cli
88
/.env*
99
/.eslintcache
10-
/.eslintignore
11-
/.eslintrc.js
1210
/.git/
1311
/.github/
1412
/.gitignore
@@ -17,22 +15,14 @@
1715
/.stylelintignore
1816
/.stylelintrc.js
1917
/.template-lintrc.js
20-
/.travis.yml
2118
/.watchmanconfig
2219
/CONTRIBUTING.md
2320
/ember-cli-build.js
21+
/eslint.config.mjs
2422
/testem.js
2523
/tests/
2624
/tsconfig.declarations.json
2725
/tsconfig.json
2826
/yarn-error.log
2927
/yarn.lock
3028
.gitkeep
31-
32-
# ember-try
33-
/.node_modules.ember-try/
34-
/npm-shrinkwrap.json.ember-try
35-
/package.json.ember-try
36-
/package-lock.json.ember-try
37-
/yarn.lock.ember-try
38-
/node-tests

.prettierignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
/coverage/
99
!.*
1010
.*/
11-
12-
# ember-try
13-
/.node_modules.ember-try/
11+
/pnpm-lock.yaml
12+
ember-cli-update.json
13+
*.html

.prettierrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
'use strict';
22

33
module.exports = {
4+
plugins: ['prettier-plugin-ember-template-tag'],
45
overrides: [
56
{
6-
files: '*.{js,ts}',
7+
files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
78
options: {
89
singleQuote: true,
10+
templateSingleQuote: false,
911
},
1012
},
1113
],

.stylelintignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33

44
# compiled output
55
/dist/
6-
7-
# addons
8-
/.node_modules.ember-try/

.stylelintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
22

33
module.exports = {
4-
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
4+
extends: ['stylelint-config-standard'],
55
};

CHANGELOG.md

Lines changed: 57 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,130 @@
1-
2-
3-
4-
51
## v5.0.0 (2023-02-24)
62

73
Releasing latest RC (v5.0.0-0) as stable version. Please find details in release notes for that release.
84

9-
105
## v5.0.0-0 (2023-02-20)
116

127
#### :boom: Breaking Change
13-
* [#354](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/354) explicitly declare peer depencencies on ember-bootstrap, ember-power-select and ember-source ([@jelhan](https://github.com/jelhan))
14-
* [#353](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/353) drop support for ember-power-select v4 and v5 ([@jelhan](https://github.com/jelhan))
15-
* [#352](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/352) drop support for Ember Bootstrap v4 ([@jelhan](https://github.com/jelhan))
16-
* [#351](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/351) drop support for node 12 ([@jelhan](https://github.com/jelhan))
17-
* [#350](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/350) drop support for Ember < 3.28 ([@jelhan](https://github.com/jelhan))
8+
9+
- [#354](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/354) explicitly declare peer depencencies on ember-bootstrap, ember-power-select and ember-source ([@jelhan](https://github.com/jelhan))
10+
- [#353](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/353) drop support for ember-power-select v4 and v5 ([@jelhan](https://github.com/jelhan))
11+
- [#352](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/352) drop support for Ember Bootstrap v4 ([@jelhan](https://github.com/jelhan))
12+
- [#351](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/351) drop support for node 12 ([@jelhan](https://github.com/jelhan))
13+
- [#350](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/350) drop support for Ember < 3.28 ([@jelhan](https://github.com/jelhan))
1814

1915
#### :bug: Bug Fix
20-
* [#346](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/346) Support Power Select's onKeydown argument ([@jmmorganMSTS](https://github.com/jmmorganMSTS))
16+
17+
- [#346](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/346) Support Power Select's onKeydown argument ([@jmmorganMSTS](https://github.com/jmmorganMSTS))
2118

2219
#### :house: Internal
23-
* [#361](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/361) upgrade blueprint files to Ember CLI 4.10 ([@jelhan](https://github.com/jelhan))
24-
* [#360](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/360) remove test scenario for Ember with jQuery ([@jelhan](https://github.com/jelhan))
25-
* [#349](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/349) refactor to template-only components ([@jelhan](https://github.com/jelhan))
20+
21+
- [#361](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/361) upgrade blueprint files to Ember CLI 4.10 ([@jelhan](https://github.com/jelhan))
22+
- [#360](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/360) remove test scenario for Ember with jQuery ([@jelhan](https://github.com/jelhan))
23+
- [#349](https://github.com/ember-bootstrap/ember-bootstrap-power-select/pull/349) refactor to template-only components ([@jelhan](https://github.com/jelhan))
2624

2725
#### Committers: 2
26+
2827
- James M. Morgan ([@jmmorganMSTS](https://github.com/jmmorganMSTS))
2928
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
3029

3130
## v4.1.0 (2022-07-19)
3231

3332
#### :bug: Bug Fix
34-
* [#313](https://github.com/kaliber5/ember-bootstrap-power-select/pull/313) Placeholder argument for power-select-multiple control ([@NLaza](https://github.com/NLaza))
33+
34+
- [#313](https://github.com/kaliber5/ember-bootstrap-power-select/pull/313) Placeholder argument for power-select-multiple control ([@NLaza](https://github.com/NLaza))
3535

3636
#### Committers: 2
37+
3738
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
3839
- [@NLaza](https://github.com/NLaza)
3940

4041
## v4.0.1 (2022-05-23)
4142

4243
#### :bug: Bug Fix
43-
* [#312](https://github.com/kaliber5/ember-bootstrap-power-select/pull/312) Fix for ember-bootstrap v5.1 ([@simonihmig](https://github.com/simonihmig))
44+
45+
- [#312](https://github.com/kaliber5/ember-bootstrap-power-select/pull/312) Fix for ember-bootstrap v5.1 ([@simonihmig](https://github.com/simonihmig))
4446

4547
#### Committers: 1
48+
4649
- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))
4750

4851
## v4.0.0 (2022-04-20)
4952

5053
#### :boom: Breaking Change
51-
* [#303](https://github.com/kaliber5/ember-bootstrap-power-select/pull/303) upgrade ember-auto-import to v2 ([@jelhan](https://github.com/jelhan))
52-
* [#300](https://github.com/kaliber5/ember-bootstrap-power-select/pull/300) drop support for node 10 ([@jelhan](https://github.com/jelhan))
54+
55+
- [#303](https://github.com/kaliber5/ember-bootstrap-power-select/pull/303) upgrade ember-auto-import to v2 ([@jelhan](https://github.com/jelhan))
56+
- [#300](https://github.com/kaliber5/ember-bootstrap-power-select/pull/300) drop support for node 10 ([@jelhan](https://github.com/jelhan))
5357

5458
#### :rocket: Enhancement
55-
* [#307](https://github.com/kaliber5/ember-bootstrap-power-select/pull/307) support Ember Power Select to v5 ([@jelhan](https://github.com/jelhan))
56-
* [#306](https://github.com/kaliber5/ember-bootstrap-power-select/pull/306) support Ember Bootstrap v5 ([@jelhan](https://github.com/jelhan))
59+
60+
- [#307](https://github.com/kaliber5/ember-bootstrap-power-select/pull/307) support Ember Power Select to v5 ([@jelhan](https://github.com/jelhan))
61+
- [#306](https://github.com/kaliber5/ember-bootstrap-power-select/pull/306) support Ember Bootstrap v5 ([@jelhan](https://github.com/jelhan))
5762

5863
#### :bug: Bug Fix
59-
* [#298](https://github.com/kaliber5/ember-bootstrap-power-select/pull/298) Address hasBlock deprecation: update to has-block ([@sacarino](https://github.com/sacarino))
64+
65+
- [#298](https://github.com/kaliber5/ember-bootstrap-power-select/pull/298) Address hasBlock deprecation: update to has-block ([@sacarino](https://github.com/sacarino))
6066

6167
#### :house: Internal
62-
* [#308](https://github.com/kaliber5/ember-bootstrap-power-select/pull/308) fix patterns not supported by Ember v4 in tests ([@jelhan](https://github.com/jelhan))
63-
* [#305](https://github.com/kaliber5/ember-bootstrap-power-select/pull/305) Upgrade Ember, Ember CLI and blueprints to 3.28 ([@jelhan](https://github.com/jelhan))
68+
69+
- [#308](https://github.com/kaliber5/ember-bootstrap-power-select/pull/308) fix patterns not supported by Ember v4 in tests ([@jelhan](https://github.com/jelhan))
70+
- [#305](https://github.com/kaliber5/ember-bootstrap-power-select/pull/305) Upgrade Ember, Ember CLI and blueprints to 3.28 ([@jelhan](https://github.com/jelhan))
6471

6572
#### Committers: 2
73+
6674
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
6775
- Shane ([@sacarino](https://github.com/sacarino))
6876

6977
## v3.0.1 (2021-02-27)
7078

7179
#### :bug: Bug Fix
72-
* [#209](https://github.com/kaliber5/ember-bootstrap-power-select/pull/209) Add back `@placeholder` argument ([@lolmaus](https://github.com/lolmaus))
80+
81+
- [#209](https://github.com/kaliber5/ember-bootstrap-power-select/pull/209) Add back `@placeholder` argument ([@lolmaus](https://github.com/lolmaus))
7382

7483
#### Committers: 2
84+
7585
- Andrey Mikhaylov (lolmaus) ([@lolmaus](https://github.com/lolmaus))
7686
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)
7787

7888
## v3.0.0 (2020-09-24)
7989

8090
#### :boom: Breaking Change
81-
* [#113](https://github.com/kaliber5/ember-bootstrap-power-select/pull/113) Update support for ember-bootstrap v4 and ember-power-select v4, drop support for older versions ([@simonihmig](https://github.com/simonihmig))
82-
* [#103](https://github.com/kaliber5/ember-bootstrap-power-select/pull/103) Drop support for Ember < 3.16 ([@simonihmig](https://github.com/simonihmig))
83-
* [#101](https://github.com/kaliber5/ember-bootstrap-power-select/pull/101) Drop support for node 8 ([@simonihmig](https://github.com/simonihmig))
91+
92+
- [#113](https://github.com/kaliber5/ember-bootstrap-power-select/pull/113) Update support for ember-bootstrap v4 and ember-power-select v4, drop support for older versions ([@simonihmig](https://github.com/simonihmig))
93+
- [#103](https://github.com/kaliber5/ember-bootstrap-power-select/pull/103) Drop support for Ember < 3.16 ([@simonihmig](https://github.com/simonihmig))
94+
- [#101](https://github.com/kaliber5/ember-bootstrap-power-select/pull/101) Drop support for node 8 ([@simonihmig](https://github.com/simonihmig))
8495

8596
#### :rocket: Enhancement
86-
* [#113](https://github.com/kaliber5/ember-bootstrap-power-select/pull/113) Update support for ember-bootstrap v4 and ember-power-select v4, drop support for older versions ([@simonihmig](https://github.com/simonihmig))
97+
98+
- [#113](https://github.com/kaliber5/ember-bootstrap-power-select/pull/113) Update support for ember-bootstrap v4 and ember-power-select v4, drop support for older versions ([@simonihmig](https://github.com/simonihmig))
8799

88100
#### :house: Internal
89-
* [#109](https://github.com/kaliber5/ember-bootstrap-power-select/pull/109) Setup release-it ([@simonihmig](https://github.com/simonihmig))
90-
* [#105](https://github.com/kaliber5/ember-bootstrap-power-select/pull/105) Setup dependabot ([@simonihmig](https://github.com/simonihmig))
91-
* [#104](https://github.com/kaliber5/ember-bootstrap-power-select/pull/104) Move CI to Github Actions ([@simonihmig](https://github.com/simonihmig))
92-
* [#100](https://github.com/kaliber5/ember-bootstrap-power-select/pull/100) Update to Ember 3.21, fix linting ([@simonihmig](https://github.com/simonihmig))
101+
102+
- [#109](https://github.com/kaliber5/ember-bootstrap-power-select/pull/109) Setup release-it ([@simonihmig](https://github.com/simonihmig))
103+
- [#105](https://github.com/kaliber5/ember-bootstrap-power-select/pull/105) Setup dependabot ([@simonihmig](https://github.com/simonihmig))
104+
- [#104](https://github.com/kaliber5/ember-bootstrap-power-select/pull/104) Move CI to Github Actions ([@simonihmig](https://github.com/simonihmig))
105+
- [#100](https://github.com/kaliber5/ember-bootstrap-power-select/pull/100) Update to Ember 3.21, fix linting ([@simonihmig](https://github.com/simonihmig))
93106

94107
#### Committers: 3
108+
95109
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
96110
- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))
97111
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)
98112

99113
## 2.0.0 (2019-09-16)
100114

101115
#### Features
102-
* Adds support for Ember Power Select v3.
103-
* Does not require `ember-power-select-blockless` anymore. You may be able to remove it from your project.
116+
117+
- Adds support for Ember Power Select v3.
118+
- Does not require `ember-power-select-blockless` anymore. You may be able to remove it from your project.
104119

105120
#### :boom: Breaking Change
106-
* Increased minimum supported versions of dependencies:
107-
* Ember Power Select v3.
108-
* Ember Bootstrap v3.
109-
* Ember.js v3.11 or above (per Ember Power Select v3).
110-
* Ember CLI v2.13 or above.
111-
* Node.js v8 or above.
112-
* Please also review the [breaking changes introduced by Ember Power Select v3](https://github.com/cibernox/ember-power-select/blob/master/CHANGELOG.md#300-beta1).
121+
122+
- Increased minimum supported versions of dependencies:
123+
- Ember Power Select v3.
124+
- Ember Bootstrap v3.
125+
- Ember.js v3.11 or above (per Ember Power Select v3).
126+
- Ember CLI v2.13 or above.
127+
- Node.js v8 or above.
128+
- Please also review the [breaking changes introduced by Ember Power Select v3](https://github.com/cibernox/ember-power-select/blob/master/CHANGELOG.md#300-beta1).
113129

114130
It may work well together with Ember Bootstrap v2 but is not offically supported.

0 commit comments

Comments
 (0)