Skip to content

Commit f1b9e60

Browse files
[Misc] Package version and change log update (#37)
Co-authored-by: Pavan <[email protected]>
1 parent 3790773 commit f1b9e60

File tree

4 files changed

+549
-218
lines changed

4 files changed

+549
-218
lines changed

CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog](http://keepachangelog.com/).
44

5+
## Version 0.3.0 - 13-September-2024
6+
7+
### Added
8+
9+
- New helm chart variant with configurable templates
10+
- CLI tool to convert existing basic chart to configurable templates chart
11+
- Updated @sap/cds-dk to version `8.2.1` for the CLI option parsing issue fix
12+
- Support for dynamic service instance key name in `runtime-values.yaml` file
13+
- Changed workload keys in the `values.yaml` to camelcase
14+
15+
### Fixed
16+
17+
- Removed empty `env` from workloads during mta transformation
18+
- App name derivation fix in template function
19+
520
## Version 0.2.0 - 21-August-2024
621

722
### Added
@@ -10,7 +25,7 @@ All notable changes to this project will be documented in this file. This projec
1025
- Updated `values.schema.json` to allow additional properties on `values.yaml`
1126
- Removed unused variables from templates
1227
- Unit test enhancements
13-
28+
1429
## Version 0.1.0 - 25-July-2024
1530

1631
### Added

lib/add.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,15 @@ module.exports = class CapOperatorAddPlugin extends cds.add.Plugin {
137137
console.log("Review and update the values.yaml file in the 'chart' folder as per your project's requirements.")
138138
}
139139

140-
// Update xs-security.json
141-
const { hasXsuaa } = project
142-
if (hasXsuaa) {
143-
await cds.add.merge(__dirname, '../files/xs-security.json.hbs').into('xs-security.json', {
144-
project,
145-
additions: [{ in: 'scopes', where: { name: '$XSAPPNAME.Callback' }},
146-
{ in: 'scopes', where: { name: '$XSAPPNAME.mtcallback' }}]
147-
})
148-
}
140+
// Update xs-security.json
141+
const { hasXsuaa } = project
142+
if (hasXsuaa) {
143+
await cds.add.merge(__dirname, '../files/xs-security.json.hbs').into('xs-security.json', {
144+
project,
145+
additions: [{ in: 'scopes', where: { name: '$XSAPPNAME.Callback' }},
146+
{ in: 'scopes', where: { name: '$XSAPPNAME.mtcallback' }}]
147+
})
148+
}
149149

150150
console.log("Once values.yaml is updated, run 'cds build' to generate the helm chart. You can find the generated chart in the 'gen' folder within your project directory.")
151151
}

0 commit comments

Comments
 (0)