lerna-projen 0.1.890 → 0.1.892

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.
Files changed (4) hide show
  1. package/.jsii +3 -3
  2. package/API.md +34 -0
  3. package/lib/index.js +2 -2
  4. package/package.json +3 -3
package/.jsii CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "constructs": "^10.8.1",
18
- "projen": "^0.103.11"
18
+ "projen": "^0.103.13"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -1129,6 +1129,6 @@
1129
1129
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1130
1130
  }
1131
1131
  },
1132
- "version": "0.1.890",
1133
- "fingerprint": "5zuBZ6mtDg8TPFwTQ8wEHhphD46/B3LqVJmu6v04arQ="
1132
+ "version": "0.1.892",
1133
+ "fingerprint": "Tyk7S8tILeR47afzw/6JKzobhDSfBe9HQqvCCyM/BqY="
1134
1134
  }
package/API.md CHANGED
@@ -3240,6 +3240,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3240
3240
  | <code><a href="#lerna-projen.LernaProjectOptions.property.stability">stability</a></code> | <code>string</code> | Package's Stability. |
3241
3241
  | <code><a href="#lerna-projen.LernaProjectOptions.property.yarnBerryOptions">yarnBerryOptions</a></code> | <code>projen.javascript.YarnBerryOptions</code> | Options for Yarn Berry. |
3242
3242
  | <code><a href="#lerna-projen.LernaProjectOptions.property.bumpPackage">bumpPackage</a></code> | <code>string</code> | The `commit-and-tag-version` compatible package used to bump the package version, as a dependency string. |
3243
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.githubReleaseLatest">githubReleaseLatest</a></code> | <code>boolean</code> | Whether GitHub should explicitly mark the release from the default branch as the latest release. |
3243
3244
  | <code><a href="#lerna-projen.LernaProjectOptions.property.jsiiReleaseVersion">jsiiReleaseVersion</a></code> | <code>string</code> | Version requirement of `publib` which is used to publish modules to npm. |
3244
3245
  | <code><a href="#lerna-projen.LernaProjectOptions.property.majorVersion">majorVersion</a></code> | <code>number</code> | Major version to release from the default branch. |
3245
3246
  | <code><a href="#lerna-projen.LernaProjectOptions.property.minMajorVersion">minMajorVersion</a></code> | <code>number</code> | Minimal Major version to release. |
@@ -4393,6 +4394,22 @@ This can be any compatible package version, including the deprecated `standard-v
4393
4394
 
4394
4395
  ---
4395
4396
 
4397
+ ##### `githubReleaseLatest`<sup>Optional</sup> <a name="githubReleaseLatest" id="lerna-projen.LernaProjectOptions.property.githubReleaseLatest"></a>
4398
+
4399
+ ```typescript
4400
+ public readonly githubReleaseLatest: boolean;
4401
+ ```
4402
+
4403
+ - *Type:* boolean
4404
+ - *Default:* GitHub determines the latest release based on date and semantic version.
4405
+
4406
+ Whether GitHub should explicitly mark the release from the default branch as the latest release.
4407
+
4408
+ Set to `true` to mark the release as latest, or `false` to explicitly not
4409
+ mark it as latest.
4410
+
4411
+ ---
4412
+
4396
4413
  ##### `jsiiReleaseVersion`<sup>Optional</sup> <a name="jsiiReleaseVersion" id="lerna-projen.LernaProjectOptions.property.jsiiReleaseVersion"></a>
4397
4414
 
4398
4415
  ```typescript
@@ -5481,6 +5498,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5481
5498
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.stability">stability</a></code> | <code>string</code> | Package's Stability. |
5482
5499
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.yarnBerryOptions">yarnBerryOptions</a></code> | <code>projen.javascript.YarnBerryOptions</code> | Options for Yarn Berry. |
5483
5500
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bumpPackage">bumpPackage</a></code> | <code>string</code> | The `commit-and-tag-version` compatible package used to bump the package version, as a dependency string. |
5501
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.githubReleaseLatest">githubReleaseLatest</a></code> | <code>boolean</code> | Whether GitHub should explicitly mark the release from the default branch as the latest release. |
5484
5502
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.jsiiReleaseVersion">jsiiReleaseVersion</a></code> | <code>string</code> | Version requirement of `publib` which is used to publish modules to npm. |
5485
5503
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.majorVersion">majorVersion</a></code> | <code>number</code> | Major version to release from the default branch. |
5486
5504
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.minMajorVersion">minMajorVersion</a></code> | <code>number</code> | Minimal Major version to release. |
@@ -6652,6 +6670,22 @@ This can be any compatible package version, including the deprecated `standard-v
6652
6670
 
6653
6671
  ---
6654
6672
 
6673
+ ##### `githubReleaseLatest`<sup>Optional</sup> <a name="githubReleaseLatest" id="lerna-projen.LernaTypescriptProjectOptions.property.githubReleaseLatest"></a>
6674
+
6675
+ ```typescript
6676
+ public readonly githubReleaseLatest: boolean;
6677
+ ```
6678
+
6679
+ - *Type:* boolean
6680
+ - *Default:* GitHub determines the latest release based on date and semantic version.
6681
+
6682
+ Whether GitHub should explicitly mark the release from the default branch as the latest release.
6683
+
6684
+ Set to `true` to mark the release as latest, or `false` to explicitly not
6685
+ mark it as latest.
6686
+
6687
+ ---
6688
+
6655
6689
  ##### `jsiiReleaseVersion`<sup>Optional</sup> <a name="jsiiReleaseVersion" id="lerna-projen.LernaTypescriptProjectOptions.property.jsiiReleaseVersion"></a>
6656
6690
 
6657
6691
  ```typescript
package/lib/index.js CHANGED
@@ -95,7 +95,7 @@ const lockedTaskNames = ['build', 'upgrade', 'upgrade-projen', 'clobber', 'post-
95
95
  * @pjid lerna-project
96
96
  */
97
97
  class LernaProject extends projen_1.javascript.NodeProject {
98
- static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.890" };
98
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.892" };
99
99
  projenrcTs;
100
100
  docsDirectory;
101
101
  docgen;
@@ -149,7 +149,7 @@ exports.LernaProject = LernaProject;
149
149
  * @pjid lerna-ts-project
150
150
  */
151
151
  class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
152
- static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.890" };
152
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.892" };
153
153
  sinceLastRelease;
154
154
  useNx;
155
155
  independentMode;
package/package.json CHANGED
@@ -33,14 +33,14 @@
33
33
  "jsii-docgen": "^10.5.0",
34
34
  "jsii-pacmak": "^1.140.0",
35
35
  "jsii-rosetta": "5.9.x",
36
- "projen": "^0.103.11",
36
+ "projen": "^0.103.13",
37
37
  "ts-jest": "^29.4.12",
38
38
  "ts-node": "^10.9.2",
39
39
  "typescript": "^5.9.3"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "constructs": "^10.8.1",
43
- "projen": "^0.103.11"
43
+ "projen": "^0.103.13"
44
44
  },
45
45
  "dependencies": {
46
46
  "commander": "^11.1.0",
@@ -72,7 +72,7 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "version": "0.1.890",
75
+ "version": "0.1.892",
76
76
  "jest": {
77
77
  "coverageProvider": "v8",
78
78
  "testMatch": [