@rio-cloud/cdk-v2-constructs 1.0.1-alpha.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +2 -2
- package/CHANGELOG.md +2 -0
- package/CONTRIBUTION.md +15 -0
- package/README.md +8 -41
- package/package.json +1 -1
- package/version.json +1 -1
package/.jsii
CHANGED
|
@@ -2977,7 +2977,7 @@
|
|
|
2977
2977
|
},
|
|
2978
2978
|
"name": "@rio-cloud/cdk-v2-constructs",
|
|
2979
2979
|
"readme": {
|
|
2980
|
-
"markdown": "# RIO CDK Constructs\n\nThis package contains
|
|
2980
|
+
"markdown": "# RIO CDK Constructs\n\nThis package contains CDK2 constructs for RIO teams.\n\n> NPM: `@rio-cloud/cdk-v2-constructs`\n\n## Bootstrapping of CDK project\n\n```\n$ npx cdk init --language typescript\n```\n\n## Installation\n\n```\n$ npm install --save @rio-cloud/cdk-v2-constructs\n```\n\n## See also\n\n * [How to contribut](./CONTRIBUTION.md)\n * [Changelog](./CHANGELOG.md)\n * [brief API desciption](./API.md)\n"
|
|
2981
2981
|
},
|
|
2982
2982
|
"repository": {
|
|
2983
2983
|
"type": "git",
|
|
@@ -7828,5 +7828,5 @@
|
|
|
7828
7828
|
}
|
|
7829
7829
|
},
|
|
7830
7830
|
"version": "0.0.0",
|
|
7831
|
-
"fingerprint": "
|
|
7831
|
+
"fingerprint": "zyDodGYSizYcqBXwixejIlGksAP/sgYU/oJjXveAZTI="
|
|
7832
7832
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,4 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.1](https://collaboration.msi.audi.com/stash/projects/RIODEV/repos/cdk-v2-constructs/compare/commits?targetBranch=refs%2Ftags%2Fv1.0.1-alpha.0&sourceBranch=refs%2Ftags%2Fv1.0.1) (2022-04-07)
|
|
6
|
+
|
|
5
7
|
### [1.0.1-alpha.0](https://collaboration.msi.audi.com/stash/projects/RIODEV/repos/cdk-v2-constructs/compare/commits?targetBranch=refs%2Ftags%2Fv0.10.63&sourceBranch=refs%2Ftags%2Fv1.0.1-alpha.0) (2022-04-06)
|
package/CONTRIBUTION.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
## Developing CDK libraries
|
|
2
|
+
|
|
3
|
+
Provide commit messages according to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). This library uses [standard-version](https://github.com/conventional-changelog/standard-version) to generate the changelog and publish a new version.
|
|
4
|
+
Example commit message:
|
|
5
|
+
```shell
|
|
6
|
+
fix(watchful): :bug: removing toggle rioclaid-1857-datadog-threshold; removed threshold
|
|
7
|
+
rioclaid-1857
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Releasing a new version
|
|
11
|
+
|
|
12
|
+
Make sure that the parameter store `/config/npm/token` having the npm token to publish is added before releasing.
|
|
13
|
+
|
|
14
|
+
1. Create locally a new release by running `npm run release`. (e.g. `npm run release -- --release-as minor`)
|
|
15
|
+
2. Check the generated `CHANGELOG.md` file and adjust thing when necessary
|
package/README.md
CHANGED
|
@@ -1,56 +1,23 @@
|
|
|
1
1
|
# RIO CDK Constructs
|
|
2
2
|
|
|
3
|
-
This package contains
|
|
3
|
+
This package contains CDK2 constructs for RIO teams.
|
|
4
4
|
|
|
5
5
|
> NPM: `@rio-cloud/cdk-v2-constructs`
|
|
6
6
|
|
|
7
|
-
## CDK
|
|
7
|
+
## Bootstrapping of CDK project
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
$ cdk init --language typescript
|
|
10
|
+
$ npx cdk init --language typescript
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Installation
|
|
14
14
|
|
|
15
15
|
```
|
|
16
16
|
$ npm install --save @rio-cloud/cdk-v2-constructs
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## See also
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- DataDog: Use DataDog.jar inside Docker image for profiling (using AWS Artifacts?)
|
|
26
|
-
- Add vulnerability and license-check actions
|
|
27
|
-
- Get self-signed certificate for LB<->Service communication
|
|
28
|
-
|
|
29
|
-
- DataDog: Provide aspect to use lambda extensions to send logs to DataDog
|
|
30
|
-
- Introduce immutable tags to RioEcrRepo (waits for https://github.com/aws/aws-cdk/pull/10557))
|
|
31
|
-
- Replace custom synth action with standard one, once [CDK #12061](https://github.com/aws/aws-cdk/issues/12061) is fixed
|
|
32
|
-
|
|
33
|
-
- Have custom resource to create BitBucket repo and webhook automatically
|
|
34
|
-
- Send container image scan results to OpsGenie
|
|
35
|
-
- Check for security requirements (s3 buckets, ...) - maybe automated as aspect?
|
|
36
|
-
- RDS: Provide RIO-style Aurora
|
|
37
|
-
- Backup: Provide aspect to add automatically backup tags
|
|
38
|
-
- Send build status back to BitBucket (see cdk-codepipeline-bitbucket-build-result-reporter)
|
|
39
|
-
- Support PR builds (using StepFunctions?)
|
|
40
|
-
- Move this library to AWS CodeArtifact
|
|
41
|
-
|
|
42
|
-
## Developing CDK libraries
|
|
43
|
-
|
|
44
|
-
Provide commit messages according to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). This library uses [standard-version](https://github.com/conventional-changelog/standard-version) to generate the changelog and publish a new version.
|
|
45
|
-
Example commit message:
|
|
46
|
-
```shell
|
|
47
|
-
fix(watchful): :bug: removing toggle rioclaid-1857-datadog-threshold; removed threshold
|
|
48
|
-
rioclaid-1857
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
## Releasing a new version
|
|
52
|
-
|
|
53
|
-
Make sure that the parameter store `/config/npm/token` having the npm token to publish is added before releasing.
|
|
54
|
-
|
|
55
|
-
1. Create locally a new release by running `npm run release`. (e.g. `npm run release -- --release-as minor`)
|
|
56
|
-
2. Check the generated `CHANGELOG.md` file and adjust thing when necessary
|
|
21
|
+
* [How to contribut](./CONTRIBUTION.md)
|
|
22
|
+
* [Changelog](./CHANGELOG.md)
|
|
23
|
+
* [brief API desciption](./API.md)
|
package/package.json
CHANGED
package/version.json
CHANGED