Skip to content

Commit 3405eab

Browse files
committed
Release 3.1.0
1 parent 38d9da2 commit 3405eab

File tree

4 files changed

+685
-144
lines changed

4 files changed

+685
-144
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog
22

3+
4+
## v3.1.0 (2023-03-10)
5+
6+
#### :rocket: Enhancement
7+
* [#502](https://github.com/ember-codemods/ember-native-class-codemod/pull/502) Support legacy decorators in object literals (and related improvements) ([@gitKrystan](https://github.com/gitKrystan))
8+
9+
#### :bug: Bug Fix
10+
* [#520](https://github.com/ember-codemods/ember-native-class-codemod/pull/520) Handle 'true'/'false' stringified boolean options and better config error handling ([@gitKrystan](https://github.com/gitKrystan))
11+
* [#211](https://github.com/ember-codemods/ember-native-class-codemod/pull/211) Don't append object name when type is already at the end of the filename ([@patocallaghan](https://github.com/patocallaghan))
12+
13+
#### :house: Internal
14+
* [#519](https://github.com/ember-codemods/ember-native-class-codemod/pull/519) Remove node 12 from package.json engines / Upgrade release-it dependencies ([@gitKrystan](https://github.com/gitKrystan))
15+
* [#518](https://github.com/ember-codemods/ember-native-class-codemod/pull/518) Run yarn upgrade ([@gitKrystan](https://github.com/gitKrystan))
16+
* [#517](https://github.com/ember-codemods/ember-native-class-codemod/pull/517) Upgrade typescript ([@gitKrystan](https://github.com/gitKrystan))
17+
* [#516](https://github.com/ember-codemods/ember-native-class-codemod/pull/516) Upgrade release-it dependencies ([@gitKrystan](https://github.com/gitKrystan))
18+
* [#515](https://github.com/ember-codemods/ember-native-class-codemod/pull/515) Upgrade prettier ([@gitKrystan](https://github.com/gitKrystan))
19+
* [#514](https://github.com/ember-codemods/ember-native-class-codemod/pull/514) Upgrade execa ([@gitKrystan](https://github.com/gitKrystan))
20+
* [#513](https://github.com/ember-codemods/ember-native-class-codemod/pull/513) Upgrade eslint dependencies ([@gitKrystan](https://github.com/gitKrystan))
21+
* [#512](https://github.com/ember-codemods/ember-native-class-codemod/pull/512) Upgrade jest dependencies ([@gitKrystan](https://github.com/gitKrystan))
22+
* [#511](https://github.com/ember-codemods/ember-native-class-codemod/pull/511) Upgrade zod ([@gitKrystan](https://github.com/gitKrystan))
23+
* [#510](https://github.com/ember-codemods/ember-native-class-codemod/pull/510) Upgrade winston ([@gitKrystan](https://github.com/gitKrystan))
24+
* [#508](https://github.com/ember-codemods/ember-native-class-codemod/pull/508) Upgrade walk-sync ([@gitKrystan](https://github.com/gitKrystan))
25+
* [#507](https://github.com/ember-codemods/ember-native-class-codemod/pull/507) Upgrade minimatch ([@gitKrystan](https://github.com/gitKrystan))
26+
* [#506](https://github.com/ember-codemods/ember-native-class-codemod/pull/506) Remove unused dependencies ([@gitKrystan](https://github.com/gitKrystan))
27+
* [#505](https://github.com/ember-codemods/ember-native-class-codemod/pull/505) Upgrade cosmiconfig ([@gitKrystan](https://github.com/gitKrystan))
28+
* [#504](https://github.com/ember-codemods/ember-native-class-codemod/pull/504) Upgrade @babel dependencies ([@gitKrystan](https://github.com/gitKrystan))
29+
* [#498](https://github.com/ember-codemods/ember-native-class-codemod/pull/498) Convert to TypeScript ([@gitKrystan](https://github.com/gitKrystan))
30+
31+
#### Committers: 3
32+
- Berkan Ünal ([@brkn](https://github.com/brkn))
33+
- Krystan HuffMenne ([@gitKrystan](https://github.com/gitKrystan))
34+
- Pat O'Callaghan ([@patocallaghan](https://github.com/patocallaghan))
35+
336
## v3.0.0 (2022-11-14)
437

538
#### :boom: Breaking Change

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ transformation of
9393
## More Transform Examples
9494

9595
<!--TRANSFORMS_START-->
96-
97-
- [ember-object](transforms/ember-object/README.md)
98-
- [helpers](transforms/helpers/README.md)
96+
* [ember-object](transforms/ember-object/README.md)
97+
* [helpers](transforms/helpers/README.md)
9998
<!--TRANSFORMS_END-->
10099

101100
## Contributing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-native-class-codemod",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "Codemods for transforming ember app code to native class syntax with decorators.",
55
"keywords": [
66
"codemod-cli"

0 commit comments

Comments
 (0)