Skip to content

Commit c3a3b44

Browse files
authored
Merge pull request #267 from oracle/release_1.4.1
chore(release): v1.4.1
2 parents ec09267 + 08173d9 commit c3a3b44

File tree

4 files changed

+2057
-1818
lines changed

4 files changed

+2057
-1818
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.1] - 2025-04-23
9+
10+
### Changed
11+
12+
- General update of dependencies.
13+
- #225 Fixed 'Rate exceeded' errors in the npm run migrate command of the ords-remix-jwt-sample template.
14+
- #265 `node-jet` template migrated from `v17.1` to `18.0`.
15+
- #266 `node-angular` template migrated from `v19.1` to `v19.2`.
16+
817
## [1.4.0] - 2025-01-28
918

1019
### Changed
1120

1221
- General update of dependencies.
1322
- Templates migrated to use ESLint v9 with flat config.
14-
- #204 `node-vue` template migrated fron `v5.0` to `v6.0`.
23+
- #204 `node-vue` template migrated from `v3.3` to `v3.5`.
1524
- #203 `node-angular` template migrated from `v18.2` to `v19.1`.
1625
- #200 `node-react` and #201 `node-react-todo` templates migrated from `v18.2` to `v19.0`.
1726
- #199 `node-jet` template migrated to `v17.1`, and fixed incorrect references to the CDN pointing to an outdated version.

generators/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ export default class extends Generator {
198198

199199
end() {
200200
this.log( 'Application generated successfully. Run the following command: \n\ncd ' + path.join( process.cwd(), this.options.appName ) + '\n');
201-
if(!this.options.templateChoice.includes('ords-remix-jwt-sample')){}
202-
this.log('Please check out the README file to learn how to configurate the ORDS Concert App')
201+
if(this.options.templateChoice.includes('ords-remix-jwt-sample')){
202+
this.log('Please check out the README file to learn how to configurate the ORDS Concert App')
203+
}
203204
}
204205
}

0 commit comments

Comments
 (0)