@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 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 CDK constructs RIO teams.\n\n> NPM: `@rio-cloud/cdk-v2-constructs`\n\n## CDK Bootstrapping\n\n```\n$ cdk init --language typescript\n```\n\n## Installing\n\n```\n$ npm install --save @rio-cloud/cdk-v2-constructs\n```\n\n## Constructs\n\nSee [./API.md](API.md) for a list of constructs\n\n## Open issues\n\n- DataDog: Use DataDog.jar inside Docker image for profiling (using AWS Artifacts?)\n- Add vulnerability and license-check actions\n- Get self-signed certificate for LB<->Service communication\n\n- DataDog: Provide aspect to use lambda extensions to send logs to DataDog\n- Introduce immutable tags to RioEcrRepo (waits for https://github.com/aws/aws-cdk/pull/10557))\n- Replace custom synth action with standard one, once [CDK #12061](https://github.com/aws/aws-cdk/issues/12061) is fixed\n\n- Have custom resource to create BitBucket repo and webhook automatically\n- Send container image scan results to OpsGenie\n- Check for security requirements (s3 buckets, ...) - maybe automated as aspect?\n- RDS: Provide RIO-style Aurora\n- Backup: Provide aspect to add automatically backup tags\n- Send build status back to BitBucket (see cdk-codepipeline-bitbucket-build-result-reporter)\n- Support PR builds (using StepFunctions?)\n- Move this library to AWS CodeArtifact\n\n## Developing CDK libraries\n\nProvide 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.\nExample commit message:\n```shell\nfix(watchful): :bug: removing toggle rioclaid-1857-datadog-threshold; removed threshold\nrioclaid-1857\n```\n\n## Releasing a new version\n\nMake sure that the parameter store `/config/npm/token` having the npm token to publish is added before releasing.\n\n1. Create locally a new release by running `npm run release`. (e.g. `npm run release -- --release-as minor`)\n2. Check the generated `CHANGELOG.md` file and adjust thing when necessary\n"
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": "LZjWae6g6gHUDCt8T/XXOzgUXkQKKVbnNSt11J0P2YY="
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)
@@ -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 CDK constructs RIO teams.
3
+ This package contains CDK2 constructs for RIO teams.
4
4
 
5
5
  > NPM: `@rio-cloud/cdk-v2-constructs`
6
6
 
7
- ## CDK Bootstrapping
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
- ## Installing
13
+ ## Installation
14
14
 
15
15
  ```
16
16
  $ npm install --save @rio-cloud/cdk-v2-constructs
17
17
  ```
18
18
 
19
- ## Constructs
19
+ ## See also
20
20
 
21
- See [./API.md](API.md) for a list of constructs
22
-
23
- ## Open issues
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
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "main": "lib/index.js",
17
17
  "license": "Apache-2.0",
18
- "version": "1.0.1-alpha.0",
18
+ "version": "1.0.1",
19
19
  "types": "lib/index.d.ts",
20
20
  "stability": "stable",
21
21
  "jsii": {
package/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.0.1-alpha.0"
2
+ "version": "1.0.1"
3
3
  }