You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A ChangelogRenderer class takes in the determined changes and other relevant metadata
@@ -83,8 +76,8 @@ export default class DefaultChangelogRenderer {
83
76
* @param {boolean} config.isVersionPlans Whether or not Nx release version plans are the source of truth for the changelog entry
84
77
* @param {ChangelogRenderOptions} config.changelogRenderOptions The options specific to the ChangelogRenderer implementation
85
78
* @param {DependencyBump[]} config.dependencyBumps Optional list of additional dependency bumps that occurred as part of the release, outside of the change data
86
-
* @param {GithubRepoData} config.repoData Resolved data for the current GitHub repository
87
79
* @param {NxReleaseConfig['conventionalCommits'] | null} config.conventionalCommitsConfig The configuration for conventional commits, or null if version plans are being used
80
+
* @param {RemoteReleaseClient} config.remoteReleaseClient The remote release client to use for formatting references
88
81
*/
89
82
constructor(config: {
90
83
changes: ChangelogChange[];
@@ -94,8 +87,8 @@ export default class DefaultChangelogRenderer {
Copy file name to clipboardExpand all lines: packages/nx/schemas/nx-schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -853,7 +853,7 @@
853
853
"oneOf": [
854
854
{
855
855
"type": "string",
856
-
"enum": ["github"]
856
+
"enum": ["github", "gitlab"]
857
857
},
858
858
{
859
859
"type": "boolean",
@@ -899,15 +899,15 @@
899
899
"properties": {
900
900
"provider": {
901
901
"type": "string",
902
-
"enum": ["github-enterprise-server"]
902
+
"enum": ["github-enterprise-server", "gitlab"]
903
903
},
904
904
"hostname": {
905
905
"type": "string",
906
906
"description": "The hostname of the VCS provider instance, e.g. github.example.com"
907
907
},
908
908
"apiBaseUrl": {
909
909
"type": "string",
910
-
"description": "The base URL for the relevant VCS provider API. If not set, this will default to `https://${hostname}/api/v3`"
910
+
"description": "The base URL for the relevant VCS provider API. If not set, this will default to `https://${hostname}/api/v3` (github) or `https://${hostname}/api/v4` (gitlab)."
0 commit comments