projen 0.95.4__py3-none-any.whl → 0.95.6__py3-none-any.whl

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.

Potentially problematic release.


This version of projen might be problematic. Click here for more details.

projen/__init__.py CHANGED
@@ -3012,6 +3012,23 @@ class GitAttributesFile(
3012
3012
  '''
3013
3013
  return typing.cast(None, jsii.invoke(self, "preSynthesize", []))
3014
3014
 
3015
+ @jsii.member(jsii_name="removeAttributes")
3016
+ def remove_attributes(self, glob: builtins.str, *attributes: builtins.str) -> None:
3017
+ '''(experimental) Removes attributes from a set of files.
3018
+
3019
+ If no attributes are provided, the glob pattern will be removed completely.
3020
+
3021
+ :param glob: Glob pattern to modify.
3022
+ :param attributes: Attributes to remove from matched files.
3023
+
3024
+ :stability: experimental
3025
+ '''
3026
+ if __debug__:
3027
+ type_hints = typing.get_type_hints(_typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d)
3028
+ check_type(argname="argument glob", value=glob, expected_type=type_hints["glob"])
3029
+ check_type(argname="argument attributes", value=attributes, expected_type=typing.Tuple[type_hints["attributes"], ...]) # pyright: ignore [reportGeneralTypeIssues]
3030
+ return typing.cast(None, jsii.invoke(self, "removeAttributes", [glob, *attributes]))
3031
+
3015
3032
  @jsii.member(jsii_name="synthesizeContent")
3016
3033
  def _synthesize_content(self, _: "IResolver") -> typing.Optional[builtins.str]:
3017
3034
  '''(experimental) Implemented by derived classes and returns the contents of the file to emit.
@@ -13065,6 +13082,13 @@ def _typecheckingstub__ed3c05c2bc87434261501604cb4ca8386e08b16567b40f693170ab90f
13065
13082
  """Type checking stubs"""
13066
13083
  pass
13067
13084
 
13085
+ def _typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d(
13086
+ glob: builtins.str,
13087
+ *attributes: builtins.str,
13088
+ ) -> None:
13089
+ """Type checking stubs"""
13090
+ pass
13091
+
13068
13092
  def _typecheckingstub__4d57ceb4d14bb3b3eac67478ac542d99ca5c6994286fdea034dacdf4b64fd14b(
13069
13093
  _: IResolver,
13070
13094
  ) -> None:
projen/_jsii/__init__.py CHANGED
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
31
31
  import constructs._jsii
32
32
 
33
33
  __jsii_assembly__ = jsii.JSIIAssembly.load(
34
- "projen", "0.95.4", __name__[0:-6], "projen@0.95.4.jsii.tgz"
34
+ "projen", "0.95.6", __name__[0:-6], "projen@0.95.6.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
Binary file
projen/awscdk/__init__.py CHANGED
@@ -529,8 +529,8 @@ class AwsCdkConstructLibrary(
529
529
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
530
530
  :param bundler_options: (experimental) Options for ``Bundler``.
531
531
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
532
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
533
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
532
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
533
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
534
534
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
535
535
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
536
536
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -2673,8 +2673,8 @@ class AwsCdkTypeScriptApp(
2673
2673
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
2674
2674
  :param bundler_options: (experimental) Options for ``Bundler``.
2675
2675
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
2676
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
2677
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
2676
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
2677
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
2678
2678
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
2679
2679
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
2680
2680
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -3816,8 +3816,8 @@ class ConstructLibraryAws(
3816
3816
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
3817
3817
  :param bundler_options: (experimental) Options for ``Bundler``.
3818
3818
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
3819
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
3820
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
3819
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
3820
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
3821
3821
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
3822
3822
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
3823
3823
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -6535,8 +6535,8 @@ class AwsCdkConstructLibraryOptions(
6535
6535
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
6536
6536
  :param bundler_options: (experimental) Options for ``Bundler``.
6537
6537
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
6538
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
6539
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
6538
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
6539
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
6540
6540
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
6541
6541
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
6542
6542
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -8576,7 +8576,7 @@ class AwsCdkConstructLibraryOptions(
8576
8576
 
8577
8577
  @builtins.property
8578
8578
  def code_cov(self) -> typing.Optional[builtins.bool]:
8579
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
8579
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
8580
8580
 
8581
8581
  :default: false
8582
8582
 
@@ -8587,9 +8587,9 @@ class AwsCdkConstructLibraryOptions(
8587
8587
 
8588
8588
  @builtins.property
8589
8589
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
8590
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
8590
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
8591
8591
 
8592
- :default: - if this option is not specified, only public repositories are supported
8592
+ :default: - OIDC auth is used
8593
8593
 
8594
8594
  :stability: experimental
8595
8595
  '''
@@ -12758,8 +12758,8 @@ class AwsCdkTypeScriptAppOptions(
12758
12758
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
12759
12759
  :param bundler_options: (experimental) Options for ``Bundler``.
12760
12760
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
12761
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
12762
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
12761
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
12762
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
12763
12763
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
12764
12764
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
12765
12765
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -14756,7 +14756,7 @@ class AwsCdkTypeScriptAppOptions(
14756
14756
 
14757
14757
  @builtins.property
14758
14758
  def code_cov(self) -> typing.Optional[builtins.bool]:
14759
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
14759
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
14760
14760
 
14761
14761
  :default: false
14762
14762
 
@@ -14767,9 +14767,9 @@ class AwsCdkTypeScriptAppOptions(
14767
14767
 
14768
14768
  @builtins.property
14769
14769
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
14770
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
14770
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
14771
14771
 
14772
- :default: - if this option is not specified, only public repositories are supported
14772
+ :default: - OIDC auth is used
14773
14773
 
14774
14774
  :stability: experimental
14775
14775
  '''
@@ -16104,8 +16104,8 @@ class ConstructLibraryAwsOptions(AwsCdkConstructLibraryOptions):
16104
16104
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
16105
16105
  :param bundler_options: (experimental) Options for ``Bundler``.
16106
16106
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
16107
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
16108
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
16107
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
16108
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
16109
16109
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
16110
16110
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
16111
16111
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -18147,7 +18147,7 @@ class ConstructLibraryAwsOptions(AwsCdkConstructLibraryOptions):
18147
18147
 
18148
18148
  @builtins.property
18149
18149
  def code_cov(self) -> typing.Optional[builtins.bool]:
18150
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
18150
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
18151
18151
 
18152
18152
  :default: false
18153
18153
 
@@ -18158,9 +18158,9 @@ class ConstructLibraryAwsOptions(AwsCdkConstructLibraryOptions):
18158
18158
 
18159
18159
  @builtins.property
18160
18160
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
18161
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
18161
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
18162
18162
 
18163
- :default: - if this option is not specified, only public repositories are supported
18163
+ :default: - OIDC auth is used
18164
18164
 
18165
18165
  :stability: experimental
18166
18166
  '''
projen/cdk/__init__.py CHANGED
@@ -1633,8 +1633,8 @@ class JsiiProject(
1633
1633
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
1634
1634
  :param bundler_options: (experimental) Options for ``Bundler``.
1635
1635
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
1636
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
1637
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
1636
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
1637
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
1638
1638
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
1639
1639
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
1640
1640
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -2385,8 +2385,8 @@ class JsiiProjectOptions(_TypeScriptProjectOptions_d10c83f7):
2385
2385
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
2386
2386
  :param bundler_options: (experimental) Options for ``Bundler``.
2387
2387
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
2388
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
2389
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
2388
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
2389
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
2390
2390
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
2391
2391
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
2392
2392
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -4359,7 +4359,7 @@ class JsiiProjectOptions(_TypeScriptProjectOptions_d10c83f7):
4359
4359
 
4360
4360
  @builtins.property
4361
4361
  def code_cov(self) -> typing.Optional[builtins.bool]:
4362
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
4362
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
4363
4363
 
4364
4364
  :default: false
4365
4365
 
@@ -4370,9 +4370,9 @@ class JsiiProjectOptions(_TypeScriptProjectOptions_d10c83f7):
4370
4370
 
4371
4371
  @builtins.property
4372
4372
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
4373
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
4373
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
4374
4374
 
4375
- :default: - if this option is not specified, only public repositories are supported
4375
+ :default: - OIDC auth is used
4376
4376
 
4377
4377
  :stability: experimental
4378
4378
  '''
@@ -5621,8 +5621,8 @@ class ConstructLibrary(
5621
5621
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
5622
5622
  :param bundler_options: (experimental) Options for ``Bundler``.
5623
5623
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
5624
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
5625
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
5624
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
5625
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
5626
5626
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
5627
5627
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
5628
5628
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -6383,8 +6383,8 @@ class ConstructLibraryOptions(JsiiProjectOptions):
6383
6383
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
6384
6384
  :param bundler_options: (experimental) Options for ``Bundler``.
6385
6385
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
6386
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
6387
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
6386
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
6387
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
6388
6388
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
6389
6389
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
6390
6390
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -8363,7 +8363,7 @@ class ConstructLibraryOptions(JsiiProjectOptions):
8363
8363
 
8364
8364
  @builtins.property
8365
8365
  def code_cov(self) -> typing.Optional[builtins.bool]:
8366
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
8366
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
8367
8367
 
8368
8368
  :default: false
8369
8369
 
@@ -8374,9 +8374,9 @@ class ConstructLibraryOptions(JsiiProjectOptions):
8374
8374
 
8375
8375
  @builtins.property
8376
8376
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
8377
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
8377
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
8378
8378
 
8379
- :default: - if this option is not specified, only public repositories are supported
8379
+ :default: - OIDC auth is used
8380
8380
 
8381
8381
  :stability: experimental
8382
8382
  '''
projen/cdk8s/__init__.py CHANGED
@@ -2709,8 +2709,8 @@ class Cdk8sTypeScriptApp(
2709
2709
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
2710
2710
  :param bundler_options: (experimental) Options for ``Bundler``.
2711
2711
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
2712
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
2713
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
2712
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
2713
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
2714
2714
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
2715
2715
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
2716
2716
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -3475,8 +3475,8 @@ class Cdk8sTypeScriptAppOptions(
3475
3475
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
3476
3476
  :param bundler_options: (experimental) Options for ``Bundler``.
3477
3477
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
3478
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
3479
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
3478
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
3479
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
3480
3480
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
3481
3481
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
3482
3482
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -5431,7 +5431,7 @@ class Cdk8sTypeScriptAppOptions(
5431
5431
 
5432
5432
  @builtins.property
5433
5433
  def code_cov(self) -> typing.Optional[builtins.bool]:
5434
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
5434
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
5435
5435
 
5436
5436
  :default: false
5437
5437
 
@@ -5442,9 +5442,9 @@ class Cdk8sTypeScriptAppOptions(
5442
5442
 
5443
5443
  @builtins.property
5444
5444
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
5445
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
5445
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
5446
5446
 
5447
- :default: - if this option is not specified, only public repositories are supported
5447
+ :default: - OIDC auth is used
5448
5448
 
5449
5449
  :stability: experimental
5450
5450
  '''
@@ -6416,8 +6416,8 @@ class ConstructLibraryCdk8s(
6416
6416
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
6417
6417
  :param bundler_options: (experimental) Options for ``Bundler``.
6418
6418
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
6419
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
6420
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
6419
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
6420
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
6421
6421
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
6422
6422
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
6423
6423
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -7207,8 +7207,8 @@ class ConstructLibraryCdk8sOptions(_ConstructLibraryOptions_dcd2adc0):
7207
7207
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
7208
7208
  :param bundler_options: (experimental) Options for ``Bundler``.
7209
7209
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
7210
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
7211
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
7210
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
7211
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
7212
7212
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
7213
7213
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
7214
7214
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -9210,7 +9210,7 @@ class ConstructLibraryCdk8sOptions(_ConstructLibraryOptions_dcd2adc0):
9210
9210
 
9211
9211
  @builtins.property
9212
9212
  def code_cov(self) -> typing.Optional[builtins.bool]:
9213
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
9213
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
9214
9214
 
9215
9215
  :default: false
9216
9216
 
@@ -9221,9 +9221,9 @@ class ConstructLibraryCdk8sOptions(_ConstructLibraryOptions_dcd2adc0):
9221
9221
 
9222
9222
  @builtins.property
9223
9223
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
9224
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
9224
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
9225
9225
 
9226
- :default: - if this option is not specified, only public repositories are supported
9226
+ :default: - OIDC auth is used
9227
9227
 
9228
9228
  :stability: experimental
9229
9229
  '''
projen/cdktf/__init__.py CHANGED
@@ -330,8 +330,8 @@ class ConstructLibraryCdktf(
330
330
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
331
331
  :param bundler_options: (experimental) Options for ``Bundler``.
332
332
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
333
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
334
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
333
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
334
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
335
335
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
336
336
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
337
337
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -1091,8 +1091,8 @@ class ConstructLibraryCdktfOptions(_ConstructLibraryOptions_dcd2adc0):
1091
1091
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
1092
1092
  :param bundler_options: (experimental) Options for ``Bundler``.
1093
1093
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
1094
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
1095
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
1094
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
1095
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
1096
1096
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
1097
1097
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
1098
1098
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -3078,7 +3078,7 @@ class ConstructLibraryCdktfOptions(_ConstructLibraryOptions_dcd2adc0):
3078
3078
 
3079
3079
  @builtins.property
3080
3080
  def code_cov(self) -> typing.Optional[builtins.bool]:
3081
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
3081
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
3082
3082
 
3083
3083
  :default: false
3084
3084
 
@@ -3089,9 +3089,9 @@ class ConstructLibraryCdktfOptions(_ConstructLibraryOptions_dcd2adc0):
3089
3089
 
3090
3090
  @builtins.property
3091
3091
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
3092
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
3092
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
3093
3093
 
3094
- :default: - if this option is not specified, only public repositories are supported
3094
+ :default: - OIDC auth is used
3095
3095
 
3096
3096
  :stability: experimental
3097
3097
  '''
projen/github/__init__.py CHANGED
@@ -4574,7 +4574,7 @@ class GithubWorkflow(
4574
4574
  self,
4575
4575
  jobs: typing.Mapping[builtins.str, typing.Union[typing.Union[_JobCallingReusableWorkflow_12ad1018, typing.Dict[builtins.str, typing.Any]], typing.Union[_Job_20ffcf45, typing.Dict[builtins.str, typing.Any]]]],
4576
4576
  ) -> None:
4577
- '''(experimental) Updates jobs for this worklow Does a complete replace, it does not try to merge the jobs.
4577
+ '''(experimental) Updates jobs for this workflow Does a complete replace, it does not try to merge the jobs.
4578
4578
 
4579
4579
  :param jobs: Jobs to update.
4580
4580
 
@@ -4585,6 +4585,19 @@ class GithubWorkflow(
4585
4585
  check_type(argname="argument jobs", value=jobs, expected_type=type_hints["jobs"])
4586
4586
  return typing.cast(None, jsii.invoke(self, "updateJobs", [jobs]))
4587
4587
 
4588
+ @builtins.property
4589
+ @jsii.member(jsii_name="jobs")
4590
+ def jobs(
4591
+ self,
4592
+ ) -> typing.Mapping[builtins.str, typing.Union[_JobCallingReusableWorkflow_12ad1018, _Job_20ffcf45]]:
4593
+ '''(experimental) All current jobs of the workflow.
4594
+
4595
+ This is a read-only copy, use the respective helper methods to add, update or remove jobs.
4596
+
4597
+ :stability: experimental
4598
+ '''
4599
+ return typing.cast(typing.Mapping[builtins.str, typing.Union[_JobCallingReusableWorkflow_12ad1018, _Job_20ffcf45]], jsii.get(self, "jobs"))
4600
+
4588
4601
  @builtins.property
4589
4602
  @jsii.member(jsii_name="name")
4590
4603
  def name(self) -> builtins.str:
@@ -5844,8 +5844,8 @@ class NodeProject(
5844
5844
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
5845
5845
  :param bundler_options: (experimental) Options for ``Bundler``.
5846
5846
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
5847
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
5848
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
5847
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
5848
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
5849
5849
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
5850
5850
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
5851
5851
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -6976,8 +6976,8 @@ class NodeProjectOptions(
6976
6976
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
6977
6977
  :param bundler_options: (experimental) Options for ``Bundler``.
6978
6978
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
6979
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
6980
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
6979
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
6980
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
6981
6981
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
6982
6982
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
6983
6983
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -8793,7 +8793,7 @@ class NodeProjectOptions(
8793
8793
 
8794
8794
  @builtins.property
8795
8795
  def code_cov(self) -> typing.Optional[builtins.bool]:
8796
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
8796
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
8797
8797
 
8798
8798
  :default: false
8799
8799
 
@@ -8804,9 +8804,9 @@ class NodeProjectOptions(
8804
8804
 
8805
8805
  @builtins.property
8806
8806
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
8807
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
8807
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
8808
8808
 
8809
- :default: - if this option is not specified, only public repositories are supported
8809
+ :default: - OIDC auth is used
8810
8810
 
8811
8811
  :stability: experimental
8812
8812
  '''
@@ -1165,8 +1165,8 @@ class TypeScriptProject(
1165
1165
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
1166
1166
  :param bundler_options: (experimental) Options for ``Bundler``.
1167
1167
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
1168
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
1169
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
1168
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
1169
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
1170
1170
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
1171
1171
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
1172
1172
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -1972,8 +1972,8 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
1972
1972
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
1973
1973
  :param bundler_options: (experimental) Options for ``Bundler``.
1974
1974
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
1975
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
1976
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
1975
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
1976
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
1977
1977
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
1978
1978
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
1979
1979
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -3873,7 +3873,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
3873
3873
 
3874
3874
  @builtins.property
3875
3875
  def code_cov(self) -> typing.Optional[builtins.bool]:
3876
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
3876
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
3877
3877
 
3878
3878
  :default: false
3879
3879
 
@@ -3884,9 +3884,9 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
3884
3884
 
3885
3885
  @builtins.property
3886
3886
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
3887
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
3887
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
3888
3888
 
3889
- :default: - if this option is not specified, only public repositories are supported
3889
+ :default: - OIDC auth is used
3890
3890
 
3891
3891
  :stability: experimental
3892
3892
  '''
@@ -4662,8 +4662,8 @@ class TypeScriptAppProject(
4662
4662
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
4663
4663
  :param bundler_options: (experimental) Options for ``Bundler``.
4664
4664
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
4665
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
4666
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
4665
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
4666
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
4667
4667
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
4668
4668
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
4669
4669
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -5143,8 +5143,8 @@ class TypeScriptLibraryProject(
5143
5143
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
5144
5144
  :param bundler_options: (experimental) Options for ``Bundler``.
5145
5145
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
5146
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
5147
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
5146
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
5147
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
5148
5148
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
5149
5149
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
5150
5150
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -5847,8 +5847,8 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
5847
5847
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
5848
5848
  :param bundler_options: (experimental) Options for ``Bundler``.
5849
5849
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
5850
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
5851
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
5850
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
5851
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
5852
5852
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
5853
5853
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
5854
5854
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -7750,7 +7750,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
7750
7750
 
7751
7751
  @builtins.property
7752
7752
  def code_cov(self) -> typing.Optional[builtins.bool]:
7753
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
7753
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
7754
7754
 
7755
7755
  :default: false
7756
7756
 
@@ -7761,9 +7761,9 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
7761
7761
 
7762
7762
  @builtins.property
7763
7763
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
7764
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
7764
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
7765
7765
 
7766
- :default: - if this option is not specified, only public repositories are supported
7766
+ :default: - OIDC auth is used
7767
7767
 
7768
7768
  :stability: experimental
7769
7769
  '''
projen/web/__init__.py CHANGED
@@ -418,8 +418,8 @@ class NextJsProject(
418
418
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
419
419
  :param bundler_options: (experimental) Options for ``Bundler``.
420
420
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
421
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
422
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
421
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
422
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
423
423
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
424
424
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
425
425
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -1110,8 +1110,8 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
1110
1110
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
1111
1111
  :param bundler_options: (experimental) Options for ``Bundler``.
1112
1112
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
1113
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
1114
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
1113
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
1114
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
1115
1115
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
1116
1116
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
1117
1117
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -2967,7 +2967,7 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
2967
2967
 
2968
2968
  @builtins.property
2969
2969
  def code_cov(self) -> typing.Optional[builtins.bool]:
2970
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
2970
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
2971
2971
 
2972
2972
  :default: false
2973
2973
 
@@ -2978,9 +2978,9 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
2978
2978
 
2979
2979
  @builtins.property
2980
2980
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
2981
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
2981
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
2982
2982
 
2983
- :default: - if this option is not specified, only public repositories are supported
2983
+ :default: - OIDC auth is used
2984
2984
 
2985
2985
  :stability: experimental
2986
2986
  '''
@@ -3558,8 +3558,8 @@ class NextJsTypeScriptProject(
3558
3558
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
3559
3559
  :param bundler_options: (experimental) Options for ``Bundler``.
3560
3560
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
3561
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
3562
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
3561
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
3562
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
3563
3563
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
3564
3564
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
3565
3565
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -4301,8 +4301,8 @@ class NextJsTypeScriptProjectOptions(
4301
4301
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
4302
4302
  :param bundler_options: (experimental) Options for ``Bundler``.
4303
4303
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
4304
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
4305
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
4304
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
4305
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
4306
4306
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
4307
4307
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
4308
4308
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -6232,7 +6232,7 @@ class NextJsTypeScriptProjectOptions(
6232
6232
 
6233
6233
  @builtins.property
6234
6234
  def code_cov(self) -> typing.Optional[builtins.bool]:
6235
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
6235
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
6236
6236
 
6237
6237
  :default: false
6238
6238
 
@@ -6243,9 +6243,9 @@ class NextJsTypeScriptProjectOptions(
6243
6243
 
6244
6244
  @builtins.property
6245
6245
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
6246
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
6246
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
6247
6247
 
6248
- :default: - if this option is not specified, only public repositories are supported
6248
+ :default: - OIDC auth is used
6249
6249
 
6250
6250
  :stability: experimental
6251
6251
  '''
@@ -7137,8 +7137,8 @@ class ReactProject(
7137
7137
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
7138
7138
  :param bundler_options: (experimental) Options for ``Bundler``.
7139
7139
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
7140
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
7141
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
7140
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
7141
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
7142
7142
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
7143
7143
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
7144
7144
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -7870,8 +7870,8 @@ class ReactTypeScriptProject(
7870
7870
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
7871
7871
  :param bundler_options: (experimental) Options for ``Bundler``.
7872
7872
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
7873
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
7874
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
7873
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
7874
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
7875
7875
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
7876
7876
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
7877
7877
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -8589,8 +8589,8 @@ class ReactTypeScriptProjectOptions(
8589
8589
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
8590
8590
  :param bundler_options: (experimental) Options for ``Bundler``.
8591
8591
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
8592
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
8593
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
8592
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
8593
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
8594
8594
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
8595
8595
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
8596
8596
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -10494,7 +10494,7 @@ class ReactTypeScriptProjectOptions(
10494
10494
 
10495
10495
  @builtins.property
10496
10496
  def code_cov(self) -> typing.Optional[builtins.bool]:
10497
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
10497
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
10498
10498
 
10499
10499
  :default: false
10500
10500
 
@@ -10505,9 +10505,9 @@ class ReactTypeScriptProjectOptions(
10505
10505
 
10506
10506
  @builtins.property
10507
10507
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
10508
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
10508
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
10509
10509
 
10510
- :default: - if this option is not specified, only public repositories are supported
10510
+ :default: - OIDC auth is used
10511
10511
 
10512
10512
  :stability: experimental
10513
10513
  '''
@@ -11657,8 +11657,8 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
11657
11657
  :param build_workflow_triggers: (deprecated) Build workflow triggers. Default: "{ pullRequest: {}, workflowDispatch: {} }"
11658
11658
  :param bundler_options: (experimental) Options for ``Bundler``.
11659
11659
  :param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
11660
- :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``. Default: false
11661
- :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories. Default: - if this option is not specified, only public repositories are supported
11660
+ :param code_cov: (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``. Default: false
11661
+ :param code_cov_token_secret: (experimental) Define the secret name for a specified https://codecov.io/ token. Default: - OIDC auth is used
11662
11662
  :param copyright_owner: (experimental) License copyright owner. Default: - defaults to the value of authorName or "" if ``authorName`` is undefined.
11663
11663
  :param copyright_period: (experimental) The copyright years to put in the LICENSE file. Default: - current year
11664
11664
  :param dependabot: (experimental) Use dependabot to handle dependency upgrades. Cannot be used in conjunction with ``depsUpgrade``. Default: false
@@ -13488,7 +13488,7 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
13488
13488
 
13489
13489
  @builtins.property
13490
13490
  def code_cov(self) -> typing.Optional[builtins.bool]:
13491
- '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v4 A secret is required for private repos. Configured with ``@codeCovTokenSecret``.
13491
+ '''(experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via ``codeCovTokenSecret``.
13492
13492
 
13493
13493
  :default: false
13494
13494
 
@@ -13499,9 +13499,9 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
13499
13499
 
13500
13500
  @builtins.property
13501
13501
  def code_cov_token_secret(self) -> typing.Optional[builtins.str]:
13502
- '''(experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.
13502
+ '''(experimental) Define the secret name for a specified https://codecov.io/ token.
13503
13503
 
13504
- :default: - if this option is not specified, only public repositories are supported
13504
+ :default: - OIDC auth is used
13505
13505
 
13506
13506
  :stability: experimental
13507
13507
  '''
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
8
8
  os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
9
9
 
10
10
  __jsii_assembly__ = jsii.JSIIAssembly.load(
11
- "projen", "0.95.4", "projen", "projen@0.95.4.jsii.tgz"
11
+ "projen", "0.95.6", "projen", "projen@0.95.6.jsii.tgz"
12
12
  )
13
13
 
14
14
  exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen
3
- Version: 0.95.4
3
+ Version: 0.95.6
4
4
  Summary: CDK for software projects
5
5
  Home-page: https://github.com/projen/projen.git
6
6
  Author: Amazon Web Services
@@ -0,0 +1,27 @@
1
+ projen/__init__.py,sha256=pzI4A8zChKr5Tq3c_1syQkaWGuo_hMKTDy0fYTrdPHQ,684078
2
+ projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ projen/_jsii/__init__.py,sha256=OH8E_ZNzhgE5iclc-cIdPOR75aSJKB9-zSu-Z20tzck,1404
4
+ projen/_jsii/projen@0.95.6.jsii.tgz,sha256=n0hZSegl93co1CQZXEcjv5-wf4poZ4JcoBZnuONCx5Q,2931934
5
+ projen/awscdk/__init__.py,sha256=sT-m8muQp_TShuN_ihs5hklKAAo6DsufVMlyRLkXVC4,1143538
6
+ projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
7
+ projen/cdk/__init__.py,sha256=cqafXlO1e7n1va6jgRRZC3a-WvY-qNWW4WFYqjghlG4,552882
8
+ projen/cdk8s/__init__.py,sha256=jSvRCF0wrlru9TO6EgrsvdiHaKTCQJuB7D-zktt_B5g,631019
9
+ projen/cdktf/__init__.py,sha256=AGl_EGADdss3LhK9ETv-sRm1dSDNlFarpCHjt3JFK2M,241191
10
+ projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
11
+ projen/github/__init__.py,sha256=lcMheFxOVpJ1e2ZeZQRFwSW3n1epc0yifnAIcdOb-_c,482364
12
+ projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
13
+ projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
14
+ projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
15
+ projen/javascript/__init__.py,sha256=DdU966VrN9qm0jnKHrucx0yhvpY4IkxWhNspT8aJLF8,900006
16
+ projen/javascript/biome_config/__init__.py,sha256=MYHs9YMtqiLfZP26ZPpafymc_ysKN7PE6cjvyScjjCU,224184
17
+ projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
18
+ projen/release/__init__.py,sha256=4HYFHWMik-vWr7U0afYnk6ghl9_LLdMtHrfb8tIfxxU,331617
19
+ projen/typescript/__init__.py,sha256=I9ouAnQ9ja8Ja1MKlXi4vb9NSzvSdpWfbEDR7O2uSQw,530553
20
+ projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
21
+ projen/web/__init__.py,sha256=uZ_wjknTd-YBL2zjzcTxhOPeURcyczAEMT1IsDu7Keo,861110
22
+ projen-0.95.6.data/scripts/projen,sha256=hWGm95YrwAcy9Tiv_bVrlNd5bLwaFu0mLCEAPPq456Y,356
23
+ projen-0.95.6.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
24
+ projen-0.95.6.dist-info/METADATA,sha256=_CuqPvt2HO4tZGsYsiaVMMEr8PaeicW9OXDYz16C60o,79609
25
+ projen-0.95.6.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
26
+ projen-0.95.6.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
27
+ projen-0.95.6.dist-info/RECORD,,
Binary file
@@ -1,27 +0,0 @@
1
- projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
2
- projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- projen/_jsii/__init__.py,sha256=1aB8I4r5tzFCxO3OLoH7AaP8q6k2ivpwFxuJYZC3xQg,1404
4
- projen/_jsii/projen@0.95.4.jsii.tgz,sha256=v8PraPyOUMKDP3to_fN8ZedCH31Jc1yZlJQdXNk3N0I,2930085
5
- projen/awscdk/__init__.py,sha256=UKSV6YtkAP7K5ENKVEfLW5-a3S8HXr1CcdDvuTdwS0w,1144447
6
- projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
7
- projen/cdk/__init__.py,sha256=J8me0bPT37Nwj3x0rWDN3sNTExQAXMUljdzhE6dV2ro,553488
8
- projen/cdk8s/__init__.py,sha256=YHwHEgQT86lUTBA2x09DJsodCeTDF7uENnQ0SyVfNXQ,631625
9
- projen/cdktf/__init__.py,sha256=-yWnxXi8YEQBCgKQqrWhpd74BfnuZEO_PgpfJ_Re2_Q,241494
10
- projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
11
- projen/github/__init__.py,sha256=u3gAZFXz46k_IAN5EdfGwJj6phjQePm41TjwlWpDwcs,481816
12
- projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
13
- projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
14
- projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
15
- projen/javascript/__init__.py,sha256=WaYQxwjjGn3hcbDoEcNKtQTbWtlZ6lD9bNvXR0eYmq8,900309
16
- projen/javascript/biome_config/__init__.py,sha256=MYHs9YMtqiLfZP26ZPpafymc_ysKN7PE6cjvyScjjCU,224184
17
- projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
18
- projen/release/__init__.py,sha256=4HYFHWMik-vWr7U0afYnk6ghl9_LLdMtHrfb8tIfxxU,331617
19
- projen/typescript/__init__.py,sha256=nfLT-1tkUIV6Ppei_PooAt-MB6LBJzHqEv93t4tlbb8,531260
20
- projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
21
- projen/web/__init__.py,sha256=Q6DgKaFSFsLgPH3_a7WtRfBZfyn221RhB_rxbtWc6Ss,862322
22
- projen-0.95.4.data/scripts/projen,sha256=8_PoRq_mXIGgEL5EeZiTy7Kajk0tsWtszgrriqpd54E,356
23
- projen-0.95.4.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
24
- projen-0.95.4.dist-info/METADATA,sha256=T7kH0XCFEzEiLXYINDMqt0TPIcKKHKQy85CkFkeGiZw,79609
25
- projen-0.95.4.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
26
- projen-0.95.4.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
27
- projen-0.95.4.dist-info/RECORD,,