Skip to content

Commit 93e5fbf

Browse files
vimleshmishraSumoSourabhTerraform User
authored
Merge pull request #447 from vimleshmishra/master
* Updating code owners for the github repository (#439) Updating code owners Co-authored-by: Sourabh Jain <[email protected]> * Create CodeOwners File [Terraform] * CP-8174 VSDK Changes to support source sizing decorators (#441) * __hash__ is needed in python 3 * DLPX-79760 SnapshotDefinitionDataPaths object is not hashable since py2-3 transition * DOC-2234 Update new logo in developer.delphix.com * Resolved COnflicts * revert logo chnages * revert logo chnages * Resolve Conflicts * revert changes * revert logo.png * Resolve Conflicts * DOC-2234 Update new logo in developer.delphix.com * logo chnages * DOC-2234 Update new logo in developer.delphix.com * new favicon * incorporated review comments * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * Changes suggested by Aleks * CP-8174 VSDK Changes to support source sizing decorators * reverted dvp version related changes * reverted extra comma * update engine API version * Fixed Formatting Issues * Fixed Formatting Issues * Fixed Unit Tests * Fixed Unit Tests * CP-8293 Update version to 4.0.5.dev0 for virtualization-sdk develop branch before updating github actions (#442) * __hash__ is needed in python 3 * DLPX-79760 SnapshotDefinitionDataPaths object is not hashable since py2-3 transition * DOC-2234 Update new logo in developer.delphix.com * Resolved COnflicts * revert logo chnages * revert logo chnages * Resolve Conflicts * revert changes * revert logo.png * Resolve Conflicts * DOC-2234 Update new logo in developer.delphix.com * logo chnages * DOC-2234 Update new logo in developer.delphix.com * new favicon * incorporated review comments * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * Changes suggested by Aleks * CP-8174 VSDK Changes to support source sizing decorators * reverted dvp version related changes * reverted extra comma * update engine API version * Fixed Formatting Issues * Fixed Formatting Issues * Fixed Unit Tests * Fixed Unit Tests * Bumping up dvp-api, vsdk * uppdate formatting * Revert "CP-8293 Update version to 4.0.5.dev0 for virtualization-sdk develop branch before updating github actions (#442)" (#443) This reverts commit 222517e. * CP-8293 Update version to 4.0.5.dev0 for virtualization-sdk develop branch before updating github actions (#444) * __hash__ is needed in python 3 * DLPX-79760 SnapshotDefinitionDataPaths object is not hashable since py2-3 transition * DOC-2234 Update new logo in developer.delphix.com * Resolved COnflicts * revert logo chnages * revert logo chnages * Resolve Conflicts * revert changes * revert logo.png * Resolve Conflicts * DOC-2234 Update new logo in developer.delphix.com * logo chnages * DOC-2234 Update new logo in developer.delphix.com * new favicon * incorporated review comments * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * DLPX-81195 develop version of vSDK needs to be bumped up to 4.0.4 for testing to use latest vSDK code * Changes suggested by Aleks * CP-8174 VSDK Changes to support source sizing decorators * reverted dvp version related changes * reverted extra comma * update engine API version * Fixed Formatting Issues * Fixed Formatting Issues * Fixed Unit Tests * Fixed Unit Tests * Bumping up dvp-api, vsdk * uppdate formatting * for rerun the failed runs * bumpversion support dev bumping * revert bumpversion support dev bumping * bump up version from dev0 to dev1 * bump up version from dev0 to dev1 * virtualization-sdk master branch will always refer dlpx-appgate stage/release * virtualization-sdk master branch will always refer dlpx-appgate stage/release * virtualization-sdk master branch will always refer dlpx-appgate stage/release * virtualization-sdk master branch will always refer dlpx-appgate stage/release * virtualization-sdk master branch will always refer dlpx-appgate stage/release * Fixed Issue: Lint common - Python38 Co-authored-by: Sourabh Jain <[email protected]> Co-authored-by: Sourabh Jain <[email protected]> Co-authored-by: Terraform User <[email protected]>
2 parents 2fb80e1 + 8fd66cd commit 93e5fbf

File tree

21 files changed

+277
-26
lines changed

21 files changed

+277
-26
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.0.4
2+
current_version = 4.0.5.dev1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?

.github/CODEOWNERS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
* @ankursarin @nhlien93 @mothslaw
1+
#
2+
# Copyright (c) 2022 by Delphix. All rights reserved.
3+
#
4+
5+
* @delphix/gatekeepers-appdata

common/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PYTHON_SRC = 'src/main/python'
55

66
install_requires = [
7-
"dvp-api == 1.6.3",
7+
"dvp-api == 1.7.0.dev0",
88
]
99

1010
with open(os.path.join(PYTHON_SRC, 'dlpx/virtualization/common/VERSION')) as version_file:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.4
1+
4.0.5.dev1

common/src/main/python/dlpx/virtualization/common/_common_classes.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ def user(self):
6565
return self.__user
6666

6767
def to_proto(self):
68-
"""Converts plugin class RemoteConnection to protobuf class common_pb2.RemoteConnection
68+
"""Converts plugin class RemoteConnection to protobuf class
69+
common_pb2.RemoteConnection
6970
"""
7071
remote_connection = common_pb2.RemoteConnection()
7172
remote_connection.environment.CopyFrom(self.environment.to_proto())
@@ -74,7 +75,8 @@ def to_proto(self):
7475

7576
@staticmethod
7677
def from_proto(connection):
77-
"""Converts protobuf class common_pb2.RemoteConnection to plugin class RemoteConnection
78+
"""Converts protobuf class common_pb2.RemoteConnection to plugin class
79+
RemoteConnection
7880
"""
7981
if not isinstance(connection, common_pb2.RemoteConnection):
8082
raise IncorrectTypeError(
@@ -411,7 +413,8 @@ def public_key(self):
411413

412414
@staticmethod
413415
def from_proto(credentials_result):
414-
"""Converts protobuf class libs_pb2.CredentialsResult to plugin class KeyPairCredentials
416+
"""Converts protobuf class libs_pb2.CredentialsResult to plugin class
417+
KeyPairCredentials
415418
"""
416419
if not isinstance(credentials_result, libs_pb2.CredentialsResult):
417420
raise IncorrectTypeError(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.4
1+
4.0.5.dev1

libs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version = version_file.read().strip()
88

99
install_requires = [
10-
"dvp-api == 1.6.3",
10+
"dvp-api == 1.7.0.dev0",
1111
"dvp-common == {}".format(version)
1212
]
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.4
1+
4.0.5.dev1

platform/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version = version_file.read().strip()
88

99
install_requires = [
10-
"dvp-api == 1.6.3",
10+
"dvp-api == 1.7.0.dev0",
1111
"dvp-common == {}".format(version),
1212
"enum34;python_version < '3.4'",
1313
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.4
1+
4.0.5.dev1

0 commit comments

Comments
 (0)