zenml-nightly 0.71.0.dev20250105__py3-none-any.whl → 0.71.0.dev20250107__py3-none-any.whl
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.
- zenml/VERSION +1 -1
- zenml/zen_server/auth.py +21 -2
- zenml/zen_server/routers/auth_endpoints.py +2 -1
- zenml/zen_stores/rest_zen_store.py +11 -1
- {zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/METADATA +2 -2
- {zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/RECORD +9 -16
- {zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/WHEEL +1 -1
- CLA.md +0 -110
- CODE-OF-CONDUCT.md +0 -132
- CONTRIBUTING.md +0 -260
- README.md +0 -342
- RELEASE_NOTES.md +0 -5722
- ROADMAP.md +0 -5
- SECURITY.md +0 -15
- {zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/entry_points.txt +0 -0
zenml/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.71.0.
|
1
|
+
0.71.0.dev20250107
|
zenml/zen_server/auth.py
CHANGED
@@ -37,7 +37,12 @@ from zenml.constants import (
|
|
37
37
|
LOGIN,
|
38
38
|
VERSION_1,
|
39
39
|
)
|
40
|
-
from zenml.enums import
|
40
|
+
from zenml.enums import (
|
41
|
+
AuthScheme,
|
42
|
+
ExecutionStatus,
|
43
|
+
OAuthDeviceStatus,
|
44
|
+
OnboardingStep,
|
45
|
+
)
|
41
46
|
from zenml.exceptions import (
|
42
47
|
AuthorizationException,
|
43
48
|
CredentialsNotValid,
|
@@ -630,12 +635,15 @@ def authenticate_device(client_id: UUID, device_code: str) -> AuthContext:
|
|
630
635
|
return AuthContext(user=device_model.user, device=device_model)
|
631
636
|
|
632
637
|
|
633
|
-
def authenticate_external_user(
|
638
|
+
def authenticate_external_user(
|
639
|
+
external_access_token: str, request: Request
|
640
|
+
) -> AuthContext:
|
634
641
|
"""Implement external authentication.
|
635
642
|
|
636
643
|
Args:
|
637
644
|
external_access_token: The access token used to authenticate the user
|
638
645
|
to the external authenticator.
|
646
|
+
request: The request object.
|
639
647
|
|
640
648
|
Returns:
|
641
649
|
The authentication context reflecting the authenticated user.
|
@@ -761,6 +769,17 @@ def authenticate_external_user(external_access_token: str) -> AuthContext:
|
|
761
769
|
)
|
762
770
|
context.alias(user_id=external_user.id, previous_id=user.id)
|
763
771
|
|
772
|
+
# This is the best spot to update the onboarding state to mark the
|
773
|
+
# "zenml login" step as completed for ZenML Pro servers, because the
|
774
|
+
# user has just successfully logged in. However, we need to differentiate
|
775
|
+
# between web clients (i.e. the dashboard) and CLI clients (i.e. the
|
776
|
+
# zenml CLI).
|
777
|
+
user_agent = request.headers.get("User-Agent", "").lower()
|
778
|
+
if "zenml/" in user_agent:
|
779
|
+
store.update_onboarding_state(
|
780
|
+
completed_steps={OnboardingStep.DEVICE_VERIFIED}
|
781
|
+
)
|
782
|
+
|
764
783
|
return AuthContext(user=user)
|
765
784
|
|
766
785
|
|
@@ -287,7 +287,8 @@ def token(
|
|
287
287
|
return OAuthRedirectResponse(authorization_url=authorization_url)
|
288
288
|
|
289
289
|
auth_context = authenticate_external_user(
|
290
|
-
external_access_token=external_access_token
|
290
|
+
external_access_token=external_access_token,
|
291
|
+
request=request,
|
291
292
|
)
|
292
293
|
|
293
294
|
else:
|
@@ -4053,7 +4053,12 @@ class RestZenStore(BaseZenStore):
|
|
4053
4053
|
)
|
4054
4054
|
|
4055
4055
|
data: Optional[Dict[str, str]] = None
|
4056
|
-
|
4056
|
+
|
4057
|
+
# Use a custom user agent to identify the ZenML client in the server
|
4058
|
+
# logs.
|
4059
|
+
headers: Dict[str, str] = {
|
4060
|
+
"User-Agent": "zenml/" + zenml.__version__,
|
4061
|
+
}
|
4057
4062
|
|
4058
4063
|
# Check if an API key is configured
|
4059
4064
|
api_key = credentials_store.get_api_key(self.url)
|
@@ -4218,6 +4223,11 @@ class RestZenStore(BaseZenStore):
|
|
4218
4223
|
self._session.mount("https://", HTTPAdapter(max_retries=retries))
|
4219
4224
|
self._session.mount("http://", HTTPAdapter(max_retries=retries))
|
4220
4225
|
self._session.verify = self.config.verify_ssl
|
4226
|
+
# Use a custom user agent to identify the ZenML client in the server
|
4227
|
+
# logs.
|
4228
|
+
self._session.headers.update(
|
4229
|
+
{"User-Agent": "zenml/" + zenml.__version__}
|
4230
|
+
)
|
4221
4231
|
|
4222
4232
|
# Note that we return an unauthenticated session here. An API token
|
4223
4233
|
# is only fetched and set in the authorization header when and if it is
|
{zenml_nightly-0.71.0.dev20250105.dist-info → zenml_nightly-0.71.0.dev20250107.dist-info}/RECORD
RENAMED
@@ -1,12 +1,5 @@
|
|
1
|
-
CLA.md,sha256=_ZIvAMX21mdV8bzxQLOYGIDu5vw8WSG7zQwQ_ea27XM,11654
|
2
|
-
CODE-OF-CONDUCT.md,sha256=9zBNLt5KHB64X_qwNWaKWl7BvXkFUEluWd5heLPYQBM,5496
|
3
|
-
CONTRIBUTING.md,sha256=bls3RAZF76sz531nvErQM9EiyeLACOluusZ8-pyH9j4,11488
|
4
|
-
README.md,sha256=Tjq3TqVfZjJmAgVqHQThOrBxMszUoEBOBzNUHOP_nPA,13890
|
5
|
-
RELEASE_NOTES.md,sha256=vXcUYeQObADBY79bTVCn6mwBs-81i5iKWIq5BCTo_Fc,397266
|
6
|
-
ROADMAP.md,sha256=hiLSmr16BH8Dfx7SaQM4JcXCGCVl6mFZPFAwJeDTrJU,407
|
7
|
-
SECURITY.md,sha256=9DepA8y03yvCZLHEfcXLTDH4lUyKHquAdukBsccNN7c,682
|
8
1
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
9
|
-
zenml/VERSION,sha256=
|
2
|
+
zenml/VERSION,sha256=ZmTNiDD3JR5Qwuxek0Le9CzoLG1ltLJ1W8ncqdBnfgA,19
|
10
3
|
zenml/__init__.py,sha256=SkMObQA41ajqdZqGErN00S1Vf3KAxpLvbZ-OBy5uYoo,2130
|
11
4
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
12
5
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -798,7 +791,7 @@ zenml/utils/uuid_utils.py,sha256=aOGQ2SdREexcVQICPU2jUAgjvAJxTmh4ESdM52PEhck,204
|
|
798
791
|
zenml/utils/visualization_utils.py,sha256=bRhgho_c8oKSBGtT4ptWj0PsXsKTKs64L3qZty3sBTM,4702
|
799
792
|
zenml/utils/yaml_utils.py,sha256=DsbvKcJ_HYXDnNT2uSF1oKsPgP9xGpZ6G-qTFg6nQn4,5759
|
800
793
|
zenml/zen_server/__init__.py,sha256=WyltI9TzFW2mEHZVOs6alLWMCQrrZaFALtrQXs83STA,1355
|
801
|
-
zenml/zen_server/auth.py,sha256=
|
794
|
+
zenml/zen_server/auth.py,sha256=Hb1xR6O5HW3qnLqBUu-U7xNVsNUZng_EZz23IGicu-g,35503
|
802
795
|
zenml/zen_server/cache.py,sha256=Tc4TSugmsU1bhThxlYfE8rv0KmltIX1CcVHgzrJ0Eus,6633
|
803
796
|
zenml/zen_server/cloud_utils.py,sha256=Pb0tpLyVy1XkXZgZHqA9kUC5V39hikEW2YqReBtArS4,8458
|
804
797
|
zenml/zen_server/dashboard/assets/404-Cqu3EDCm.js,sha256=8NWcDgDkY8menHwtGdwbEZnHuJi2iLbjPuCFuGytmBg,1033
|
@@ -1029,7 +1022,7 @@ zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpo
|
|
1029
1022
|
zenml/zen_server/routers/actions_endpoints.py,sha256=TgFFU9fMu43iqTu-ybnxJ5QokzV-eivRAd6pW2TrFe0,9549
|
1030
1023
|
zenml/zen_server/routers/artifact_endpoint.py,sha256=XhbOat2pddDluiT0a_QH2RfNcqlwtf3yf2Fh92a6ZDw,5175
|
1031
1024
|
zenml/zen_server/routers/artifact_version_endpoints.py,sha256=TZpBPhNI6njJLKI-QX8wbNIn9-fFFGXKWqaVdiXFZVw,8528
|
1032
|
-
zenml/zen_server/routers/auth_endpoints.py,sha256=
|
1025
|
+
zenml/zen_server/routers/auth_endpoints.py,sha256=tGYZ1Eg-U2lvtcZ-lnu6pVU0QW4e54h-cqIge_NeOmw,22353
|
1033
1026
|
zenml/zen_server/routers/code_repositories_endpoints.py,sha256=WFCRPsv3Qrm8QtCr5zxfSdgCS5WI1DPNCF4Y6vLXGow,4747
|
1034
1027
|
zenml/zen_server/routers/devices_endpoints.py,sha256=luqj7owGuQ-2LyAC6Pka7GjEVpYpfi_QDdFKXhWlXek,10712
|
1035
1028
|
zenml/zen_server/routers/event_source_endpoints.py,sha256=dXupWrySV3LtxsqMVoYpUJ-OK7q6o6ehfuYW_RU1JlA,10379
|
@@ -1245,7 +1238,7 @@ zenml/zen_stores/migrations/versions/ec6307720f92_simplify_model_version_links.p
|
|
1245
1238
|
zenml/zen_stores/migrations/versions/f3b3964e3a0f_add_oauth_devices.py,sha256=2CR4R-7Vx6j_AXxo-e5Guy6OX-ZnS47HSKSGfqlO-y0,3065
|
1246
1239
|
zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_table_sources.py,sha256=kLgfDUnQdAb5_SyFx3VKXDLC0YbuBKf9iXRDNeBin7Q,1618
|
1247
1240
|
zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py,sha256=kn-ng5EHe_mmLfffIFbz7T59z-to3oMx8III_4wOsz4,1956
|
1248
|
-
zenml/zen_stores/rest_zen_store.py,sha256=
|
1241
|
+
zenml/zen_stores/rest_zen_store.py,sha256=PRbKEqFZNvlj_TIZnVuUJBba08N03yBz3YcstkZ8zFY,159900
|
1249
1242
|
zenml/zen_stores/schemas/__init__.py,sha256=vMb0Pyf94aMWZDWpPKuRaxNoMsTp9DZNKSQScm9Vd5I,4339
|
1250
1243
|
zenml/zen_stores/schemas/action_schemas.py,sha256=vNnDF4zRy0eWgNwtcU7yY0JXyqe4I3Nns2LHRHWwiDs,6293
|
1251
1244
|
zenml/zen_stores/schemas/api_key_schemas.py,sha256=pCvoTSXSHz-im6aRt-opSBnmIhw3wDRIsi-NJP5WtCQ,7243
|
@@ -1291,8 +1284,8 @@ zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Bq1djrUP9saoD7vECjS7
|
|
1291
1284
|
zenml/zen_stores/sql_zen_store.py,sha256=8f3ZKcbK00ozjS0bBSsoBs8COfuoKeUGqEfi6Nqaw18,416026
|
1292
1285
|
zenml/zen_stores/template_utils.py,sha256=EKYBgmDLTS_PSMWaIO5yvHPLiQvMqHcsAe6NUCrv-i4,9068
|
1293
1286
|
zenml/zen_stores/zen_store_interface.py,sha256=vf2gKBWfUUPtcGZC35oQB6pPNVzWVyQC8nWxVLjfrxM,92692
|
1294
|
-
zenml_nightly-0.71.0.
|
1295
|
-
zenml_nightly-0.71.0.
|
1296
|
-
zenml_nightly-0.71.0.
|
1297
|
-
zenml_nightly-0.71.0.
|
1298
|
-
zenml_nightly-0.71.0.
|
1287
|
+
zenml_nightly-0.71.0.dev20250107.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1288
|
+
zenml_nightly-0.71.0.dev20250107.dist-info/METADATA,sha256=LGuSXTUMsyd9NOBEb--cCTEFVm-Px4kqzqg5qFr-nEg,21215
|
1289
|
+
zenml_nightly-0.71.0.dev20250107.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
1290
|
+
zenml_nightly-0.71.0.dev20250107.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1291
|
+
zenml_nightly-0.71.0.dev20250107.dist-info/RECORD,,
|
CLA.md
DELETED
@@ -1,110 +0,0 @@
|
|
1
|
-
# Fiduciary License Agreement 2.0
|
2
|
-
based on the
|
3
|
-
## Individual Contributor Exclusive License Agreement
|
4
|
-
(including the Traditional Patent License OPTION)
|
5
|
-
|
6
|
-
Thank you for your interest in contributing to ZenML by ZenML GmbH ("We" or "Us").
|
7
|
-
|
8
|
-
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us. To make this document effective, please follow the instructions at https://zenml.io/cla/.
|
9
|
-
|
10
|
-
### 0. Preamble
|
11
|
-
Software is deeply embedded in all aspects of our lives and it is important that it empower, rather than restrict us. Free Software gives everybody the rights to use, understand, adapt and share software. These rights help support other fundamental freedoms like freedom of speech, press and privacy.
|
12
|
-
|
13
|
-
Development of Free Software can follow many patterns. In some cases whole development is handled by a sole programmer or a small group of people. But usually, the creation and maintenance of software is a complex process that requires the contribution of many individuals. This also affects who owns the rights to the software. In the latter case, rights in software are owned jointly by a great number of individuals.
|
14
|
-
|
15
|
-
To tackle this issue some projects require a full copyright assignment to be signed by all contributors. The problem with such assignments is that they often lack checks and balances that would protect the contributors from potential abuse of power from the new copyright holder.
|
16
|
-
|
17
|
-
FSFE’s Fiduciary License Agreement (FLA) was created by the Free Software Foundation Europe e.V. with just that in mind – to concentrate all deciding power within one entity and prevent fragmentation of rights on one hand, while on the other preventing that single entity from abusing its power. The main aim is to ensure that the software covered under the FLA will forever remain Free Software.
|
18
|
-
|
19
|
-
This process only serves for the transfer of economic rights. So-called moral rights (e.g. authors right to be identified as author) remain with the original author(s) and are inalienable.
|
20
|
-
|
21
|
-
How to use this FLA
|
22
|
-
If You are an employee and have created the Contribution as part of your employment, You need to have Your employer approve this Agreement or sign the Entity version of this document. If You do not own the Copyright in the entire work of authorship, any other author of the Contribution should also sign this – in any event, please contact Us at support@zenml.io
|
23
|
-
|
24
|
-
### 1. Definitions
|
25
|
-
"You" means the individual Copyright owner who Submits a Contribution to Us.
|
26
|
-
|
27
|
-
"Contribution" means any original work of authorship, including any original modifications or additions to an existing work of authorship, Submitted by You to Us, in which You own the Copyright.
|
28
|
-
|
29
|
-
"Copyright" means all rights protecting works of authorship, including copyright, moral and neighboring rights, as appropriate, for the full term of their existence.
|
30
|
-
|
31
|
-
"Material" means the software or documentation made available by Us to third parties. When this Agreement covers more than one software project, the Material means the software or documentation to which the Contribution was Submitted. After You Submit the Contribution, it may be included in the Material.
|
32
|
-
|
33
|
-
"Submit" means any act by which a Contribution is transferred to Us by You by means of tangible or intangible media, including but not limited to electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, Us, but excluding any transfer that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
|
34
|
-
|
35
|
-
"Documentation" means any non-software portion of a Contribution.
|
36
|
-
|
37
|
-
### 2. License grant
|
38
|
-
#### 2.1 Copyright license to Us
|
39
|
-
Subject to the terms and conditions of this Agreement, You hereby grant to Us a worldwide, royalty-free, exclusive, perpetual and irrevocable (except as stated in Section 8.2) license, with the right to transfer an unlimited number of non-exclusive licenses or to grant sublicenses to third parties, under the Copyright covering the Contribution to use the Contribution by all means, including, but not limited to:
|
40
|
-
|
41
|
-
publish the Contribution,
|
42
|
-
modify the Contribution,
|
43
|
-
prepare derivative works based upon or containing the Contribution and/or to combine the Contribution with other Materials,
|
44
|
-
reproduce the Contribution in original or modified form,
|
45
|
-
distribute, to make the Contribution available to the public, display and publicly perform the Contribution in original or modified form.
|
46
|
-
#### 2.2 Moral rights
|
47
|
-
Moral Rights remain unaffected to the extent they are recognized and not waivable by applicable law. Notwithstanding, You may add your name to the attribution mechanism customary used in the Materials you Contribute to, such as the header of the source code files of Your Contribution, and We will respect this attribution when using Your Contribution.
|
48
|
-
|
49
|
-
#### 2.3 Copyright license back to You
|
50
|
-
Upon such grant of rights to Us, We immediately grant to You a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, with the right to transfer an unlimited number of non-exclusive licenses or to grant sublicenses to third parties, under the Copyright covering the Contribution to use the Contribution by all means, including, but not limited to:
|
51
|
-
|
52
|
-
publish the Contribution,
|
53
|
-
modify the Contribution,
|
54
|
-
prepare derivative works based upon or containing the Contribution and/or to combine the Contribution with other Materials,
|
55
|
-
reproduce the Contribution in original or modified form,
|
56
|
-
distribute, to make the Contribution available to the public, display and publicly perform the Contribution in original or modified form.
|
57
|
-
This license back is limited to the Contribution and does not provide any rights to the Material.
|
58
|
-
|
59
|
-
### 3. Patents
|
60
|
-
#### 3.1 Patent license
|
61
|
-
Subject to the terms and conditions of this Agreement You hereby grant to Us and to recipients of Materials distributed by Us a worldwide, royalty-free, non-exclusive, perpetual and irrevocable (except as stated in Section 3.2) patent license, with the right to transfer an unlimited number of non-exclusive licenses or to grant sublicenses to third parties, to make, have made, use, sell, offer for sale, import and otherwise transfer the Contribution and the Contribution in combination with any Material (and portions of such combination). This license applies to all patents owned or controlled by You, whether already acquired or hereafter acquired, that would be infringed by making, having made, using, selling, offering for sale, importing or otherwise transferring of Your Contribution(s) alone or by combination of Your Contribution(s) with any Material.
|
62
|
-
|
63
|
-
#### 3.2 Revocation of patent license
|
64
|
-
You reserve the right to revoke the patent license stated in section 3.1 if We make any infringement claim that is targeted at your Contribution and not asserted for a Defensive Purpose. An assertion of claims of the Patents shall be considered for a "Defensive Purpose" if the claims are asserted against an entity that has filed, maintained, threatened, or voluntarily participated in a patent infringement lawsuit against Us or any of Our licensees.
|
65
|
-
|
66
|
-
### 4. License obligations by Us
|
67
|
-
We agree to (sub)license the Contribution or any Materials containing, based on or derived from your Contribution under the terms of any licenses the Free Software Foundation classifies as Free Software License and which are approved by the Open Source Initiative as Open Source licenses.
|
68
|
-
|
69
|
-
More specifically and in strict accordance with the above paragraph, we agree to (sub)license the Contribution or any Materials containing, based on or derived from the Contribution only under the terms of the following license(s) Apache-2.0 (including any right to adopt any future version of a license if permitted).
|
70
|
-
|
71
|
-
We agree to license patents owned or controlled by You only to the extent necessary to (sub)license Your Contribution(s) and the combination of Your Contribution(s) with the Material under the terms of any licenses the Free Software Foundation classifies as Free Software licenses and which are approved by the Open Source Initiative as Open Source licenses..
|
72
|
-
|
73
|
-
### 5. Disclaimer
|
74
|
-
THE CONTRIBUTION IS PROVIDED "AS IS". MORE PARTICULARLY, ALL EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE EXPRESSLY DISCLAIMED BY YOU TO US AND BY US TO YOU. TO THE EXTENT THAT ANY SUCH WARRANTIES CANNOT BE DISCLAIMED, SUCH WARRANTY IS LIMITED IN DURATION AND EXTENT TO THE MINIMUM PERIOD AND EXTENT PERMITTED BY LAW.
|
75
|
-
|
76
|
-
### 6. Consequential damage waiver
|
77
|
-
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL YOU OR WE BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF ANTICIPATED SAVINGS, LOSS OF DATA, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL AND EXEMPLARY DAMAGES ARISING OUT OF THIS AGREEMENT REGARDLESS OF THE LEGAL OR EQUITABLE THEORY (CONTRACT, TORT OR OTHERWISE) UPON WHICH THE CLAIM IS BASED.
|
78
|
-
|
79
|
-
### 7. Approximation of disclaimer and damage waiver
|
80
|
-
IF THE DISCLAIMER AND DAMAGE WAIVER MENTIONED IN SECTION 5. AND SECTION 6. CANNOT BE GIVEN LEGAL EFFECT UNDER APPLICABLE LOCAL LAW, REVIEWING COURTS SHALL APPLY LOCAL LAW THAT MOST CLOSELY APPROXIMATES AN ABSOLUTE WAIVER OF ALL CIVIL OR CONTRACTUAL LIABILITY IN CONNECTION WITH THE CONTRIBUTION.
|
81
|
-
|
82
|
-
### 8. Term
|
83
|
-
#### 8.1 This Agreement shall come into effect upon Your acceptance of the terms and conditions.
|
84
|
-
|
85
|
-
#### 8.2 This Agreement shall apply for the term of the copyright and patents licensed here. However, You shall have the right to terminate the Agreement if We do not fulfill the obligations as set forth in Section 4. Such termination must be made in writing.
|
86
|
-
|
87
|
-
#### 8.3 In the event of a termination of this Agreement Sections 5., 6., 7., 8., and 9. shall survive such termination and shall remain in full force thereafter. For the avoidance of doubt, Free and Open Source Software (sub)licenses that have already been granted for Contributions at the date of the termination shall remain in full force after the termination of this Agreement.
|
88
|
-
|
89
|
-
### 9. Miscellaneous
|
90
|
-
#### 9.1 This Agreement and all disputes, claims, actions, suits or other proceedings arising out of this agreement or relating in any way to it shall be governed by the laws of Germany excluding its private international law provisions.
|
91
|
-
|
92
|
-
#### 9.2 This Agreement sets out the entire agreement between You and Us for Your Contributions to Us and overrides all other agreements or understandings.
|
93
|
-
|
94
|
-
#### 9.3 In case of Your death, this agreement shall continue with Your heirs. In case of more than one heir, all heirs must exercise their rights through a commonly authorized person.
|
95
|
-
|
96
|
-
#### 9.4 If any provision of this Agreement is found void and unenforceable, such provision will be replaced to the extent possible with a provision that comes closest to the meaning of the original provision and that is enforceable. The terms and conditions set forth in this Agreement shall apply notwithstanding any failure of essential purpose of this Agreement or any limited remedy to the maximum extent possible under law.
|
97
|
-
|
98
|
-
#### 9.5 You agree to notify Us of any facts or circumstances of which you become aware that would make this Agreement inaccurate in any respect.
|
99
|
-
|
100
|
-
**You**
|
101
|
-
Date:_______________________________
|
102
|
-
Name:_______________________________
|
103
|
-
Title:______________________________
|
104
|
-
Address:____________________________
|
105
|
-
|
106
|
-
**Us**
|
107
|
-
Date:_______________________________
|
108
|
-
Name:_______________________________
|
109
|
-
Title:_______________________________
|
110
|
-
Address:_______________________________
|
CODE-OF-CONDUCT.md
DELETED
@@ -1,132 +0,0 @@
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
2
|
-
|
3
|
-
## Our Pledge
|
4
|
-
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
6
|
-
community a harassment-free experience for everyone, regardless of age, body
|
7
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
-
identity and expression, level of experience, education, socio-economic status,
|
9
|
-
nationality, personal appearance, race, religion, or sexual identity
|
10
|
-
and orientation.
|
11
|
-
|
12
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
-
diverse, inclusive, and healthy community.
|
14
|
-
|
15
|
-
## Our Standards
|
16
|
-
|
17
|
-
Examples of behavior that contributes to a positive environment for our
|
18
|
-
community include:
|
19
|
-
|
20
|
-
* Demonstrating empathy and kindness toward other people
|
21
|
-
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
-
* Giving and gracefully accepting constructive feedback
|
23
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
-
and learning from the experience
|
25
|
-
* Focusing on what is best not just for us as individuals, but for the
|
26
|
-
overall community
|
27
|
-
|
28
|
-
Examples of unacceptable behavior include:
|
29
|
-
|
30
|
-
* The use of sexualized language or imagery, and sexual attention or
|
31
|
-
advances of any kind
|
32
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
-
* Public or private harassment
|
34
|
-
* Publishing others' private information, such as a physical or email
|
35
|
-
address, without their explicit permission
|
36
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
-
professional setting
|
38
|
-
|
39
|
-
## Enforcement Responsibilities
|
40
|
-
|
41
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
-
or harmful.
|
45
|
-
|
46
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
-
decisions when appropriate.
|
50
|
-
|
51
|
-
## Scope
|
52
|
-
|
53
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
-
an individual is officially representing the community in public spaces.
|
55
|
-
Examples of representing our community include using an official e-mail address,
|
56
|
-
posting via an official social media account, or acting as an appointed
|
57
|
-
representative at an online or offline event.
|
58
|
-
|
59
|
-
## Enforcement
|
60
|
-
|
61
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
-
reported to the community leaders responsible for enforcement at
|
63
|
-
[support@zenml.io](mailto:support@zenml.io).
|
64
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
65
|
-
|
66
|
-
All community leaders are obligated to respect the privacy and security of the
|
67
|
-
reporter of any incident.
|
68
|
-
|
69
|
-
## Enforcement Guidelines
|
70
|
-
|
71
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
72
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
73
|
-
|
74
|
-
### 1. Correction
|
75
|
-
|
76
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
-
unprofessional or unwelcome in the community.
|
78
|
-
|
79
|
-
**Consequence**: A private, written warning from community leaders, providing
|
80
|
-
clarity around the nature of the violation and an explanation of why the
|
81
|
-
behavior was inappropriate. A public apology may be requested.
|
82
|
-
|
83
|
-
### 2. Warning
|
84
|
-
|
85
|
-
**Community Impact**: A violation through a single incident or series
|
86
|
-
of actions.
|
87
|
-
|
88
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
89
|
-
interaction with the people involved, including unsolicited interaction with
|
90
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
91
|
-
includes avoiding interactions in community spaces as well as external channels
|
92
|
-
like social media. Violating these terms may lead to a temporary or
|
93
|
-
permanent ban.
|
94
|
-
|
95
|
-
### 3. Temporary Ban
|
96
|
-
|
97
|
-
**Community Impact**: A serious violation of community standards, including
|
98
|
-
sustained inappropriate behavior.
|
99
|
-
|
100
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
101
|
-
communication with the community for a specified period of time. No public or
|
102
|
-
private interaction with the people involved, including unsolicited interaction
|
103
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
104
|
-
Violating these terms may lead to a permanent ban.
|
105
|
-
|
106
|
-
### 4. Permanent Ban
|
107
|
-
|
108
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
109
|
-
standards, including sustained inappropriate behavior, harassment of an
|
110
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
111
|
-
|
112
|
-
**Consequence**: A permanent ban from any sort of public interaction within
|
113
|
-
the community.
|
114
|
-
|
115
|
-
## Attribution
|
116
|
-
|
117
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
-
version 2.0, available at
|
119
|
-
[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0].
|
120
|
-
|
121
|
-
Community Impact Guidelines were inspired by
|
122
|
-
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
123
|
-
|
124
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
125
|
-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
|
126
|
-
at [https://www.contributor-covenant.org/translations][translations].
|
127
|
-
|
128
|
-
[homepage]: https://www.contributor-covenant.org
|
129
|
-
[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
|
130
|
-
[Mozilla CoC]: https://github.com/mozilla/inclusion
|
131
|
-
[FAQ]: https://www.contributor-covenant.org/faq
|
132
|
-
[translations]: https://www.contributor-covenant.org/translations
|