You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASING.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,19 +3,26 @@
3
3
4
4
## Stable release
5
5
6
-
Stable releases are managed by the [Release GitHub Action](https://github.com/mongodb/awscdk-resources-mongodbatlas/actions/workflows/release.yml). You can release a new CDK version by manually trigger the action.
6
+
Stable releases are managed by the [Release GitHub Action](https://github.com/mongodb/awscdk-resources-mongodbatlas/actions/workflows/release.yml). You can release a new CDK version by manually triggering the action ([*MAKE SURE TO FOLLOW MANUAL STEPS BELOW*](#manual-steps)).
7
7
8
8

9
9
10
+
### Manual Steps
10
11
After the action finishes successfully you have to manually release the Go package:
11
12
- Go to the [Go repo](https://github.com/mongodb/awscdk-resources-mongodbatlas-go) and check that the latest commit happened now with the same release as in this repo, e.g. `chore(release): v3.0.0`.
12
13
- Go to the [Go Repo release page](https://github.com/mongodb/awscdk-resources-mongodbatlas-go/releases).
13
14
- Select the latest release that has to be the same as the one in this repo, e.g. `awscdkresourcemongodbatlas/v3.0.0`, name will be like `v3.0.0`, click "Generate release notes" and make sure "Set as latest release" is checked.
14
15
16
+
Also, to ensure no silent errors, look for the specific `vX.Y.Z` language releases:
# Fix @typescript-eslint/no-shadow es-linter error in file federated-database-instance/index.ts
61
61
sed -e 's/map(y => toJson_TagSet(y))/map(x => toJson_TagSet(x))/g'"${dest}">"${dest}.tmp"&& mv "${dest}.tmp""${dest}"
62
62
63
+
# Fix errors like `Definition for rule '@stylistic/max-len' was not found @stylistic/max-len` until eslint 9 is supported by projen: https://github.com/projen/projen/issues/3240
64
+
sed -e 's|@stylistic/max-len, ||g' -e 's|, @stylistic/quote-props||g'"${dest}">"${dest}.tmp"&& mv "${dest}.tmp""${dest}"
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
235
+
*
236
+
* @schema processArgs#TlsCipherConfigMode
237
+
*/
238
+
readonlytlsCipherConfigMode?: string;
239
+
240
+
/**
241
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tls_cipher_config_mode` is set to `CUSTOM`.
Copy file name to clipboardExpand all lines: src/l1-resources/custom-db-role/index.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -154,14 +154,14 @@ export function toJson_InheritedRole(
154
154
*/
155
155
exportinterfaceResource{
156
156
/**
157
-
* Human-readable label that identifies the collection on which you grant the action to one MongoDB user. If you don't set this parameter, you grant the action to all collections in the database specified in the actions.resources.db parameter. If you set "actions.resources.cluster" : true, MongoDB Cloud ignores this parameter.
157
+
* Human-readable label that identifies the collection on which you grant the action to one MongoDB user. If you don't set this parameter, you grant the action to all collections in the database specified in the actions.resources.db parameter. If you set "actions.resources.cluster" : true, MongoDB Cloud ignores this parameter. Use the empty string ("") to allow an action on all collections.
158
158
*
159
159
* @schema Resource#Collection
160
160
*/
161
161
readonlycollection?: string;
162
162
163
163
/**
164
-
* Human-readable label that identifies the database on which you grant the action to one MongoDB user. If you set "actions.resources.cluster" : true, MongoDB Cloud ignores this parameter.
164
+
* Human-readable label that identifies the database on which you grant the action to one MongoDB user. If you set "actions.resources.cluster" : true, MongoDB Cloud ignores this parameter. Use the empty string ("") to allow an action on all databases.
* List that contains the key-value pairs for tagging and categorizing the MongoDB database user. The labels that you define do not appear in the console.
34
41
*
@@ -107,6 +114,7 @@ export function toJson_CfnDatabaseUserProps(
0 commit comments