You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/05/10 19:00:50 UTC

[trafficcontrol-trafficops-types] branch 4.x updated (a4be2bb -> 04b0a7c)

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a change to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git


    from a4be2bb  Version bump
     new 8a9b031  Fix missing optional ISO gen request properties
     new 04b0a7c  Version bump

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 4 ++--
 package.json      | 2 +-
 src/iso.ts        | 4 ++++
 3 files changed, 7 insertions(+), 3 deletions(-)


[trafficcontrol-trafficops-types] 01/02: Fix missing optional ISO gen request properties

Posted by oc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 8a9b031c048c4476ea6d69fba4ac70dcc20c32b5
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed Feb 22 15:20:26 2023 -0700

    Fix missing optional ISO gen request properties
    
    (cherry picked from commit 1a83a65fcd822c90acd8bc1bd76d0445849c60db)
---
 src/iso.ts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/iso.ts b/src/iso.ts
index f21e003..98b7721 100644
--- a/src/iso.ts
+++ b/src/iso.ts
@@ -25,6 +25,10 @@ interface ISOFields {
 	interfaceName?: string | null;
 	ip6Address?: string | null;
 	ip6Gateway?: string | null;
+	mgmtInterface?: string | null;
+	mgmtIpAddress?: string | null;
+	mgmtIpGateway?: string | null;
+	mgmtIpNetmask?: string | null;
 	osVersionDir: string;
 	rootPass: string;
 }


[trafficcontrol-trafficops-types] 02/02: Version bump

Posted by oc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 04b0a7c28a760641d01e744fd1185ab7e0a2f2e3
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed May 10 13:00:09 2023 -0600

    Version bump
    
    (cherry picked from commit 06c73af172d35a975f2ac4f085ff83d7106957be)
---
 package-lock.json | 4 ++--
 package.json      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 8482b87..b428cc2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
 	"name": "trafficops-types",
-	"version": "4.0.9",
+	"version": "4.0.10",
 	"lockfileVersion": 2,
 	"requires": true,
 	"packages": {
 		"": {
 			"name": "trafficops-types",
-			"version": "4.0.9",
+			"version": "4.0.10",
 			"license": "Apache-2.0",
 			"devDependencies": {
 				"@typescript-eslint/eslint-plugin": "^5.0.0",
diff --git a/package.json b/package.json
index ea61142..5e1dbb2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "trafficops-types",
-	"version": "4.0.9",
+	"version": "4.0.10",
 	"description": "A library for dealing with Apache Traffic Control objects",
 	"main": "dist/index.js",
 	"scripts": {