projen 0.95.3__tar.gz → 0.95.4__tar.gz

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.

Files changed (35) hide show
  1. {projen-0.95.3/src/projen.egg-info → projen-0.95.4}/PKG-INFO +1 -1
  2. {projen-0.95.3 → projen-0.95.4}/setup.py +2 -2
  3. {projen-0.95.3 → projen-0.95.4}/src/projen/_jsii/__init__.py +1 -1
  4. {projen-0.95.3 → projen-0.95.4}/src/projen/_jsii/bin/projen +1 -1
  5. projen-0.95.4/src/projen/_jsii/projen@0.95.4.jsii.tgz +0 -0
  6. {projen-0.95.3 → projen-0.95.4}/src/projen/javascript/__init__.py +4 -2
  7. {projen-0.95.3 → projen-0.95.4/src/projen.egg-info}/PKG-INFO +1 -1
  8. {projen-0.95.3 → projen-0.95.4}/src/projen.egg-info/SOURCES.txt +1 -1
  9. projen-0.95.3/src/projen/_jsii/projen@0.95.3.jsii.tgz +0 -0
  10. {projen-0.95.3 → projen-0.95.4}/LICENSE +0 -0
  11. {projen-0.95.3 → projen-0.95.4}/MANIFEST.in +0 -0
  12. {projen-0.95.3 → projen-0.95.4}/README.md +0 -0
  13. {projen-0.95.3 → projen-0.95.4}/pyproject.toml +0 -0
  14. {projen-0.95.3 → projen-0.95.4}/setup.cfg +0 -0
  15. {projen-0.95.3 → projen-0.95.4}/src/projen/__init__.py +0 -0
  16. {projen-0.95.3 → projen-0.95.4}/src/projen/awscdk/__init__.py +0 -0
  17. {projen-0.95.3 → projen-0.95.4}/src/projen/build/__init__.py +0 -0
  18. {projen-0.95.3 → projen-0.95.4}/src/projen/cdk/__init__.py +0 -0
  19. {projen-0.95.3 → projen-0.95.4}/src/projen/cdk8s/__init__.py +0 -0
  20. {projen-0.95.3 → projen-0.95.4}/src/projen/cdktf/__init__.py +0 -0
  21. {projen-0.95.3 → projen-0.95.4}/src/projen/circleci/__init__.py +0 -0
  22. {projen-0.95.3 → projen-0.95.4}/src/projen/github/__init__.py +0 -0
  23. {projen-0.95.3 → projen-0.95.4}/src/projen/github/workflows/__init__.py +0 -0
  24. {projen-0.95.3 → projen-0.95.4}/src/projen/gitlab/__init__.py +0 -0
  25. {projen-0.95.3 → projen-0.95.4}/src/projen/java/__init__.py +0 -0
  26. {projen-0.95.3 → projen-0.95.4}/src/projen/javascript/biome_config/__init__.py +0 -0
  27. {projen-0.95.3 → projen-0.95.4}/src/projen/py.typed +0 -0
  28. {projen-0.95.3 → projen-0.95.4}/src/projen/python/__init__.py +0 -0
  29. {projen-0.95.3 → projen-0.95.4}/src/projen/release/__init__.py +0 -0
  30. {projen-0.95.3 → projen-0.95.4}/src/projen/typescript/__init__.py +0 -0
  31. {projen-0.95.3 → projen-0.95.4}/src/projen/vscode/__init__.py +0 -0
  32. {projen-0.95.3 → projen-0.95.4}/src/projen/web/__init__.py +0 -0
  33. {projen-0.95.3 → projen-0.95.4}/src/projen.egg-info/dependency_links.txt +0 -0
  34. {projen-0.95.3 → projen-0.95.4}/src/projen.egg-info/requires.txt +0 -0
  35. {projen-0.95.3 → projen-0.95.4}/src/projen.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen
3
- Version: 0.95.3
3
+ Version: 0.95.4
4
4
  Summary: CDK for software projects
5
5
  Home-page: https://github.com/projen/projen.git
6
6
  Author: Amazon Web Services
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "projen",
8
- "version": "0.95.3",
8
+ "version": "0.95.4",
9
9
  "description": "CDK for software projects",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/projen/projen.git",
@@ -43,7 +43,7 @@ kwargs = json.loads(
43
43
  ],
44
44
  "package_data": {
45
45
  "projen._jsii": [
46
- "projen@0.95.3.jsii.tgz"
46
+ "projen@0.95.4.jsii.tgz"
47
47
  ],
48
48
  "projen": [
49
49
  "py.typed"
@@ -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.3", __name__[0:-6], "projen@0.95.3.jsii.tgz"
34
+ "projen", "0.95.4", __name__[0:-6], "projen@0.95.4.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -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.3", "projen", "projen@0.95.3.jsii.tgz"
11
+ "projen", "0.95.4", "projen", "projen@0.95.4.jsii.tgz"
12
12
  )
13
13
 
14
14
  exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
@@ -2236,7 +2236,7 @@ class Jest(
2236
2236
  :param extra_cli_options: (experimental) Additional options to pass to the Jest CLI invocation. Default: - no extra options
2237
2237
  :param ignore_patterns: (deprecated) Defines ``testPathIgnorePatterns`` and ``coveragePathIgnorePatterns``. Default: ["/node_modules/"]
2238
2238
  :param jest_config: (experimental) Jest configuration. Default: - default jest configuration
2239
- :param jest_version: (experimental) The version of jest to use. Note that same version is used as version of ``@types/jest`` and ``ts-jest`` (if Typescript in use), so given version should work also for those. Default: - installs the latest jest version
2239
+ :param jest_version: (experimental) The version of jest to use. Note that same version is used as version of ``@types/jest`` and ``ts-jest`` (if Typescript in use), so given version should work also for those. With Jest 30 ts-jest version 29 is used (if Typescript in use) Default: - installs the latest jest version
2240
2240
  :param junit_reporting: (experimental) Result processing with jest-junit. Output directory is ``test-reports/``. Default: true
2241
2241
  :param pass_with_no_tests: (experimental) Pass with no tests. Default: - true
2242
2242
  :param preserve_default_reporters: (experimental) Preserve the default Jest reporter when additional reporters are added. Default: true
@@ -3844,7 +3844,7 @@ class JestOptions:
3844
3844
  :param extra_cli_options: (experimental) Additional options to pass to the Jest CLI invocation. Default: - no extra options
3845
3845
  :param ignore_patterns: (deprecated) Defines ``testPathIgnorePatterns`` and ``coveragePathIgnorePatterns``. Default: ["/node_modules/"]
3846
3846
  :param jest_config: (experimental) Jest configuration. Default: - default jest configuration
3847
- :param jest_version: (experimental) The version of jest to use. Note that same version is used as version of ``@types/jest`` and ``ts-jest`` (if Typescript in use), so given version should work also for those. Default: - installs the latest jest version
3847
+ :param jest_version: (experimental) The version of jest to use. Note that same version is used as version of ``@types/jest`` and ``ts-jest`` (if Typescript in use), so given version should work also for those. With Jest 30 ts-jest version 29 is used (if Typescript in use) Default: - installs the latest jest version
3848
3848
  :param junit_reporting: (experimental) Result processing with jest-junit. Output directory is ``test-reports/``. Default: true
3849
3849
  :param pass_with_no_tests: (experimental) Pass with no tests. Default: - true
3850
3850
  :param preserve_default_reporters: (experimental) Preserve the default Jest reporter when additional reporters are added. Default: true
@@ -3969,6 +3969,8 @@ class JestOptions:
3969
3969
 
3970
3970
  Note that same version is used as version of ``@types/jest`` and ``ts-jest`` (if Typescript in use), so given version should work also for those.
3971
3971
 
3972
+ With Jest 30 ts-jest version 29 is used (if Typescript in use)
3973
+
3972
3974
  :default: - installs the latest jest version
3973
3975
 
3974
3976
  :stability: experimental
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen
3
- Version: 0.95.3
3
+ Version: 0.95.4
4
4
  Summary: CDK for software projects
5
5
  Home-page: https://github.com/projen/projen.git
6
6
  Author: Amazon Web Services
@@ -11,7 +11,7 @@ src/projen.egg-info/dependency_links.txt
11
11
  src/projen.egg-info/requires.txt
12
12
  src/projen.egg-info/top_level.txt
13
13
  src/projen/_jsii/__init__.py
14
- src/projen/_jsii/projen@0.95.3.jsii.tgz
14
+ src/projen/_jsii/projen@0.95.4.jsii.tgz
15
15
  src/projen/_jsii/bin/projen
16
16
  src/projen/awscdk/__init__.py
17
17
  src/projen/build/__init__.py
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes