diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cbc01bc6a4e..df27c670a7f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.5 +current_version = 0.8.5-post.2 tag = False tag_name = {new_version} commit = True diff --git a/.bumpversion_stable.cfg b/.bumpversion_stable.cfg index fd7e8aa4551..63c21c05d9d 100644 --- a/.bumpversion_stable.cfg +++ b/.bumpversion_stable.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.5 +current_version = 0.8.5-post.2 tag = False tag_name = {new_version} commit = True diff --git a/.github/workflows/cd-post-release-tests.yml b/.github/workflows/cd-post-release-tests.yml index 7f19b5c397d..34f34baaf2f 100644 --- a/.github/workflows/cd-post-release-tests.yml +++ b/.github/workflows/cd-post-release-tests.yml @@ -8,6 +8,14 @@ on: required: true type: string + release_platform: + description: "Release Platform" + required: true + type: choice + options: + - "REAL_PYPI" + - "TEST_PYPI" + workflow_call: inputs: syft_version: @@ -15,8 +23,15 @@ on: required: true type: string + release_platform: + description: "Release Platform" + required: true + type: string + default: "REAL_PYPI" + jobs: notebook-test-hagrid: + if: github.event.inputs.release_platform == 'REAL_PYPI' strategy: max-parallel: 99 matrix: @@ -154,14 +169,21 @@ jobs: ${{ runner.os }}-pip-py${{ matrix.python-version }}- - name: Install Syft + shell: bash run: | - pip install syft==${{ inputs.syft_version }} + if [[ ${{inputs.release_platform}} == "REAL_PYPI" ]]; then + pip install syft==${{inputs.syft_version}} + fi + if [[ ${{ inputs.release_platform }} == "TEST_PYPI" ]]; then + pip install --extra-index-url https://test.pypi.org/simple/ syft==${{inputs.syft_version}} + fi - name: Check Syft version run: | python -c "import syft; print(syft.__version__)" notebook-test-k8s-k3d: + if: github.event.inputs.release_platform == 'REAL_PYPI' strategy: max-parallel: 99 matrix: @@ -216,3 +238,63 @@ jobs: SYFT_VERSION: ${{ inputs.syft_version }} run: | tox -e syft.test.helm + + # This job is used to test the syft unit tests on Test PyPi + syft-unit-tests: + strategy: + max-parallel: 99 + matrix: + os: [ubuntu-latest, macos-latest] + python-version: ["3.12", "3.11", "3.10"] + runs-on: ${{ matrix.os }} + steps: + - name: System Architecture + run: | + echo "System Architecture: $(uname -m)" + echo "System Version: $(uname -a)" + + - uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + + with: + python-version: ${{ matrix.python-version }} + + - name: Upgrade pip + run: | + python -m pip install --upgrade --user pip + + - name: Get pip cache dir + id: pip-cache + shell: bash + run: | + echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT + + - name: pip cache + uses: actions/cache@v4 + with: + path: ${{ steps.pip-cache.outputs.dir }} + key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }} + restore-keys: | + ${{ runner.os }}-pip-py${{ matrix.python-version }}- + + - name: Install Syft + env: + SYFT_VERSION: ${{ inputs.syft_version }} + run: | + if [[ ${{ inputs.release_platform }} == "TEST_PYPI" ]]; then + pip install --extra-index-url https://test.pypi.org/simple/ syft[data_science,dev]==${{ inputs.syft_version }} + fi + if [[ ${{ inputs.release_platform }} == "REAL_PYPI" ]]; then + pip install syft[data_science,dev]==${{ inputs.syft_version }} + fi + + - name: Install Hagrid, tox and uv + run: | + pip install -U hagrid + pip install --upgrade pip uv==0.1.18 tox tox-uv==1.5.1 tox-current-env + + - name: Run unit tests + run: | + tox -e syft.test.unit --current-env diff --git a/.github/workflows/cd-syft.yml b/.github/workflows/cd-syft.yml index a6b42dcf0ea..cb6c44e8d51 100644 --- a/.github/workflows/cd-syft.yml +++ b/.github/workflows/cd-syft.yml @@ -345,6 +345,7 @@ jobs: outputs: syft_version: ${{ steps.release_checks.outputs.syft_version }} + release_platform: ${{ github.event.inputs.release_platform }} steps: - name: Permission to home directory @@ -563,3 +564,4 @@ jobs: uses: OpenMined/PySyft/.github/workflows/cd-post-release-tests.yml@dev with: syft_version: ${{ needs.deploy-syft.outputs.syft_version }} + release_platform: ${{ github.event.inputs.release_platform}} diff --git a/.github/workflows/pr-tests-hagrid.yml b/.github/workflows/pr-tests-hagrid.yml index 0b742a4a861..503a75fc546 100644 --- a/.github/workflows/pr-tests-hagrid.yml +++ b/.github/workflows/pr-tests-hagrid.yml @@ -80,7 +80,7 @@ jobs: if: steps.changes.outputs.hagrid == 'true' run: | bandit -r hagrid - safety check -i 42923 -i 54229 -i 54230 -i 54230 -i 54229 -i 62044 -i 65213 + safety check -i 42923 -i 54229 -i 54230 -i 54230 -i 54229 -i 62044 -i 65213 -i 54564 - name: Run normal tests if: steps.changes.outputs.hagrid == 'true' diff --git a/.github/workflows/pr-tests-syft.yml b/.github/workflows/pr-tests-syft.yml index 9adf4a71100..dd1fc77e7b7 100644 --- a/.github/workflows/pr-tests-syft.yml +++ b/.github/workflows/pr-tests-syft.yml @@ -110,6 +110,7 @@ jobs: python-version: ["3.12"] deployment-type: ["python"] notebook-paths: ["tutorials"] + bump-version: ["False"] include: - python-version: "3.11" os: "ubuntu-latest" @@ -119,6 +120,11 @@ jobs: os: "ubuntu-latest" deployment-type: "python" notebook-paths: "tutorials" + - python-version: "3.12" + os: "ubuntu-latest" + deployment-type: "python" + notebook-paths: "tutorials" + bump-version: "True" runs-on: ${{ matrix.os }} steps: @@ -183,6 +189,7 @@ jobs: env: ORCHESTRA_DEPLOYMENT_TYPE: "${{ matrix.deployment-type }}" TEST_NOTEBOOK_PATHS: "${{ matrix.notebook-paths }}" + BUMP_VERSION: "${{ matrix.bump-version }}" with: timeout_seconds: 2400 max_attempts: 3 diff --git a/README.md b/README.md index d3898f3d93b..0d71963e6fd 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ helm install ... --set ingress.class="gce" `0.9.0` - Coming soon... `0.8.6` (Beta) - `dev` branch 👈🏽 API - Coming soon... -`0.8.5` (Stable) - API +`0.8.5-post.2` (Stable) - API Deprecated: diff --git a/VERSION b/VERSION index 6e8df740b30..85bd8bd432b 100644 --- a/VERSION +++ b/VERSION @@ -1,5 +1,5 @@ - # Mono Repo Global Version -__version__ = "0.8.5" +# Mono Repo Global Version +__version__ = "0.8.5-post.2" # elsewhere we can call this file: `python VERSION` and simply take the stdout # stdlib diff --git a/notebooks/api/0.8/06-multiple-code-requests.ipynb b/notebooks/api/0.8/06-multiple-code-requests.ipynb index 868cb20b91b..6e19bc6731c 100644 --- a/notebooks/api/0.8/06-multiple-code-requests.ipynb +++ b/notebooks/api/0.8/06-multiple-code-requests.ipynb @@ -93,7 +93,7 @@ "metadata": {}, "outputs": [], "source": [ - "dataset2 = sy.Dataset(name=\"My Sample Dataset - II\")\n", + "dataset2 = sy.Dataset(name=\"Age Dataset\")\n", "asset2 = sy.Asset(name=\"Sample Data - II\")\n", "asset2.set_obj(sample_data * 10)\n", "asset2.set_mock(mock_sample_data * 10, mock_is_real=False)\n", @@ -174,7 +174,7 @@ "metadata": {}, "outputs": [], "source": [ - "assert len(datasets) == 2\n", + "assert len(datasets) == 1\n", "dataset_ptr = datasets[0]\n", "dataset_ptr" ] @@ -477,8 +477,9 @@ "metadata": {}, "outputs": [], "source": [ - "datasets = ds_client.datasets.search(name=\"My Sample Dataset - II\")\n", - "dataset_ptr2 = datasets[0]" + "datasets = ds_client.datasets.search(name=\"Age Dataset\")\n", + "dataset_ptr2 = datasets[0]\n", + "dataset_ptr2" ] }, { @@ -489,7 +490,8 @@ "outputs": [], "source": [ "# Validate if input policy is violated\n", - "sum_ptr = ds_client.code.calculate_sum(data=dataset_ptr2.assets[0])" + "sum_ptr = ds_client.code.calculate_sum(data=dataset_ptr2.assets[0])\n", + "sum_ptr" ] }, { @@ -499,7 +501,7 @@ "metadata": {}, "outputs": [], "source": [ - "assert isinstance(sum_ptr, sy.SyftError), sum_ptr" + "assert isinstance(sum_ptr, sy.SyftError), (sum_ptr, str(dataset_ptr2.assets[0]))" ] }, { @@ -547,7 +549,7 @@ }, "outputs": [], "source": [ - "if node.node_type.value == \"python\":\n", + "if node.deployment_type.value in [\"python\", \"single_container\"]:\n", " node.land()" ] }, diff --git a/packages/grid/VERSION b/packages/grid/VERSION index 65e777033eb..85bd8bd432b 100644 --- a/packages/grid/VERSION +++ b/packages/grid/VERSION @@ -1,5 +1,5 @@ # Mono Repo Global Version -__version__ = "0.8.5" +__version__ = "0.8.5-post.2" # elsewhere we can call this file: `python VERSION` and simply take the stdout # stdlib diff --git a/packages/grid/backend/worker_cpu.dockerfile b/packages/grid/backend/worker_cpu.dockerfile index 9548cb3c495..04170fcb81a 100644 --- a/packages/grid/backend/worker_cpu.dockerfile +++ b/packages/grid/backend/worker_cpu.dockerfile @@ -9,7 +9,7 @@ # Later we'd want to uninstall old python, and then install a new python runtime... # ... but pre-built syft deps may break! -ARG SYFT_VERSION_TAG="0.8.5" +ARG SYFT_VERSION_TAG="0.8.5-post.2" FROM openmined/grid-backend:${SYFT_VERSION_TAG} ARG PYTHON_VERSION="3.12" diff --git a/packages/grid/devspace.yaml b/packages/grid/devspace.yaml index 55bf820e175..6ce5fcfbcdc 100644 --- a/packages/grid/devspace.yaml +++ b/packages/grid/devspace.yaml @@ -25,7 +25,7 @@ vars: DEVSPACE_ENV_FILE: "default.env" CONTAINER_REGISTRY: "docker.io" NODE_NAME: "mynode" - VERSION: "0.8.5" + VERSION: "0.8.5-post.2" # This is a list of `images` that DevSpace can build for this project # We recommend to skip image building during development (devspace dev) as much as possible diff --git a/packages/grid/frontend/package.json b/packages/grid/frontend/package.json index f6497bc88e0..9a6d9d3a60d 100644 --- a/packages/grid/frontend/package.json +++ b/packages/grid/frontend/package.json @@ -1,6 +1,6 @@ { "name": "pygrid-ui", - "version": "0.8.5", + "version": "0.8.5-post.2", "private": true, "scripts": { "dev": "pnpm i && vite dev --host --port 80", diff --git a/packages/grid/helm/repo/index.yaml b/packages/grid/helm/repo/index.yaml index 1532760978d..d8a1ad3832e 100644 --- a/packages/grid/helm/repo/index.yaml +++ b/packages/grid/helm/repo/index.yaml @@ -1,9 +1,61 @@ apiVersion: v1 entries: syft: + - apiVersion: v2 + appVersion: 0.8.6-beta.1 + created: "2024-04-02T17:32:19.868777424Z" + description: Perform numpy-like analysis on data that remains in someone elses + server + digest: cc2c81ef6796ac853dce256e6bf8a6af966c21803e6534ea21920af681c62e61 + home: https://github.com/OpenMined/PySyft/ + icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png + name: syft + type: application + urls: + - https://openmined.github.io/PySyft/helm/syft-0.8.6-beta.1.tgz + version: 0.8.6-beta.1 + - apiVersion: v2 + appVersion: 0.8.5 + created: "2024-04-02T17:32:19.868235336Z" + description: Perform numpy-like analysis on data that remains in someone elses + server + digest: db5d90d44006209fd5ecdebd88f5fd56c70f7c76898343719a0ff8da46da948a + home: https://github.com/OpenMined/PySyft/ + icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png + name: syft + type: application + urls: + - https://openmined.github.io/PySyft/helm/syft-0.8.5.tgz + version: 0.8.5 + - apiVersion: v2 + appVersion: 0.8.5-post.2 + created: "2024-04-02T17:32:19.867481872Z" + description: Perform numpy-like analysis on data that remains in someone elses + server + digest: ea3f7269b55f773fa165d7008c054b7cf3ec4c62eb40a96f08cd3a9b77fd2165 + home: https://github.com/OpenMined/PySyft/ + icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png + name: syft + type: application + urls: + - https://openmined.github.io/PySyft/helm/syft-0.8.5-post.2.tgz + version: 0.8.5-post.2 + - apiVersion: v2 + appVersion: 0.8.5-post.1 + created: "2024-04-02T17:32:19.866900501Z" + description: Perform numpy-like analysis on data that remains in someone elses + server + digest: 9deb844d3dc2d8480c60f8c631dcc7794adfb39cec3aa3b1ce22ea26fdf87d02 + home: https://github.com/OpenMined/PySyft/ + icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png + name: syft + type: application + urls: + - https://openmined.github.io/PySyft/helm/syft-0.8.5-post.1.tgz + version: 0.8.5-post.1 - apiVersion: v2 appVersion: 0.8.5-beta.10 - created: "2024-03-21T15:00:20.222095749Z" + created: "2024-04-02T17:32:19.859272373Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 9cfe01e8f57eca462261a24a805b41509be2de9a0fee76e331d124ed98c4bc49 @@ -16,7 +68,7 @@ entries: version: 0.8.5-beta.10 - apiVersion: v2 appVersion: 0.8.5-beta.9 - created: "2024-03-21T15:00:20.228932758Z" + created: "2024-04-02T17:32:19.866118634Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 057f1733f2bc966e15618f62629315c8207773ef6211c79c4feb557dae15c32b @@ -29,7 +81,7 @@ entries: version: 0.8.5-beta.9 - apiVersion: v2 appVersion: 0.8.5-beta.8 - created: "2024-03-21T15:00:20.228179463Z" + created: "2024-04-02T17:32:19.865311639Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 921cbce836c3032ef62b48cc82b5b4fcbe44fb81d473cf4d69a4bf0f806eb298 @@ -42,7 +94,7 @@ entries: version: 0.8.5-beta.8 - apiVersion: v2 appVersion: 0.8.5-beta.7 - created: "2024-03-21T15:00:20.227422221Z" + created: "2024-04-02T17:32:19.864537696Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 75482e955b2b9853a80bd653afb1d56535f78f3bfb7726798522307eb3effbbd @@ -55,7 +107,7 @@ entries: version: 0.8.5-beta.7 - apiVersion: v2 appVersion: 0.8.5-beta.6 - created: "2024-03-21T15:00:20.226000452Z" + created: "2024-04-02T17:32:19.863059171Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 6a2dfaf65ca855e1b3d7b966d4ff291e6fcbe761e2fc2a78033211ccd3a75de0 @@ -68,7 +120,7 @@ entries: version: 0.8.5-beta.6 - apiVersion: v2 appVersion: 0.8.5-beta.5 - created: "2024-03-21T15:00:20.22516844Z" + created: "2024-04-02T17:32:19.862298413Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: fead03823bef04d66901d563aa755c68ab277f72b126aaa6f0dce76a6f3bdb6d @@ -81,7 +133,7 @@ entries: version: 0.8.5-beta.5 - apiVersion: v2 appVersion: 0.8.5-beta.4 - created: "2024-03-21T15:00:20.224413643Z" + created: "2024-04-02T17:32:19.861551461Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 93e4539d5726a7fd0d6a3e93d1c17c6a358a923ddc01d102eab22f37377502ab @@ -94,7 +146,7 @@ entries: version: 0.8.5-beta.4 - apiVersion: v2 appVersion: 0.8.5-beta.3 - created: "2024-03-21T15:00:20.223612789Z" + created: "2024-04-02T17:32:19.860793619Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: f91e9390edf3441469048f5da646099af98f8b6d199409d0e2c1e6da3a51f054 @@ -107,7 +159,7 @@ entries: version: 0.8.5-beta.3 - apiVersion: v2 appVersion: 0.8.5-beta.2 - created: "2024-03-21T15:00:20.22286839Z" + created: "2024-04-02T17:32:19.860034664Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 59159c3aa4888038edc3c0135c83402363d7a0639fe62966a1e9d4928a364fa8 @@ -120,7 +172,7 @@ entries: version: 0.8.5-beta.2 - apiVersion: v2 appVersion: 0.8.5-beta.1 - created: "2024-03-21T15:00:20.221280499Z" + created: "2024-04-02T17:32:19.85846061Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 65aeb74c52ed8ba5474af500b4c1188a570ee4cb1f2a2da356b3488d28356ed9 @@ -132,7 +184,7 @@ entries: version: 0.8.5-beta.1 - apiVersion: v2 appVersion: 0.8.4 - created: "2024-03-21T15:00:20.220902524Z" + created: "2024-04-02T17:32:19.858052755Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 08afea8e3a9eef225b7e611f0bc1216c140053ef8e51439b02337faeac621fd0 @@ -144,7 +196,7 @@ entries: version: 0.8.4 - apiVersion: v2 appVersion: 0.8.4-beta.31 - created: "2024-03-21T15:00:20.217749079Z" + created: "2024-04-02T17:32:19.854971489Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: fabf3e2f37e53fa623f5d3d99b00feae06e278e5cd63bce419089946312ab1fc @@ -156,7 +208,7 @@ entries: version: 0.8.4-beta.31 - apiVersion: v2 appVersion: 0.8.4-beta.30 - created: "2024-03-21T15:00:20.217313116Z" + created: "2024-04-02T17:32:19.854568142Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 6e8f792709f73ec14eab48a268bdf50a4505b340bd142cddd7c7bfffd94009ad @@ -168,7 +220,7 @@ entries: version: 0.8.4-beta.30 - apiVersion: v2 appVersion: 0.8.4-beta.29 - created: "2024-03-21T15:00:20.216572915Z" + created: "2024-04-02T17:32:19.853781636Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 4c985d6a9b3456769c4013f9e85e7374c0f963d2d27627e61f914f5537de1971 @@ -180,7 +232,7 @@ entries: version: 0.8.4-beta.29 - apiVersion: v2 appVersion: 0.8.4-beta.28 - created: "2024-03-21T15:00:20.216175785Z" + created: "2024-04-02T17:32:19.853375353Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: bd2aa3c92c768c47c502e31a326f341addcb34e64d22cdcbf5cc3f19689d859c @@ -192,7 +244,7 @@ entries: version: 0.8.4-beta.28 - apiVersion: v2 appVersion: 0.8.4-beta.27 - created: "2024-03-21T15:00:20.215773945Z" + created: "2024-04-02T17:32:19.852958601Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: e8ad0869993af39d7adda8cb868dc0b24cfb63b4bb9820dc579939c1007a60ba @@ -204,7 +256,7 @@ entries: version: 0.8.4-beta.27 - apiVersion: v2 appVersion: 0.8.4-beta.26 - created: "2024-03-21T15:00:20.215370693Z" + created: "2024-04-02T17:32:19.852524807Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 30dccf630aa25a86a03c67572fe5411687d8ce6d58def448ea10efdba2b85e3a @@ -216,7 +268,7 @@ entries: version: 0.8.4-beta.26 - apiVersion: v2 appVersion: 0.8.4-beta.25 - created: "2024-03-21T15:00:20.214958544Z" + created: "2024-04-02T17:32:19.851750338Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: b6e2043bcf5a0335967d770c7939f5a7832955359a7d871c90b265660ff26e5f @@ -228,7 +280,7 @@ entries: version: 0.8.4-beta.25 - apiVersion: v2 appVersion: 0.8.4-beta.24 - created: "2024-03-21T15:00:20.214533872Z" + created: "2024-04-02T17:32:19.842643773Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: b19efa95394d50bb8d76da6ec306de5d3bb9ea55371fafea95a1282a697fa33e @@ -240,7 +292,7 @@ entries: version: 0.8.4-beta.24 - apiVersion: v2 appVersion: 0.8.4-beta.23 - created: "2024-03-21T15:00:20.214110573Z" + created: "2024-04-02T17:32:19.842241808Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 5c5d05c15bff548574896118ce92335ae10c5b78f5307fe9b2618e5a5aa71a5c @@ -252,7 +304,7 @@ entries: version: 0.8.4-beta.23 - apiVersion: v2 appVersion: 0.8.4-beta.22 - created: "2024-03-21T15:00:20.213604048Z" + created: "2024-04-02T17:32:19.841840626Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 0160dbce938198132ca9cd2a5cb362816344687291f5b6d7cf6de8f2855e9414 @@ -264,7 +316,7 @@ entries: version: 0.8.4-beta.22 - apiVersion: v2 appVersion: 0.8.4-beta.21 - created: "2024-03-21T15:00:20.212845636Z" + created: "2024-04-02T17:32:19.841436617Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 7dce153d2fcae7513e9c132e139b2721fd975ea3cc43a370e34dbeb2a1b7f683 @@ -276,7 +328,7 @@ entries: version: 0.8.4-beta.21 - apiVersion: v2 appVersion: 0.8.4-beta.20 - created: "2024-03-21T15:00:20.211987616Z" + created: "2024-04-02T17:32:19.841029152Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: c51189a187bbf24135382e25cb00964e0330dfcd3b2f0c884581a6686f05dd28 @@ -288,7 +340,7 @@ entries: version: 0.8.4-beta.20 - apiVersion: v2 appVersion: 0.8.4-beta.19 - created: "2024-03-21T15:00:20.211025982Z" + created: "2024-04-02T17:32:19.840054373Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 8219575dedb42fa2ddbf2768a4e9afbfacbc2dff7e953d77c7b10a41b78dc687 @@ -300,7 +352,7 @@ entries: version: 0.8.4-beta.19 - apiVersion: v2 appVersion: 0.8.4-beta.18 - created: "2024-03-21T15:00:20.210629462Z" + created: "2024-04-02T17:32:19.839652939Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 6418cde559cf12f1f7fea5a2b123bba950e50eeb3be002441827d2ab7f9e4ef7 @@ -312,7 +364,7 @@ entries: version: 0.8.4-beta.18 - apiVersion: v2 appVersion: 0.8.4-beta.17 - created: "2024-03-21T15:00:20.21023145Z" + created: "2024-04-02T17:32:19.839250534Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 71b39c5a4c64037eadbb154f7029282ba90d9a0d703f8d4c7dfc1ba2f5d81498 @@ -324,7 +376,7 @@ entries: version: 0.8.4-beta.17 - apiVersion: v2 appVersion: 0.8.4-beta.16 - created: "2024-03-21T15:00:20.209822517Z" + created: "2024-04-02T17:32:19.838807733Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 9c9840a7c9476dbb08e0ac83926330718fe50c89879752dd8f92712b036109c0 @@ -336,7 +388,7 @@ entries: version: 0.8.4-beta.16 - apiVersion: v2 appVersion: 0.8.4-beta.15 - created: "2024-03-21T15:00:20.209371426Z" + created: "2024-04-02T17:32:19.838402342Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 0955fd22da028315e30c68132cbfa4bdc82bae622039bcfce0de339707bb82eb @@ -348,7 +400,7 @@ entries: version: 0.8.4-beta.15 - apiVersion: v2 appVersion: 0.8.4-beta.14 - created: "2024-03-21T15:00:20.208975868Z" + created: "2024-04-02T17:32:19.837989457Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 56208571956abe20ed7a5cc1867cab2667ed792c63e53d0e8bb70a9b438b7bf6 @@ -360,7 +412,7 @@ entries: version: 0.8.4-beta.14 - apiVersion: v2 appVersion: 0.8.4-beta.13 - created: "2024-03-21T15:00:20.208629121Z" + created: "2024-04-02T17:32:19.837583114Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: d7222c72412b6ee5833fbb07d2549be179cdfc7ccd89e0ad947d112fce799b83 @@ -372,7 +424,7 @@ entries: version: 0.8.4-beta.13 - apiVersion: v2 appVersion: 0.8.4-beta.12 - created: "2024-03-21T15:00:20.208282234Z" + created: "2024-04-02T17:32:19.836600019Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: af08c723756e397962b2d5190dedfd50797b771c5caf58b93a6f65d8fa24785c @@ -384,7 +436,7 @@ entries: version: 0.8.4-beta.12 - apiVersion: v2 appVersion: 0.8.4-beta.11 - created: "2024-03-21T15:00:20.2079366Z" + created: "2024-04-02T17:32:19.836255642Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: a0235835ba57d185a83dd8a26281fa37b2077c3a37fe3a1c50585005695927e3 @@ -396,7 +448,7 @@ entries: version: 0.8.4-beta.11 - apiVersion: v2 appVersion: 0.8.4-beta.10 - created: "2024-03-21T15:00:20.207586717Z" + created: "2024-04-02T17:32:19.835907769Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 910ddfeba0c5e66651500dd11404afff092adc0f768ed68e0d93b04b83aa4388 @@ -408,7 +460,7 @@ entries: version: 0.8.4-beta.10 - apiVersion: v2 appVersion: 0.8.4-beta.9 - created: "2024-03-21T15:00:20.220485005Z" + created: "2024-04-02T17:32:19.857132996Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: c25ca8a9f072d6a5d02232448deaef5668aca05f24dfffbba3ebe30a4f75bb26 @@ -420,7 +472,7 @@ entries: version: 0.8.4-beta.9 - apiVersion: v2 appVersion: 0.8.4-beta.8 - created: "2024-03-21T15:00:20.220102872Z" + created: "2024-04-02T17:32:19.85666074Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 7249a39d4137e457b369384ba0a365c271c780d93a8327ce25083df763c39999 @@ -432,7 +484,7 @@ entries: version: 0.8.4-beta.8 - apiVersion: v2 appVersion: 0.8.4-beta.7 - created: "2024-03-21T15:00:20.219508581Z" + created: "2024-04-02T17:32:19.856334107Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: ee750c7c8d6ea05bd447375e624fdd7f66dd87680ab81f7b7e73df7379a9024a @@ -444,7 +496,7 @@ entries: version: 0.8.4-beta.7 - apiVersion: v2 appVersion: 0.8.4-beta.6 - created: "2024-03-21T15:00:20.218752641Z" + created: "2024-04-02T17:32:19.856001883Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 0e046be9f73df7444a995608c59af16fab9030b139b2acb4d6db6185b8eb5337 @@ -456,7 +508,7 @@ entries: version: 0.8.4-beta.6 - apiVersion: v2 appVersion: 0.8.4-beta.5 - created: "2024-03-21T15:00:20.218417015Z" + created: "2024-04-02T17:32:19.855674018Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: b56e9a23d46810eccdb4cf5272cc05126da3f6db314e541959c3efb5f260620b @@ -468,7 +520,7 @@ entries: version: 0.8.4-beta.5 - apiVersion: v2 appVersion: 0.8.4-beta.4 - created: "2024-03-21T15:00:20.218084014Z" + created: "2024-04-02T17:32:19.85533963Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: 1d5808ecaf55391f3b27ae6236400066508acbd242e33db24a1ab4bffa77409e @@ -480,7 +532,7 @@ entries: version: 0.8.4-beta.4 - apiVersion: v2 appVersion: 0.8.4-beta.3 - created: "2024-03-21T15:00:20.216910976Z" + created: "2024-04-02T17:32:19.854155869Z" description: Perform numpy-like analysis on data that remains in someone elses server digest: b64efa8529d82be56c6ab60487ed24420a5614d96d2509c1f93c1003eda71a54 @@ -492,7 +544,7 @@ entries: version: 0.8.4-beta.3 - apiVersion: v2 appVersion: 0.8.4-beta.2 - created: "2024-03-21T15:00:20.211575778Z" + created: "2024-04-02T17:32:19.840613071Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -508,7 +560,7 @@ entries: version: 0.8.4-beta.2 - apiVersion: v2 appVersion: 0.8.4-beta.1 - created: "2024-03-21T15:00:20.207179648Z" + created: "2024-04-02T17:32:19.835547393Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -524,7 +576,7 @@ entries: version: 0.8.4-beta.1 - apiVersion: v2 appVersion: 0.8.3 - created: "2024-03-21T15:00:20.206021034Z" + created: "2024-04-02T17:32:19.834916268Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -540,7 +592,7 @@ entries: version: 0.8.3 - apiVersion: v2 appVersion: 0.8.3-beta.6 - created: "2024-03-21T15:00:20.205337429Z" + created: "2024-04-02T17:32:19.834259245Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -556,7 +608,7 @@ entries: version: 0.8.3-beta.6 - apiVersion: v2 appVersion: 0.8.3-beta.5 - created: "2024-03-21T15:00:20.204768618Z" + created: "2024-04-02T17:32:19.83369189Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -572,7 +624,7 @@ entries: version: 0.8.3-beta.5 - apiVersion: v2 appVersion: 0.8.3-beta.4 - created: "2024-03-21T15:00:20.204198835Z" + created: "2024-04-02T17:32:19.833115488Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -588,7 +640,7 @@ entries: version: 0.8.3-beta.4 - apiVersion: v2 appVersion: 0.8.3-beta.3 - created: "2024-03-21T15:00:20.203497357Z" + created: "2024-04-02T17:32:19.832443487Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -604,7 +656,7 @@ entries: version: 0.8.3-beta.3 - apiVersion: v2 appVersion: 0.8.3-beta.2 - created: "2024-03-21T15:00:20.202958973Z" + created: "2024-04-02T17:32:19.83187506Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -620,7 +672,7 @@ entries: version: 0.8.3-beta.2 - apiVersion: v2 appVersion: 0.8.3-beta.1 - created: "2024-03-21T15:00:20.202400802Z" + created: "2024-04-02T17:32:19.831217406Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -636,7 +688,7 @@ entries: version: 0.8.3-beta.1 - apiVersion: v2 appVersion: 0.8.2 - created: "2024-03-21T15:00:20.201831791Z" + created: "2024-04-02T17:32:19.829957034Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -652,7 +704,7 @@ entries: version: 0.8.2 - apiVersion: v2 appVersion: 0.8.2-beta.60 - created: "2024-03-21T15:00:20.200428085Z" + created: "2024-04-02T17:32:19.829323485Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -668,7 +720,7 @@ entries: version: 0.8.2-beta.60 - apiVersion: v2 appVersion: 0.8.2-beta.59 - created: "2024-03-21T15:00:20.199753116Z" + created: "2024-04-02T17:32:19.828689996Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -684,7 +736,7 @@ entries: version: 0.8.2-beta.59 - apiVersion: v2 appVersion: 0.8.2-beta.58 - created: "2024-03-21T15:00:20.199123161Z" + created: "2024-04-02T17:32:19.828054222Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -700,7 +752,7 @@ entries: version: 0.8.2-beta.58 - apiVersion: v2 appVersion: 0.8.2-beta.57 - created: "2024-03-21T15:00:20.198472026Z" + created: "2024-04-02T17:32:19.827379135Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -716,7 +768,7 @@ entries: version: 0.8.2-beta.57 - apiVersion: v2 appVersion: 0.8.2-beta.56 - created: "2024-03-21T15:00:20.197838295Z" + created: "2024-04-02T17:32:19.826694801Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -732,7 +784,7 @@ entries: version: 0.8.2-beta.56 - apiVersion: v2 appVersion: 0.8.2-beta.53 - created: "2024-03-21T15:00:20.197165149Z" + created: "2024-04-02T17:32:19.826042877Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -748,7 +800,7 @@ entries: version: 0.8.2-beta.53 - apiVersion: v2 appVersion: 0.8.2-beta.52 - created: "2024-03-21T15:00:20.196519956Z" + created: "2024-04-02T17:32:19.825322405Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -764,7 +816,7 @@ entries: version: 0.8.2-beta.52 - apiVersion: v2 appVersion: 0.8.2-beta.51 - created: "2024-03-21T15:00:20.195855266Z" + created: "2024-04-02T17:32:19.823997298Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -780,7 +832,7 @@ entries: version: 0.8.2-beta.51 - apiVersion: v2 appVersion: 0.8.2-beta.50 - created: "2024-03-21T15:00:20.194420587Z" + created: "2024-04-02T17:32:19.82336482Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -796,7 +848,7 @@ entries: version: 0.8.2-beta.50 - apiVersion: v2 appVersion: 0.8.2-beta.49 - created: "2024-03-21T15:00:20.193778318Z" + created: "2024-04-02T17:32:19.822686988Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -812,7 +864,7 @@ entries: version: 0.8.2-beta.49 - apiVersion: v2 appVersion: 0.8.2-beta.48 - created: "2024-03-21T15:00:20.193098581Z" + created: "2024-04-02T17:32:19.822046045Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -828,7 +880,7 @@ entries: version: 0.8.2-beta.48 - apiVersion: v2 appVersion: 0.8.2-beta.47 - created: "2024-03-21T15:00:20.192455351Z" + created: "2024-04-02T17:32:19.821401676Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -844,7 +896,7 @@ entries: version: 0.8.2-beta.47 - apiVersion: v2 appVersion: 0.8.2-beta.46 - created: "2024-03-21T15:00:20.191899474Z" + created: "2024-04-02T17:32:19.820852645Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -860,7 +912,7 @@ entries: version: 0.8.2-beta.46 - apiVersion: v2 appVersion: 0.8.2-beta.45 - created: "2024-03-21T15:00:20.191335162Z" + created: "2024-04-02T17:32:19.820299177Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -876,7 +928,7 @@ entries: version: 0.8.2-beta.45 - apiVersion: v2 appVersion: 0.8.2-beta.44 - created: "2024-03-21T15:00:20.190762945Z" + created: "2024-04-02T17:32:19.819718387Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -892,7 +944,7 @@ entries: version: 0.8.2-beta.44 - apiVersion: v2 appVersion: 0.8.2-beta.43 - created: "2024-03-21T15:00:20.190159349Z" + created: "2024-04-02T17:32:19.818458853Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -908,7 +960,7 @@ entries: version: 0.8.2-beta.43 - apiVersion: v2 appVersion: 0.8.2-beta.41 - created: "2024-03-21T15:00:20.188907875Z" + created: "2024-04-02T17:32:19.817767185Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -924,7 +976,7 @@ entries: version: 0.8.2-beta.41 - apiVersion: v2 appVersion: 0.8.2-beta.40 - created: "2024-03-21T15:00:20.187856834Z" + created: "2024-04-02T17:32:19.817071048Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -940,7 +992,7 @@ entries: version: 0.8.2-beta.40 - apiVersion: v2 appVersion: 0.8.2-beta.39 - created: "2024-03-21T15:00:20.187315916Z" + created: "2024-04-02T17:32:19.81652336Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -956,7 +1008,7 @@ entries: version: 0.8.2-beta.39 - apiVersion: v2 appVersion: 0.8.2-beta.38 - created: "2024-03-21T15:00:20.186759839Z" + created: "2024-04-02T17:32:19.815955274Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -972,7 +1024,7 @@ entries: version: 0.8.2-beta.38 - apiVersion: v2 appVersion: 0.8.2-beta.37 - created: "2024-03-21T15:00:20.186183564Z" + created: "2024-04-02T17:32:19.81530359Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -988,7 +1040,7 @@ entries: version: 0.8.2-beta.37 - apiVersion: v2 appVersion: 0.8.1 - created: "2024-03-21T15:00:20.185566663Z" + created: "2024-04-02T17:32:19.814671815Z" dependencies: - name: component-chart repository: https://charts.devspace.sh @@ -1002,4 +1054,4 @@ entries: urls: - https://openmined.github.io/PySyft/helm/syft-0.8.1.tgz version: 0.8.1 -generated: "2024-03-21T15:00:20.184822705Z" +generated: "2024-04-02T17:32:19.813934791Z" diff --git a/packages/grid/helm/repo/syft-0.8.5-post.1.tgz b/packages/grid/helm/repo/syft-0.8.5-post.1.tgz new file mode 100644 index 00000000000..011e8939449 Binary files /dev/null and b/packages/grid/helm/repo/syft-0.8.5-post.1.tgz differ diff --git a/packages/grid/helm/repo/syft-0.8.5-post.2.tgz b/packages/grid/helm/repo/syft-0.8.5-post.2.tgz new file mode 100644 index 00000000000..316b3e9f136 Binary files /dev/null and b/packages/grid/helm/repo/syft-0.8.5-post.2.tgz differ diff --git a/packages/grid/helm/repo/syft-0.8.5.tgz b/packages/grid/helm/repo/syft-0.8.5.tgz new file mode 100644 index 00000000000..f5e98893b60 Binary files /dev/null and b/packages/grid/helm/repo/syft-0.8.5.tgz differ diff --git a/packages/grid/helm/repo/syft-0.8.6-beta.1.tgz b/packages/grid/helm/repo/syft-0.8.6-beta.1.tgz new file mode 100644 index 00000000000..2df2b2efc11 Binary files /dev/null and b/packages/grid/helm/repo/syft-0.8.6-beta.1.tgz differ diff --git a/packages/grid/helm/syft/Chart.yaml b/packages/grid/helm/syft/Chart.yaml index be6a64339d2..9aa75a294bb 100644 --- a/packages/grid/helm/syft/Chart.yaml +++ b/packages/grid/helm/syft/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: syft description: Perform numpy-like analysis on data that remains in someone elses server type: application -version: "0.8.5" -appVersion: "0.8.5" +version: "0.8.5-post.2" +appVersion: "0.8.5-post.2" home: https://github.com/OpenMined/PySyft/ icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png diff --git a/packages/grid/helm/syft/templates/NOTES.txt b/packages/grid/helm/syft/templates/NOTES.txt index a1eec6fe2f0..c22083b41e8 100644 --- a/packages/grid/helm/syft/templates/NOTES.txt +++ b/packages/grid/helm/syft/templates/NOTES.txt @@ -9,1673 +9,7 @@ Following class versions are either added/removed. - { - "ActionObject": { - "1": { - "version": 1, - "hash": "632446f1415102490c93fafb56dd9eb29d79623bcc5e9f2e6e37c4f63c2c51c3", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "577aa1f010b90194958a18ec38ee21db3718bd96d9e036501c6ddeefabedf432", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "37bb8f0f87b1da2525da8f6873e6257dff4a732f2dba293b62931ad0b85ef9e2", - "action": "add" - } - }, - "AnyActionObject": { - "1": { - "version": 1, - "hash": "bcb31f847907edc9c95d2d120dc5427854604f40940e3f41cd0474a1820ac65e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "002d8be821140befebbc0503e6bc1ef8779094e24e46305e5da5af6eecb56b13", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "7c55461e3c6ba36ff999c64eb1b97a65b5a1f27193a973b1355ee2675f14c313", - "action": "add" - } - }, - "BlobFileOBject": { - "1": { - "version": 1, - "hash": "8da2c80ced4f0414c671313c4b63d05846df1e397c763d99d803be86c29755bb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "1ab941c7669572a41067a17e0e3f2d9c7056f7a4df8f899e87ae2358d9113b02", - "action": "add" - } - }, - "JobInfo": { - "1": { - "version": 1, - "hash": "cf26eeac3d9254dfa439917493b816341f8a379a77d182bbecba3b7ed2c1d00a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "058a7fc0c63e0bcb399088e7fcde9b8522522e269b00cee2d093d1c890550ce8", - "action": "add" - } - }, - "ExecutionOutput": { - "1": { - "version": 1, - "hash": "201c8abcb6595a64140ad0c3b058557229c7790a25fb55ed229ae0efcb63ad07", - "action": "add" - } - }, - "OutputPolicyExecuteCount": { - "1": { - "version": 1, - "hash": "6bb24b3b35e19564c43b838ca3f46ccdeadb6596511917f2d220681a378e439d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5bce0120ba3b7cbbe08b28bb92bf035215e66232c36899637b8a3f84300747e3", - "action": "add" - } - }, - "OutputPolicyExecuteOnce": { - "1": { - "version": 1, - "hash": "32a40fc9966b277528eebc61c01041f3a5447417731954abdaffbb14dabc76bb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "11e2ed5f7fc4bfc701c592352c5377911b0496454c42995c428333ca7ce635c5", - "action": "add" - } - }, - "UserCodeStatusCollection": { - "1": { - "version": 1, - "hash": "8d8bae10ee1733464272031e7de6fc783668885206fa448c9f7cd8e8cfc7486a", - "action": "add" - } - }, - "UserCode": { - "1": { - "version": 1, - "hash": "e14c22686cdc7d1fb2b0d01c0aebdea37e62a61b051677c1d30234214f05cd42", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "660e1abc15034f525e91ffdd820c2a2179bfddf83b7b9e3ce7823b2efc515c69", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "90fcae0f556f375ba1e91d2e345f57241660695c6e2b84c8e311df89d09e6c66", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "84ef96946a18e2028d71e125a7a4b8bed2c9cba3c5a2612634509790506e5b9c", - "action": "add" - } - }, - "UserCodeExecutionOutput": { - "1": { - "version": 1, - "hash": "d20e83362df8a5d2d2e7eb26a2c5723739f9cfbe4c0272d3ae7e37a34bbe5317", - "action": "add" - } - }, - "NumpyArrayObject": { - "1": { - "version": 1, - "hash": "dcc7b44fa5ad22ae0bc576948f856c172dac1e9de2bc8e2a302e428f3309a278", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2c631121d9211006edab5620b214dea83e2398bee92244d822227ee316647e22", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "709dc84a946267444a3f9968acf4a5e9807d6aa5143626c3fb635c9282108cc1", - "action": "add" - } - }, - "NumpyScalarObject": { - "1": { - "version": 1, - "hash": "5c1b6b6e8ba88bc79e76646d621489b889fe8f9b9fd59f117d594be18a409633", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0d5d81b9d45c140f6e07b43ed68d31e0ef060d6b4d0431c9b4795997bb35c69d", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "5e84c9905a1816d51c0dfb1eedbfb4d831095ca6c89956c6fe200c2a193cbb8f", - "action": "add" - } - }, - "NumpyBoolObject": { - "1": { - "version": 1, - "hash": "a5c822a6a3ca9eefd6a2b68f7fd0bc614fba7995f6bcc30bdc9dc882296b9b16", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "24839ba1c88ed833a134124750d5f299abcdf318670315028ed87b254f4578b3", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "bf936c1923ceee4def4cded06d41766998ea472322b0738bade7b85298e469da", - "action": "add" - } - }, - "PandasDataframeObject": { - "1": { - "version": 1, - "hash": "35058924b3de2e0a604a92f91f4dd2e3cc0dac80c219d34f360e7cedd52f5f4c", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "66729d4ba7a92210d45c5a5c24fbdb4c8e58138a515a7bdb71ac8f6e8b868544", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "daf3629fb7d26f41f96cd7f9200d7327a4b74d800b3e02afa75454d11bd47d78", - "action": "add" - } - }, - "PandasSeriesObject": { - "1": { - "version": 1, - "hash": "2a0d8a55f1c27bd8fccd276cbe01bf272c40cab10417d7027273983fed423caa", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "cb05a714f75b1140a943f56a3622fcc0477b3a1f504cd545a98510959ffe1528", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4747a220d1587e99e6ac076496a2aa7217e2700205ac80fc24fe4768a313da78", - "action": "add" - } - }, - "UserCodeStatusChange": { - "1": { - "version": 1, - "hash": "4f5b405cc2b3976ed8f7018df82e873435d9187dff15fa5a23bc85a738969f3f", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d83e0905ae882c824ba8fbbf455cd3881906bf8b2ebbfff07bcf471ef869cedc", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "dd79f0f4d8cc7c95120911a0a5d9264cc6e65813bd4ad39f81b756b40c1463e9", - "action": "add" - } - }, - "SyncStateItem": { - "1": { - "version": 1, - "hash": "cde09be2cfeca4246d001f3f28c00d8647a4506641104e5dc647f136a64fd06e", - "action": "add" - } - }, - "SyncState": { - "1": { - "version": 1, - "hash": "b91ed9a9eb8ac7e2fadafd9376d8adefc83845d2f29939b30e95ebe94dc78cd9", - "action": "add" - } - }, - "StoreConfig": { - "1": { - "version": 1, - "hash": "17de8875cf590311ddb042140347ffc79d4a85028e504dad178ca4e1237ec861", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3f6c9a967a43557bf88caab87e5d1b9b14ea240bfd5bd6a1a313798e4ee2552b", - "action": "add" - } - }, - "MongoStoreConfig": { - "1": { - "version": 1, - "hash": "e52aa382e300b0b69aaa2d80aadb4e3a9a3c02b3c741b71d56f959c4d3891ce5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f27e70c1c074de2d921f8f0cca02bec90d359cf0a1f255fe77d84455e5daa966", - "action": "add" - } - }, - "Action": { - "1": { - "version": 1, - "hash": "5cf71ee35097f17fbb1dd05096f875211d71cf07161205d7f6a9c11fd49d5272", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "a13b50c4d23bd6deb7896e394f2a20e6cef4c33c5e6f4ee30f19eaffab708f21", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "18525c0610aea0aa62fe496a739b0ca7fb828617b4fca73840807d3c7b1477a7", - "action": "add" - } - }, - "DataSubjectCreate": { - "1": { - "version": 1, - "hash": "5a94f9fcba75c50d78d71222f0235c5fd4d8003ae0db4d74bdbc4d56a99de3aa", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b35897295822f061fbc70522ca8967cd2be53a5c01b19e24c587cd7b0c4aa3e8", - "action": "add" - } - }, - "Dataset": { - "1": { - "version": 1, - "hash": "99ca2fa3e46fd9810222d269fac6accb546f632e94d5d57529016ba5e55af5a8", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0bbae6e3665e61e97eeb328400efc678dfb26409616c66bf48f3f34bbf102721", - "action": "add" - } - }, - "CreateDataset": { - "1": { - "version": 1, - "hash": "3b020d9b8928cbd7e91f41c749ab4c932e19520696a183f2c7cd1312ebb640d1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "83c6142c99da6667260e0d6df258b6e173beb18e399d60209b6ffccb5547f1e7", - "action": "add" - } - }, - "DictStoreConfig": { - "1": { - "version": 1, - "hash": "256e9c623ce0becd555ddd2a55a0c15514e162786b1549388cef98a92a9b18c9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6cef5c61f567c75c969827fabaf5bd4f4409a399f33b6b2623fbed3c7a597a41", - "action": "add" - } - }, - "SQLiteStoreConfig": { - "1": { - "version": 1, - "hash": "b656b26c14cf4e97aba702dd62a0927aec7f860c12eed512c2c688e1b7109aa5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e2027eacb8db772fadc506e5bbe797a3fd24175c18b98f79f412cc86ee300f2e", - "action": "add" - } - }, - "Plan": { - "1": { - "version": 1, - "hash": "a0bba2b7792c9e08c453e9e256f0ac6e6185610726566bcd50b057ae83b42d9a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "67be9b8933b5bec20090727a7b1a03216f874dcc254975481ac62a5a1e9c0c1e", - "action": "add" - } - }, - "NodeMetadata": { - "1": { - "version": 1, - "hash": "6bee018894dfdf697ea624740d0bf051750e0b0d8470ced59646f6d8812068ac", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f856169fea72486cd436875ce4411ef935da11eb7c5af48121adfa00d4c0cdb6", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "3cc67abf394a805066a88aef0bea15bde609b9ecbe7ec15172eac5e7a0b7ef7c", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "9501017d54d67c987bf62a37891e9e2ceaa0f741ff6cc502ea1db7bdf26b98da", - "action": "add" - } - }, - "NodeSettings": { - "1": { - "version": 1, - "hash": "b662047bb278f4f5db77c102f94b733c3a929839271b3d6b82ea174a60e2aaf0", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "29a82afcb006a044b6ae04c6ea8a067d145d28b4210bb038ea9fa86ebde108c8", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ea0a9336358fc24988e2e157912f1898a9f770d9520b73a34ce2320b0565f99c", - "action": "add" - } - }, - "BlobFile": { - "1": { - "version": 1, - "hash": "47ed55183d619c6c624e35412360a41de42833e2c24223c1de1ad12a84fdafc2", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "8f1710c754bb3b39f546b97fd69c4826291398b247976bbc41fa873af431bca9", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "05ef86582c6b8967499eb0f57d048676e15390ce74891409fada522226563754", - "action": "add" - } - }, - "SeaweedSecureFilePathLocation": { - "1": { - "version": 1, - "hash": "5724a38b1a92b8a55da3d9cc34a720365a6d0c32683acda630fc44067173e201", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5fd63fed2a4efba8c2b6c7a7b5e9b5939181781c331230896aa130b6fd558739", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "a986f0e990db9c7ada326b2cca828fa146349a303e674fa48ee4b45702bedc14", - "action": "add" - } - }, - "BlobStorageEntry": { - "1": { - "version": 1, - "hash": "9f1b027cce390ee6f71c7a81e7420bb71a477b29c6c62ba74e781a97bc5434e6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5472bdd5bdce6d0b561543a6bac70d47bf0c05c141a21450751460cc538d6b55", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "136b0fb4908eb0c065a7ba6644ff5377a3c22ce8d97b3e48de1eb241101d4806", - "action": "add" - } - }, - "BlobStorageMetadata": { - "1": { - "version": 1, - "hash": "6888943be3f97186190dd26d7eefbdf29b15c6f2fa459e13608065ebcdb799e2", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "674f4c52a8444289d5ef389b919008860e2b0e7acbaafa774d58e492d5b6741a", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "643065504ecfabd283c736c794cfb41fb85156879940488d6ea851bb2ac3c16a", - "action": "add" - } - }, - "BlobRetrieval": { - "1": { - "version": 1, - "hash": "a8d7e1d6483e7a9b5a130e837fa398862aa6cbb316cc5f4470450d835755fdd9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4c4fbdb6df5bb9fcbe914a9890bd1c1b6a1b3f382a04cbc8752a5a1b03130111", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ab0f1f06c57b3cd8bd362514d662b170a888a2487dbb1e9f880f611ce47a2b2c", - "action": "add" - } - }, - "SyftObjectRetrieval": { - "2": { - "version": 2, - "hash": "d9d7a7e1b8843145c9687fd013c9223700285886073547734267e91ac53e0996", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "952958e9afae007bef3cb89aa15be95dddc4c310e3a8ce4191576f90ac6fcbc8", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "dd6527e200e7d21e5f4166b2874daf6aeb0b41fafeb8f07f96b675c8625d4cf7", - "action": "add" - } - }, - "WorkerSettings": { - "1": { - "version": 1, - "hash": "0dcd95422ec8a7c74e45ee68a125084c08f898dc94a13d25fe5a5fd0e4fc5027", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d623a8a0d6c83b26ba49686bd8be10eccb126f54626fef334a85396c3b8a8ed6", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "d42ed88ba674e8e1ceefa61b0f9fd76400d965e52ab000b2c7f0ae5f9d26d109", - "action": "add" - } - }, - "SubmitUserCode": { - "2": { - "version": 2, - "hash": "9b29e060973a3de8d3564a2b7d2bb5c53745aa445bf257576994b613505d7194", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "a29160c16d2e2620800d42cdcd9f3637d063a570c477a5d05217a2e64b4bb396", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "755721313ee8a7148c513c1d0b85324cfcbec14297887daf84ac4c0c5f468a4f", - "action": "add" - } - }, - "SeaweedFSBlobDeposit": { - "1": { - "version": 1, - "hash": "382a9ac178deed2a9591e1ebbb39f265cbe67027fb93a420d473a4c26b7fda11", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "07d84a95324d95d9c868cd7d1c33c908f77aa468671d76c144586aab672bcbb5", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ba3715305ea320413ca5a8780d0d02aeeb5cf3be2445aa274496c539ac787425", - "action": "add" - } - }, - "QueueItem": { - "1": { - "version": 1, - "hash": "5aa94681d9d0715d5b605f9625a54e114927271378cf2ea7245f85c488035e0b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9503b878de4b5b7a1793580301353523b7d6219ebd27d38abe598061979b7570", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "3495f406d2c97050ce86be80c230f49b6b846c63b9a9230cbd6631952f2bad0f", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "c37bc1c6303c467050ce4f8faa088a2f66ef1781437ffe34f15aadf5477ac25b", - "action": "add" - } - }, - "ZMQClientConfig": { - "1": { - "version": 1, - "hash": "e6054969b495791569caaf33239039beae3d116e1fe74e9575467c48b9007c45", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "91ce5953cced58e12c576aa5174d5ca0c91981b01cf42edd5283d347baa3390b", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "94f4243442d5aa7d2eb48e661a2cbf9d7c1d6a22035a3783977bdfae4a571142", - "action": "add" - } - }, - "ActionQueueItem": { - "1": { - "version": 1, - "hash": "11a43caf9164eb2a5a21f4bcb0ca361d0a5d134bf3c60173f2c502d0d80219de", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6413ed01e949cac169299a43ce40651f9bf8053e408b6942853f8afa8a693b3d", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4159d6ea45bc82577828bc19d668196422ff29bb8cc298b84623e6f4f476aaf3", - "action": "add" - } - }, - "JobItem": { - "1": { - "version": 1, - "hash": "7b8723861837b0b7e948b2cf9244159d232185f3407dd6bef108346f941ddf6e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e99cf5a78c6dd3a0adc37af3472c7c21570a9e747985dff540a2b06d24de6446", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "5b93a59e28574691339d22826d5650969336a2e930b93d6b3fe6d5409ca0cfc4", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "dae431b87cadacfd30613519b5dd25d2e4ff59d2a971e21a31d56901103b9420", - "action": "add" - } - }, - "SyftLog": { - "1": { - "version": 1, - "hash": "bd3f62b8fe4b2718a6380c8f05a93c5c40169fc4ab174db291929298e588429e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d3ce45794da2e6c4b0cef63b98a553525af50c5d9db42d3d64caef3e7d22b4a9", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "6417108288ab4cf090ee2d548fb44b7de7f60b20a33876e5333ab4cabcc5b5df", - "action": "add" - } - }, - "SignedSyftAPICall": { - "1": { - "version": 1, - "hash": "e66a116de2fa44ebdd0d4c2d7d5a047dedb555fd201a0f431cd8017d9d33a61d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6cd89ed24027ed94b3e2bb7a07e8932060e07e481ceb35eb7ee4d2d0b6e34f43", - "action": "add" - } - }, - "UserUpdate": { - "2": { - "version": 2, - "hash": "32cba8fbd786c575f92e26c31384d282e68e3ebfe5c4b0a0e793820b1228d246", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "fd73429a86cc4fe4db51198ae380a18b9a7e42885701efad42bc2ef1b28c04de", - "action": "add" - } - }, - "UserCreate": { - "2": { - "version": 2, - "hash": "2540188c5aaea866914dccff459df6e0f4727108a503414bb1567ff6297d4646", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "26f9467d60b9b642e0a754e9fc028c66a139925fa7d9fac52e5a1e9afdf1387b", - "action": "add" - } - }, - "UserSearch": { - "1": { - "version": 1, - "hash": "69d1e10b81c8a4143cf70e4f911d8562732af2458ebbc455ca64542f11373dd1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6fd7bc05cfad5724d81b1122ddf70c6ea09e6fa77fa374c0b68e0d42e0781088", - "action": "add" - } - }, - "NodeSettingsUpdate": { - "1": { - "version": 1, - "hash": "b6ddc66ff270a3c2c4760e31e1a55d72ed04ccae2d0115ebe2fba6f2bf9bd119", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3f66c4c8a21d63b6dba2ad27c452a01aae6b827ca5c161580312dfb850a0d821", - "action": "add" - } - }, - "User": { - "2": { - "version": 2, - "hash": "ded970c92f202716ed33a2117cf541789f35fad66bd4b1db39da5026b1d7d0e7", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "7f5e148674564f2c9c75e19fd2ea17001fbef9e2ba5e49a7e92a8b8b6098f340", - "action": "add" - } - }, - "UserView": { - "2": { - "version": 2, - "hash": "e410de583bb15bc5af57acef7be55ea5fc56b5b0fc169daa3869f4203c4d7473", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4487e0e96c6cdef771d751bca4e14afac48a17ba7aa03d956521e3d757ab95f5", - "action": "add" - } - }, - "Notification": { - "1": { - "version": 1, - "hash": "d13981f721fe2b3e2717640ee07dc716c596e4ecd442461665c3fdab0b85bf0e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3814065d869d10444d7413302101c720bc6dd1a105dd7c29eccf38f32351e322", - "action": "add" - } - }, - "CreateNotification": { - "1": { - "version": 1, - "hash": "b1f459de374fe674f873a4a5f3fb8a8aabe0d83faad84a933f0a77dd1141159a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "32d046bda4d978fb8e839e2c2c4994b86a60843311b74330e307e6e3e422176f", - "action": "add" - } - }, - "NotificationPreferences": { - "1": { - "version": 1, - "hash": "127206b9c72d353d9f1b73fb10d8ecd57f28f9bfbfdc2f7648894cb0d2ad2522", - "action": "add" - } - }, - "NotifierSettings": { - "1": { - "version": 1, - "hash": "8505ded16432d1741ee16b0eada22da7c6e36ae7b414cfb59168ac846f3e9f54", - "action": "add" - } - }, - "PartialSyftObject": { - "1": { - "version": 1, - "hash": "008917584d8e1c09015cdbef02f59c0622f48e0618877c1b44425c8846befc13", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "385ef254e4a0c9e68fd750f2bb47f8f9c46dbd2ac9f00f535f843f19f1cf6032", - "action": "add" - } - }, - "NodeMetadataUpdate": { - "1": { - "version": 1, - "hash": "569d124c23590360bda240c19b53314ccc6204c5d1ab0d2898976a028e002191", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "cfe5400a5440de50e9a413f84c2aa05bad33135f46b16d21496534973145e93c", - "action": "add" - } - }, - "MongoDict": { - "1": { - "version": 1, - "hash": "640734396edae801e1601fe7777710e67685e552acb0244ad8b4f689599baca9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c83245be5997362196ee7fe2afd2b7ec7a2cf67aed5efe4bde16c7e83dc530b0", - "action": "add" - } - }, - "LinkedObject": { - "1": { - "version": 1, - "hash": "824567c6933c095d0e2f6995c8de3581c0fbd2e9e4ead35c8159f7964709c28e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0c52ad9a259358652f7c78f73ab041185a59b24534cee9f0802313ff4b4d4781", - "action": "add" - } - }, - "BaseConfig": { - "1": { - "version": 1, - "hash": "4e5257080ce615aa4122b02bad8487e4c7d6d0f171ff77abbc9e8cd3e33df89a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "45e4480e6fbb5183e36cbe3bd18e21d65c43cc5809028a13ab49270e0a565da6", - "action": "add" - } - }, - "ServiceConfig": { - "1": { - "version": 1, - "hash": "ca91f59bf045d949d82860f7d52655bfbede4cf6bdc5bae8f847f08a16f05d74", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5945f4f7347baeae0a7f5386d71982a16d6be8ab0c1caa2b10c28d282e66b1ea", - "action": "add" - } - }, - "LibConfig": { - "1": { - "version": 1, - "hash": "c6ff229aea16874c5d9ae4d1f9e500d13f5cf984bbcee7abd16c5841707a2f78", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0fc4586bc939a15426ba2315f2457c77eea262c9d34756f0ee6b0198c001cf47", - "action": "add" - } - }, - "APIEndpoint": { - "1": { - "version": 1, - "hash": "c0e83867b107113e6fed06364ba364c24b2f4af35b15a3869b176318d3be7989", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "1264dca857f7d5c8d1aa92791726a2e17567aba82538b64d357b988d1ae3a8c9", - "action": "add" - } - }, - "LibEndpoint": { - "1": { - "version": 1, - "hash": "153eac6d8990774eebfffaa75a9895e7c4e1a0e09465d5da0baf4c3a3b03369d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c845900e729bef87be1a0efe69a7059055199eb5a5b9b9e8bd730dd16e18ed7a", - "action": "add" - } - }, - "SyftAPICall": { - "1": { - "version": 1, - "hash": "014bd1d0933f6070888a313edba239170759de24eae49bf2374c1be4dbe2b4d7", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "bc686b6399e058b21472d61fe56df1f0de0785219f52c7306dd5ab8bae863d89", - "action": "add" - } - }, - "SyftAPIData": { - "1": { - "version": 1, - "hash": "db101a75227e34750d7056785a1e87bb2e8ad6604f19c372d0cb6aa437243bf5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b303d322c7e6da6e003e5d92a27d86acce512228a9dd62c1ab48824702055bf0", - "action": "add" - } - }, - "SyftAPI": { - "1": { - "version": 1, - "hash": "2bba1d9fcf677a58e35bf903de3da22ee4913af138aa3012af9c46b3609579cd", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "8f3ff426794df07cbeab441ff545fb896f27897df88b11ec949ec05726a41747", - "action": "add" - } - }, - "UserViewPage": { - "1": { - "version": 1, - "hash": "16dac6209b19a934d286ef1efa874379e0040c324e71023c57d1bc6d2d367171", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0f9d54e606f9a4af73249dd4012baa11fcb7c1e60cce70c01ee48bb63411d6fe", - "action": "add" - } - }, - "UserPrivateKey": { - "1": { - "version": 1, - "hash": "7cb196587887f0f3bffb298dd9f3b88509e9b2748792bf8dc03bdd0d6b98714a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0917d22c7cbd3531be6365570952557aed054332d1ec89720213f218e4202ae0", - "action": "add" - } - }, - "DateTime": { - "1": { - "version": 1, - "hash": "7e9d89309a10d2110a7ae4f97d8f25a7914853269e8fa0c531630790c1253f17", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c353b8edfa13250507942a3134f0ec9db8fb1d85f4f7a029fe4ad5665614bf5a", - "action": "add" - } - }, - "ReplyNotification": { - "1": { - "version": 1, - "hash": "34b2ad522f7406c2486573467d9c7acef5c1063a0d9f2177c3bda2d8c4f87572", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "7bea00170bce350ea1c3a1a16cfb31264e70da9da2fd6f2128852c479e793b60", - "action": "add" - } - }, - "HTTPConnection": { - "1": { - "version": 1, - "hash": "5ee19eaf55ecbe7945ea45924c036ec0f500114a2f64176620961a8c2ec94cdb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c05bfaf9ca6b5f47cd20c52fd7961bf9f372196713c2333fc9bfed8e0383acf1", - "action": "add" - } - }, - "PythonConnection": { - "1": { - "version": 1, - "hash": "011946fc9af0a6987f5c7bc9b0208b2fae9d65217531430bced7ba542788da1a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b7bb677f60333d3ab1e927d0be44725667ce75620c2861c706cbca022cfae1fc", - "action": "add" - } - }, - "ActionDataEmpty": { - "1": { - "version": 1, - "hash": "89b5912fe5416f922051b8068be6071a03c87a4ab264959de524f1b86e95f028", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2bea14a344a82a10725a9e933bb1838ffbe2d28771ee4f54f40b4d5663840a7c", - "action": "add" - } - }, - "ObjectNotReady": { - "1": { - "version": 1, - "hash": "88207988639b11eaca686b6e079616d9caecc3dbc2a8112258e0f39ee5c3e113", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "be7001fea1c819ced4c14e6b3a32b59ee11f773d8b23cf42c2f228e782b631b8", - "action": "add" - } - }, - "ActionDataLink": { - "1": { - "version": 1, - "hash": "10bf94e99637695f1ba283f0b10e70743a4ebcb9ee75aefb1a05e6d6e1d21a71", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4551f22ea68af0d0943f9aa239b4fd468cf9f4da43589b536651fc3d27d99f12", - "action": "add" - } - }, - "SyftImageRegistry": { - "1": { - "version": 1, - "hash": "dc83910c91947e3d9eaa3e6f8592237448f0408668c7cca80450b5fcd54722e1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3ceacaa164246323be86ccde0881dd42ee6275684e147095e1d0de7b007ae066", - "action": "add" - } - }, - "SyftWorkerImage": { - "1": { - "version": 1, - "hash": "2a9585b6a286e24f1a9f3f943d0128730cf853edc549184dc1809d19e1eec54b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4a6169ba1f50fdb73ac45500dd02b9d164ef239f13800c0da0ed5f8aed7cde1a", - "action": "add" - } - }, - "SyftWorker": { - "1": { - "version": 1, - "hash": "0d5b367162f3ce55ab090cc1b49bd30e50d4eb144e8431eadc679bd0e743aa70", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "257395af556b1b2972089150c0e3280479a5ba12779d012651eee2f6870e7133", - "action": "add" - } - }, - "WorkerPool": { - "1": { - "version": 1, - "hash": "250699eb4c452fc427995353d5c5ad6245fb3e9fdac8814f8348784816a0733b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3fa999bb789b9557939dea820ddcb6c68224822581971a3c3861da3b781d6c25", - "action": "add" - } - }, - "SecureFilePathLocation": { - "1": { - "version": 1, - "hash": "7febc066e2ee5a3a4a891720afede3f5c155cacc0557662ac4d04bf67b964c6d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f1a9510992d60e037c0016574225b8f61433b87bb65bc3320800b1c70e54982c", - "action": "add" - } - }, - "AzureSecureFilePathLocation": { - "1": { - "version": 1, - "hash": "1bb15f3f9d7082779f1c9f58de94011487924cb8a8c9c2ec18fd7c161c27fd0e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "29a0c01a59d8632037c6d18d6fce1512b651e1aa8493b302746ff294c7bd331d", - "action": "add" - } - }, - "CreateBlobStorageEntry": { - "1": { - "version": 1, - "hash": "61a373336e83645f1b6d78a320323d9ea4ee91b3d87b730cb0608fbfa0072262", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9046843fba39e5700aeb8c442a7e4ac5e772b12f6ac502367b2e5decbb26761f", - "action": "add" - } - }, - "BlobRetrievalByURL": { - "3": { - "version": 3, - "hash": "0b664100ea08413ca4ef04665ca910c2cf9535539617ea4ba33687d05cdfe747", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "3fadedaf8e4ba97db9d4ddf1cf954338113cbb88d016253c008b11f0dfe19c59", - "action": "add" - } - }, - "BlobDeposit": { - "1": { - "version": 1, - "hash": "c98e6da658a3be01ead4ea6ee6a4c10046879f0ce0f5fc5f946346671579b229", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "87dd601b58f31ccf8e3001e8723d8d251f84bd7ab9a2f87ff7c6cf05b074d41f", - "action": "add" - } - }, - "HTTPNodeRoute": { - "1": { - "version": 1, - "hash": "1901b9f53f9970ce2bd8307ba9f7cafc0e7eba1d2ec82e4014c6120e605e3741", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b7ee63d7b47d2fab46a62d8e7d8277c03f872524457f4fe128cc9759eac72795", - "action": "add" - } - }, - "PythonNodeRoute": { - "1": { - "version": 1, - "hash": "15711e6e7a1ef726c8e8b5c35a6cb2d30b56ba5213cba489524bf63489e136cf", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "375b36756047fa0e926e5461320960a5c48546ef8cc0c6bb4ff620c7084dc4fc", - "action": "add" - } - }, - "DataSubject": { - "1": { - "version": 1, - "hash": "0b8b049d4627727b444c419f5d6a97b7cb97a433088ebf744c854b6a470dadf1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6d9d65d2723aed8cc4cfce9b5ee4a005ab84f8a24372dc47ce856cb6516835a9", - "action": "add" - } - }, - "DataSubjectMemberRelationship": { - "1": { - "version": 1, - "hash": "0a820edc9f1a87387acc3c611fe852752fcb3dab7608058f2bc48211be7bfbd2", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "159d4e4f2463b213a65082b270acbb57ae84c5f0dbc897fda75486290b3148f1", - "action": "add" - } - }, - "Contributor": { - "1": { - "version": 1, - "hash": "d1d4f25bb87e59c0414501d3335097de66815c164c9ed5a7850ff8bec69fbcdc", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "55259f1e4f1b9da4ac83b032adb86eb4a1322a06584790d1300131777212dbaa", - "action": "add" - } - }, - "MarkdownDescription": { - "1": { - "version": 1, - "hash": "519328a3952049f57004013e4fb00840695b24b8575cad983056412c9c9d9ba6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3416f899b925ba0636edd1ac01bf5c6f4f5533eae4f0a825f112bbf89dcd232a", - "action": "add" - } - }, - "Asset": { - "1": { - "version": 1, - "hash": "24350b8d9597df49999918ad42e0eece1328ea30389311f1e0a420be8f39b8a1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "64661b3bc84a2df81ce631641a0fe3f0d969618b6855971f5e51e5770c278bba", - "action": "add" - } - }, - "CreateAsset": { - "1": { - "version": 1, - "hash": "1b4c71569b8da64258672483bd36dc4aa99a32d4cb519659241d15bc898041a6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "93c75b45b9b74c69243cc2f2ef2d661e11eef5c23ecf71692ffdbd467d11efe6", - "action": "add" - } - }, - "DatasetPageView": { - "1": { - "version": 1, - "hash": "b1de14bb9b6a259648dfc59b6a48fa526116afe50a689c24b8bb36fd0e6a97f8", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c7494afa0ae27326c4521a918eb234ba74eb2c0494ea448255ff310201a16c88", - "action": "add" - } - }, - "TwinObject": { - "1": { - "version": 1, - "hash": "c42455586b43724a7421becd99122b787a129798daf6081e96954ecaea228099", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "937fded2210d9b792cbe7a99879180e396902fe7b684cd6a14a651db8b9ca2c9", - "action": "add" - } - }, - "ExactMatch": { - "1": { - "version": 1, - "hash": "e497e2e2380db72766c5e219e8afd13136d8953933d6f1eaf83b14001e887cde", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f752dfdec6b30e1c849e483ac88ab6f0c71a286199415e4f7bc33c8c2502fc1f", - "action": "add" - } - }, - "OutputHistory": { - "1": { - "version": 1, - "hash": "4ec6e6efd86a972b474251885151bdfe4ef262562174605e8ab6a8abba1aa867", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "425ad1c14348e51a2ec0eb82f1ef86b8fbc63e282e4c511023d6c2d644e3bd83", - "action": "add" - } - }, - "UserPolicy": { - "1": { - "version": 1, - "hash": "c69b17b1d96cace8b45da6d9639165f2da4aa7ff156b6fd922ac217bf7856d8a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6f201caff6457bd036e614a58aedb9fad6a3947b7d4d7965ccfdb788b6385262", - "action": "add" - } - }, - "SubmitUserPolicy": { - "1": { - "version": 1, - "hash": "96f7f39279fadc70c569b8d48ed4d6420a8132db51e37466d272fda19953554b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "971f4aa69bf68e7a876b0b1cb85ba7d4213212baf7eeaa24bab0a70f18841497", - "action": "add" - } - }, - "UserCodeExecutionResult": { - "1": { - "version": 1, - "hash": "49c32e85e78b7b189a7f13b7e26115ef94fcb0b60b578adcbe2b95e289f63a6e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "05c457f502f7a257a4d5287633d18bbd3cb4ba565afb6a69ac0822c55408a55e", - "action": "add" - } - }, - "CodeHistory": { - "1": { - "version": 1, - "hash": "a7baae93862ae0aa67675f1617574e31aafb15a9ebff633eb817278a3a867161", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "54793b2909c70303c58fb720e431752547e29e56a616e544b6a103b2bfd2f73b", - "action": "add" - } - }, - "CodeHistoryView": { - "1": { - "version": 1, - "hash": "0ed1a2a04a962ecbcfa38b0b8a03c1e51e8946a4b80f6bf2557148ce658671ce", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3d5f79f8367c229f163ab746ef8c7069bec5a1478a19812dbac735fc333e41c3", - "action": "add" - } - }, - "CodeHistoriesDict": { - "1": { - "version": 1, - "hash": "95288411cd5843834f3273a2fd66a7df2e603e980f4ab1d329f9ab17d5d2f643", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "36175742343fdb2c9ea54809c08857cf1f30451245ebdca45b13020f6c7c0e2e", - "action": "add" - } - }, - "UsersCodeHistoriesDict": { - "1": { - "version": 1, - "hash": "5e1f389c4565ee8558386dd5c934d81e0c68ab1434f86bb9065976b587ef44d1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9cb9a7e1e5c5e294cd019bdb9824180fa399810e7d57db285823157c91ee7d76", - "action": "add" - } - }, - "OnDiskBlobDeposit": { - "1": { - "version": 1, - "hash": "5efc230c1ee65c4626d334aa69ed458c796c45265e546a333844c6c2bcd0e6b0", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "adc890e6c70334b46f49fff6b4f22d6aa9f13981b4f6ecd16a0f2910ed69da1b", - "action": "add" - } - }, - "RemoteConfig": { - "1": { - "version": 1, - "hash": "ad7bc4780a8ad52e14ce68601852c93d2fe07bda489809cad7cae786d2461754", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9d6b8ddb258815b5660f2288164a3a87f68a0e6849493eb48c87da1509b6ab27", - "action": "add" - } - }, - "AzureRemoteConfig": { - "1": { - "version": 1, - "hash": "c05c6caa27db4e385c642536d4b0ecabc0c71e91220d2e6ce21a2761ca68a673", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2f820aa55e6476b455fec7774346a4c0dad212bde1400f1f53f42c8864b7ded4", - "action": "add" - } - }, - "Change": { - "1": { - "version": 1, - "hash": "aefebd1601cf5bfd4817b0db75300a78299cc4949ead735a90873cbd22c8d4bc", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b661753ae9187feb92751edb4a38066c9c14aba73e3639d44ac5fe7aee8b2ab9", - "action": "add" - } - }, - "ChangeStatus": { - "1": { - "version": 1, - "hash": "627f6f8e42cc285336aa6fd4916285d796140f4ff901487b7cb3907ef0f116a6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "8a62d5bcde312e7b9efd1d0b26cab6de7affa1e3ffe9182f8598137340408084", - "action": "add" - } - }, - "ActionStoreChange": { - "1": { - "version": 1, - "hash": "17b865e75eb3fb2693924fb00ba87a25260be45d55a4eb2184c4ead22d787cbe", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3a1c8f10afb4c4d10a4096a1371e4780b2cb40bb2253193bfced6c250d3e8547", - "action": "add" - } - }, - "CreateCustomImageChange": { - "1": { - "version": 1, - "hash": "bc09dca7995938f3b3a2bd9c8b3c2feffc8484df466144a425cb69cadb2ab635", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6569fb11bccd100cd4b6050084656e7e7c46b9405ff76589b870402b26a6927b", - "action": "add" - } - }, - "CreateCustomWorkerPoolChange": { - "1": { - "version": 1, - "hash": "86894f8ccc037de61f44f9698fd113ba02c3cf3870a3048c00a46e15dcd1941c", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e2a223a65461b502f097f06453f878b54175b4055dad3ec9b09c1eb9458a575e", - "action": "add" - } - }, - "Request": { - "1": { - "version": 1, - "hash": "e054307eeb7f13683cde9ce7613d5ca2925a13fff7c345b1c9f729a12c955f90", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "72bb2fcf520d8ca31fc5fd9b1730a8839648b7f446bcc9f2b6d80e4c635feb59", - "action": "add" - } - }, - "RequestInfo": { - "1": { - "version": 1, - "hash": "b76075c138afc0563ce9ac7f6b1131f048951f7486cd516c02736dc1a2a23639", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "fd127bb4f64b4d04122d31b27b46f712a6f3c9518b2e6df0b140247bab115789", - "action": "add" - } - }, - "RequestInfoFilter": { - "1": { - "version": 1, - "hash": "7103abdc464ae71bb746410f5730f55dd8ed82268aa32bbb0a69e0070488a669", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c8773edca83f068b5a7b7ebe7f5e70ff8df65915564cead695b4528203f750a3", - "action": "add" - } - }, - "SubmitRequest": { - "1": { - "version": 1, - "hash": "96b4ec12beafd9d8a7c97399cb8a23dade4db16d8f521be3fe7b8fec99db5161", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "796b297342793995b8dd87e8feb420e8601dee3b704b7a21a93326661b227ea8", - "action": "add" - } - }, - "ObjectMutation": { - "1": { - "version": 1, - "hash": "0ee3dd38d6df0fe9a19d848e8f3aaaf13a6ba86afe3406c239caed6da185651a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "24b7c302f9821afe073534d4ed02c377bd4f7cb691f66ca92b94c38c92dc78c2", - "action": "add" - } - }, - "EnumMutation": { - "1": { - "version": 1, - "hash": "4c02f956ec9b973064972cc57fc8dd9c525e683f93f804642b4e1bfee1b62e57", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6d2e2f64c00dcda74a2545c77abbcf1630c56c26014987038feab174d15bd9d7", - "action": "add" - } - }, - "NodePeer": { - "1": { - "version": 1, - "hash": "7b88de7e38490e2d69f31295137673e7ddabc16ab0e2272ff491f6cea1835d63", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "14cf8b9bb7c95c20caec8606ae5dddb882832f00fba2326352e7a0f2444dbc9f", - "action": "add" - } - }, - "SyftObjectMigrationState": { - "1": { - "version": 1, - "hash": "d3c8126bc15dae4dd243bb035530e3f56cd9e433d403dd6b5f3b45face6d281f", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "187e6b6619f56fdaf2fbe150a0ec561b1d6a7dbfbc6132257951844206319c79", - "action": "add" - } - }, - "ProjectThreadMessage": { - "1": { - "version": 1, - "hash": "1118e935792e8e54103dbf91fa33edbf192a7767d2b1d4526dfa7d4a643cde2e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "319007e1173c1558917cbdf25171da70514fe0afaae49c7d099aca6f2ec87015", - "action": "add" - } - }, - "ProjectMessage": { - "1": { - "version": 1, - "hash": "55a3a5171b6949372b4125cc461bf39bc998565e07703804fca6c7ef99695ae4", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "086513fa450d185b5040b75dc034f4e219c3214677674efa4b4263fda140ce2a", - "action": "add" - } - }, - "ProjectRequestResponse": { - "1": { - "version": 1, - "hash": "d4c360e845697a0b24695143d0781626cd344cfde43162c90ae90fe67e00ae21", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b29309054cd9f9e6a3f00724453f90510076de0bf03ff300fc83670a1721b272", - "action": "add" - } - }, - "ProjectRequest": { - "1": { - "version": 1, - "hash": "514d189df335c68869eea36befcdcafec74bdc682eaf18871fe879e26da4dbb6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "7d7f74f39333bef10ac37f49b5783dc9ba9b5783d2bec814d7de2d2025bcce01", - "action": "add" - } - }, - "AnswerProjectPoll": { - "1": { - "version": 1, - "hash": "ff2e1ac7bb764c99d646b96eb3ebfbf9311599b7e3be07aa4a4eb4810bb6dd12", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "fff1a7e5ca30b76132cf8b6225cb576467d9727349b9dc54d4131fede03c10f3", - "action": "add" - } - }, - "ProjectPoll": { - "1": { - "version": 1, - "hash": "b0ac8f1d9c06997374ddbc33fdf1d0af0da15fdb6899f52d91a8574106558964", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "90522301ab056881d79a066d824dcce6d7836f2555ac4182bbafe75bea5a5fa7", - "action": "add" - } - }, - "Project": { - "1": { - "version": 1, - "hash": "ec5b7ac1c92808e266f06b175c6ebcd50be81777ad120c02ce8c6074d0004788", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4b7f5d0bec9a1ba7863679b85425f1918745e9dad21476078c19f7257d5f38a3", - "action": "add" - } - }, - "ProjectSubmit": { - "1": { - "version": 1, - "hash": "0374b37779497d7e0b2ffeabc38d35bfbae2ee762a7674a5a8af75e7c5545e61", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0af1abb9ac899c0bc133971f75d17be8260b80a2df9fe191965db431bb6fd910", - "action": "add" - } - }, - "VeilidConnection": { - "1": { - "version": 1, - "hash": "c5ed1cfa9b7b146dbce7f1057f6e81e89715b5addfd4d4c4d53c415e450373a5", - "action": "add" - } - }, - "VeilidNodeRoute": { - "1": { - "version": 1, - "hash": "4797413e3144fce7bccc290db64f1750e8c09f75d5e1aba6e19d29f921a21074", - "action": "add" - } - }, - "EnclaveMetadata": { - "1": { - "version": 1, - "hash": "39f85e475015e6f860ddcc5fea819423eba2db8f4b7d8e004c05a44d6f8444c6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5103272305abd2bcf23c616bd9014be986a92c40dc37b6238680114036451852", - "action": "add" - } - } -} + {} This means the existing data will be automatically be migrated to their latest class versions during the upgrade. diff --git a/packages/grid/helm/syft/values.yaml b/packages/grid/helm/syft/values.yaml index f1f7f495eb5..8f794992165 100644 --- a/packages/grid/helm/syft/values.yaml +++ b/packages/grid/helm/syft/values.yaml @@ -1,7 +1,7 @@ global: # Affects only backend, frontend, and seaweedfs containers registry: docker.io - version: 0.8.5 + version: 0.8.5-post.2 # Force default secret values for development. DO NOT SET THIS TO FALSE IN PRODUCTION randomizedSecrets: true diff --git a/packages/grid/podman/podman-kube/podman-syft-kube-config.yaml b/packages/grid/podman/podman-kube/podman-syft-kube-config.yaml index 2ce4da02edb..02bd55dac5a 100644 --- a/packages/grid/podman/podman-kube/podman-syft-kube-config.yaml +++ b/packages/grid/podman/podman-kube/podman-syft-kube-config.yaml @@ -31,7 +31,7 @@ data: RABBITMQ_VERSION: 3 SEAWEEDFS_VERSION: 3.59 DOCKER_IMAGE_SEAWEEDFS: chrislusf/seaweedfs:3.55 - VERSION: 0.8.5 + VERSION: 0.8.5-post.2 VERSION_HASH: unknown STACK_API_KEY: "" diff --git a/packages/grid/podman/podman-kube/podman-syft-kube.yaml b/packages/grid/podman/podman-kube/podman-syft-kube.yaml index f0bfef40555..7586071c9b1 100644 --- a/packages/grid/podman/podman-kube/podman-syft-kube.yaml +++ b/packages/grid/podman/podman-kube/podman-syft-kube.yaml @@ -41,7 +41,7 @@ spec: - configMapRef: name: podman-syft-config - image: docker.io/openmined/grid-backend:0.8.5 + image: docker.io/openmined/grid-backend:0.8.5-post.2 imagePullPolicy: IfNotPresent resources: {} tty: true @@ -57,7 +57,7 @@ spec: envFrom: - configMapRef: name: podman-syft-config - image: docker.io/openmined/grid-frontend:0.8.5 + image: docker.io/openmined/grid-frontend:0.8.5-post.2 imagePullPolicy: IfNotPresent resources: {} tty: true diff --git a/packages/hagrid/.bumpversion.cfg b/packages/hagrid/.bumpversion.cfg index 3cfa2bd59c5..7477bd09625 100644 --- a/packages/hagrid/.bumpversion.cfg +++ b/packages/hagrid/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.112 +current_version = 0.3.113 tag = False tag_name = {new_version} commit = True diff --git a/packages/hagrid/hagrid/deps.py b/packages/hagrid/hagrid/deps.py index 0c2ad796cba..91c69ae77e0 100644 --- a/packages/hagrid/hagrid/deps.py +++ b/packages/hagrid/hagrid/deps.py @@ -36,7 +36,7 @@ from .nb_output import NBOutput from .version import __version__ -LATEST_BETA_SYFT = "0.8.5" +LATEST_BETA_SYFT = "0.8.5-post.2" DOCKER_ERROR = """ You are running an old version of docker, possibly on Linux. You need to install v2. diff --git a/packages/hagrid/hagrid/manifest_template.yml b/packages/hagrid/hagrid/manifest_template.yml index 43ce36e6554..c6367baa9a4 100644 --- a/packages/hagrid/hagrid/manifest_template.yml +++ b/packages/hagrid/hagrid/manifest_template.yml @@ -1,9 +1,9 @@ manifestVersion: 0.1 -hagrid_version: 0.3.112 -syft_version: 0.8.5 -dockerTag: 0.8.5 +hagrid_version: 0.3.113 +syft_version: 0.8.5-post.2 +dockerTag: 0.8.5-post.2 baseUrl: https://raw.githubusercontent.com/OpenMined/PySyft/ -hash: 95c17b2d0d4d2ab97727315eb1545b3fd74f8fdc +hash: c51169a89a83506dd401442a3900c4cea5330af6 target_dir: ~/.hagrid/PySyft/ files: grid: diff --git a/packages/hagrid/hagrid/orchestra.py b/packages/hagrid/hagrid/orchestra.py index 31e033a415e..cba2448e6d1 100644 --- a/packages/hagrid/hagrid/orchestra.py +++ b/packages/hagrid/hagrid/orchestra.py @@ -487,8 +487,8 @@ def launch( in_memory_workers: bool = True, ) -> NodeHandle | None: NodeType = ImportFromSyft.import_node_type() + os.environ["DEV_MODE"] = str(dev_mode) if dev_mode is True: - os.environ["DEV_MODE"] = "True" thread_workers = True # syft 0.8.1 diff --git a/packages/hagrid/hagrid/stable_version.py b/packages/hagrid/hagrid/stable_version.py index 6ab7dba0f59..88cf36c88bd 100644 --- a/packages/hagrid/hagrid/stable_version.py +++ b/packages/hagrid/hagrid/stable_version.py @@ -1 +1 @@ -LATEST_STABLE_SYFT = "0.8.5" +LATEST_STABLE_SYFT = "0.8.5-post.2" diff --git a/packages/hagrid/hagrid/version.py b/packages/hagrid/hagrid/version.py index 5a4b39ad87e..0994a6660a5 100644 --- a/packages/hagrid/hagrid/version.py +++ b/packages/hagrid/hagrid/version.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # HAGrid Version -__version__ = "0.3.112" +__version__ = "0.3.113" if __name__ == "__main__": print(__version__) diff --git a/packages/hagrid/setup.py b/packages/hagrid/setup.py index c7da3d9e668..3063089fa17 100644 --- a/packages/hagrid/setup.py +++ b/packages/hagrid/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages from setuptools import setup -__version__ = "0.3.112" +__version__ = "0.3.113" DATA_FILES = {"img": ["hagrid/img/*.png"], "hagrid": ["*.yml"]} diff --git a/packages/syft/PYPI.md b/packages/syft/PYPI.md index faa4b395262..31aa223e980 100644 --- a/packages/syft/PYPI.md +++ b/packages/syft/PYPI.md @@ -1,7 +1,7 @@


-Syft Logo +Syft Logo Perform data science on `data` that remains in `someone else's` server @@ -20,7 +20,7 @@ $ pip install -U syft[data_science] ```python # from Jupyter / Python import syft as sy -sy.requires(">=0.8.4,<0.8.5") +sy.requires(">=0.8.5,<0.8.6") node = sy.orchestra.launch(name="my-domain", port=8080, dev_mode=True, reset=True) ``` @@ -35,26 +35,26 @@ Starting syft-node server on 0.0.0.0:8080 ```python import syft as sy -sy.requires(">=0.8.4,<0.8.5") +sy.requires(">=0.8.5,<0.8.6") domain_client = sy.login(port=8080, email="info@openmined.org", password="changethis") ``` ## PySyft in 10 minutes -📝 API Example Notebooks - -- 00-load-data.ipynb -- 01-submit-code.ipynb -- 02-review-code-and-approve.ipynb -- 03-data-scientist-download-result.ipynb -- 04-jax-example.ipynb -- 05-custom-policy.ipynb -- 06-multiple-code-requests.ipynb -- 07-domain-register-control-flow.ipynb -- 08-code-version.ipynb -- 09-blob-storage.ipynb -- 10-container-images.ipynb -- 11-container-images-k8s.ipynb +📝 API Example Notebooks + +- 00-load-data.ipynb +- 01-submit-code.ipynb +- 02-review-code-and-approve.ipynb +- 03-data-scientist-download-result.ipynb +- 04-jax-example.ipynb +- 05-custom-policy.ipynb +- 06-multiple-code-requests.ipynb +- 07-domain-register-control-flow.ipynb +- 08-code-version.ipynb +- 09-blob-storage.ipynb +- 10-container-images.ipynb +- 11-container-images-k8s.ipynb ## Deploy Kubernetes Helm Chart @@ -133,11 +133,12 @@ helm install ... --set ingress.class="gce" # Versions `0.9.0` - Coming soon... -`0.8.5` (Beta) - `dev` branch 👈🏽 API - Coming soon... -`0.8.4` (Stable) - API +`0.8.6` (Beta) - `dev` branch 👈🏽 API - Coming soon... +`0.8.5-post.2` (Stable) - API Deprecated: +- `0.8.4` - API - `0.8.3` - API - `0.8.2` - API - `0.8.1` - API @@ -159,7 +160,7 @@ HAGrid is a cli / deployment tool so the latest version of `hagrid` is usually t # What is Syft? -Syft +Syft `Syft` is OpenMined's `open source` stack that provides `secure` and `private` Data Science in Python. Syft decouples `private data` from model training, using techniques like [Federated Learning](https://ai.googleblog.com/2017/04/federated-learning-collaborative.html), [Differential Privacy](https://en.wikipedia.org/wiki/Differential_privacy), and [Encrypted Computation](https://en.wikipedia.org/wiki/Homomorphic_encryption). This is done with a `numpy`-like interface and integration with `Deep Learning` frameworks, so that you as a `Data Scientist` can maintain your current workflow while using these new `privacy-enhancing techniques`. @@ -177,19 +178,19 @@ No more cold calls to get `access` to a dataset. No more weeks of `wait times` t
- +

Data Owner

-
+

Data Scientist

- +

Data Engineer

@@ -197,11 +198,11 @@ No more cold calls to get `access` to a dataset. No more weeks of `wait times` t -- Deploy a Domain Server -- Upload Private Data -- Create Accounts +- Deploy a Domain Server +- Upload Private Data +- Create Accounts - Manage Privacy Budget -- Join a Network +- Join a Network - Learn how PETs streamline Data Policies @@ -289,9 +290,9 @@ Provides services to a group of `Data Owners` and `Data Scientists`, such as dat
- + - +
@@ -299,7 +300,7 @@ Provides services to a group of `Data Owners` and `Data Scientists`, such as dat
- +

🎥 PETs: Remote Data Science Unleashed - R gov 2021
@@ -318,9 +319,9 @@ Provides services to a group of `Data Owners` and `Data Scientists`, such as dat

- + - +
@@ -334,18 +335,18 @@ Provides services to a group of `Data Owners` and `Data Scientists`, such as dat
- +
- +
- +
@@ -355,51 +356,51 @@ Provides services to a group of `Data Owners` and `Data Scientists`, such as dat OpenMined and Syft appreciates all contributors, if you would like to fix a bug or suggest a new feature, please see our [guidelines](https://openmined.github.io/PySyft/developer_guide/index.html).
-Contributors +Contributors # Supporters @@ -409,7 +410,7 @@ OpenMined and Syft appreciates all contributors, if you would like to fix a bug `OpenMined` is a fiscally sponsored `501(c)(3)` in the USA. We are funded by our generous supporters on Open Collective.

-Contributors +Contributors # Disclaimer diff --git a/packages/syft/setup.cfg b/packages/syft/setup.cfg index 45e499f7e0e..afc4d6e3e76 100644 --- a/packages/syft/setup.cfg +++ b/packages/syft/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = syft -version = attr: "0.8.5" +version = attr: "0.8.5-post.2" description = Perform numpy-like analysis on data that remains in someone elses server author = OpenMined author_email = info@openmined.org diff --git a/packages/syft/src/syft/VERSION b/packages/syft/src/syft/VERSION index 65e777033eb..85bd8bd432b 100644 --- a/packages/syft/src/syft/VERSION +++ b/packages/syft/src/syft/VERSION @@ -1,5 +1,5 @@ # Mono Repo Global Version -__version__ = "0.8.5" +__version__ = "0.8.5-post.2" # elsewhere we can call this file: `python VERSION` and simply take the stdout # stdlib diff --git a/packages/syft/src/syft/__init__.py b/packages/syft/src/syft/__init__.py index 1b88457eb56..34bb6293c1c 100644 --- a/packages/syft/src/syft/__init__.py +++ b/packages/syft/src/syft/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.5" +__version__ = "0.8.5-post.2" # stdlib from collections.abc import Callable diff --git a/packages/syft/src/syft/node/node.py b/packages/syft/src/syft/node/node.py index ec1f9b198aa..2dfc70c163f 100644 --- a/packages/syft/src/syft/node/node.py +++ b/packages/syft/src/syft/node/node.py @@ -121,6 +121,7 @@ from ..types.uid import UID from ..util.experimental_flags import flags from ..util.telemetry import instrument +from ..util.util import get_dev_mode from ..util.util import get_env from ..util.util import get_queue_address from ..util.util import random_name @@ -178,10 +179,6 @@ def get_default_root_password() -> str | None: return get_env(DEFAULT_ROOT_PASSWORD, "changethis") # nosec -def get_dev_mode() -> bool: - return str_to_bool(get_env("DEV_MODE", "False")) - - def get_enable_warnings() -> bool: return str_to_bool(get_env("ENABLE_WARNINGS", "False")) @@ -1427,8 +1424,6 @@ def get_unauthed_context( return UnauthedServiceContext(node=self, login_credentials=login_credentials) def create_initial_settings(self, admin_email: str) -> NodeSettingsV2 | None: - if self.name is None: - self.name = random_name() try: settings_stash = SettingsStash(store=self.document_store) if self.signing_key is None: diff --git a/packages/syft/src/syft/protocol/data_protocol.py b/packages/syft/src/syft/protocol/data_protocol.py index cf9a4837642..cf4ffb65bcd 100644 --- a/packages/syft/src/syft/protocol/data_protocol.py +++ b/packages/syft/src/syft/protocol/data_protocol.py @@ -9,7 +9,10 @@ import os from pathlib import Path import re +from types import UnionType +import typing from typing import Any +import warnings # third party from packaging.version import parse @@ -24,6 +27,7 @@ from ..service.response import SyftSuccess from ..types.dicttuple import DictTuple from ..types.syft_object import SyftBaseObject +from ..util.util import get_dev_mode PROTOCOL_STATE_FILENAME = "protocol_version.json" PROTOCOL_TYPE = str | int @@ -53,9 +57,36 @@ def protocol_release_dir() -> Path: return data_protocol_dir() / "releases" +def handle_union_type_klass_name(type_klass_name: str) -> str: + if type_klass_name == typing.Union.__name__: + return UnionType.__name__ + return type_klass_name + + +def handle_annotation_repr_(annotation: type) -> str: + """Handle typing representation.""" + origin = typing.get_origin(annotation) + args = typing.get_args(annotation) + if origin and args: + args_repr = ", ".join(getattr(arg, "__name__", str(arg)) for arg in args) + origin_repr = getattr(origin, "__name__", str(origin)) + + # Handle typing.Union and types.UnionType + origin_repr = handle_union_type_klass_name(origin_repr) + return f"{origin_repr}: [{args_repr}]" + elif args: + args_repr = ", ".join( + getattr(arg, "__name__", str(arg)) for arg in sorted(args) + ) + return args_repr + else: + return repr(annotation) + + class DataProtocol: - def __init__(self, filename: str) -> None: + def __init__(self, filename: str, raise_exception: bool = False) -> None: self.file_path = data_protocol_dir() / filename + self.raise_exception = raise_exception self.load_state() def load_state(self) -> None: @@ -67,8 +98,12 @@ def load_state(self) -> None: @staticmethod def _calculate_object_hash(klass: type[SyftBaseObject]) -> str: # TODO: this depends on what is marked as serde + + # Rebuild the model to ensure that the fields are up to date + # and any ForwardRef are resolved + klass.model_rebuild() field_data = { - field: repr(field_info.annotation) + field: handle_annotation_repr_(field_info.rebuild_annotation()) for field, field_info in sorted( klass.model_fields.items(), key=itemgetter(0) ) @@ -211,14 +246,21 @@ def diff_state(self, state: dict) -> tuple[dict, dict]: object_diff[canonical_name][str(version)]["action"] = "add" continue - raise Exception( + error_msg = ( f"{canonical_name} for class {cls.__name__} fqn {cls} " + f"version {version} hash has changed. " + f"{hash_str} not in {versions.values()}. " + "Is a unique __canonical_name__ for this subclass missing? " + "If the class has changed you will need to define a new class with the changes, " + "with same __canonical_name__ and bump the __version__ number." + + f"{cls.model_fields}" ) + + if get_dev_mode() or self.raise_exception: + raise Exception(error_msg) + else: + warnings.warn(error_msg, stacklevel=1, category=UserWarning) + break else: # new object so its an add object_diff[canonical_name][str(version)] = {} @@ -416,6 +458,7 @@ def revert_latest_protocol(self) -> Result[SyftSuccess, SyftError]: # Save history self.save_history(protocol_history) + self.load_state() def check_protocol(self) -> Result[SyftSuccess, SyftError]: if len(self.diff) != 0: @@ -462,18 +505,26 @@ def has_dev(self) -> bool: return True return False + def reset_dev_protocol(self) -> None: + if self.has_dev: + del self.protocol_history["dev"] + self.save_history(self.protocol_history) -def get_data_protocol() -> DataProtocol: - return DataProtocol(filename=data_protocol_file_name()) + +def get_data_protocol(raise_exception: bool = False) -> DataProtocol: + return DataProtocol( + filename=data_protocol_file_name(), + raise_exception=raise_exception, + ) def stage_protocol_changes() -> Result[SyftSuccess, SyftError]: - data_protocol = get_data_protocol() + data_protocol = get_data_protocol(raise_exception=True) return data_protocol.stage_protocol_changes() def bump_protocol_version() -> Result[SyftSuccess, SyftError]: - data_protocol = get_data_protocol() + data_protocol = get_data_protocol(raise_exception=True) return data_protocol.bump_protocol_version() diff --git a/packages/syft/src/syft/protocol/protocol_version.json b/packages/syft/src/syft/protocol/protocol_version.json index 3c29112d00b..b6616ee7128 100644 --- a/packages/syft/src/syft/protocol/protocol_version.json +++ b/packages/syft/src/syft/protocol/protocol_version.json @@ -8,1673 +8,7 @@ "3": { "release_name": "0.8.4.json" }, - "dev": { - "object_versions": { - "ActionObject": { - "1": { - "version": 1, - "hash": "632446f1415102490c93fafb56dd9eb29d79623bcc5e9f2e6e37c4f63c2c51c3", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "577aa1f010b90194958a18ec38ee21db3718bd96d9e036501c6ddeefabedf432", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "37bb8f0f87b1da2525da8f6873e6257dff4a732f2dba293b62931ad0b85ef9e2", - "action": "add" - } - }, - "AnyActionObject": { - "1": { - "version": 1, - "hash": "bcb31f847907edc9c95d2d120dc5427854604f40940e3f41cd0474a1820ac65e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "002d8be821140befebbc0503e6bc1ef8779094e24e46305e5da5af6eecb56b13", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "7c55461e3c6ba36ff999c64eb1b97a65b5a1f27193a973b1355ee2675f14c313", - "action": "add" - } - }, - "BlobFileOBject": { - "1": { - "version": 1, - "hash": "8da2c80ced4f0414c671313c4b63d05846df1e397c763d99d803be86c29755bb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "1ab941c7669572a41067a17e0e3f2d9c7056f7a4df8f899e87ae2358d9113b02", - "action": "add" - } - }, - "JobInfo": { - "1": { - "version": 1, - "hash": "cf26eeac3d9254dfa439917493b816341f8a379a77d182bbecba3b7ed2c1d00a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "058a7fc0c63e0bcb399088e7fcde9b8522522e269b00cee2d093d1c890550ce8", - "action": "add" - } - }, - "ExecutionOutput": { - "1": { - "version": 1, - "hash": "201c8abcb6595a64140ad0c3b058557229c7790a25fb55ed229ae0efcb63ad07", - "action": "add" - } - }, - "OutputPolicyExecuteCount": { - "1": { - "version": 1, - "hash": "6bb24b3b35e19564c43b838ca3f46ccdeadb6596511917f2d220681a378e439d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5bce0120ba3b7cbbe08b28bb92bf035215e66232c36899637b8a3f84300747e3", - "action": "add" - } - }, - "OutputPolicyExecuteOnce": { - "1": { - "version": 1, - "hash": "32a40fc9966b277528eebc61c01041f3a5447417731954abdaffbb14dabc76bb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "11e2ed5f7fc4bfc701c592352c5377911b0496454c42995c428333ca7ce635c5", - "action": "add" - } - }, - "UserCodeStatusCollection": { - "1": { - "version": 1, - "hash": "8d8bae10ee1733464272031e7de6fc783668885206fa448c9f7cd8e8cfc7486a", - "action": "add" - } - }, - "UserCode": { - "1": { - "version": 1, - "hash": "e14c22686cdc7d1fb2b0d01c0aebdea37e62a61b051677c1d30234214f05cd42", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "660e1abc15034f525e91ffdd820c2a2179bfddf83b7b9e3ce7823b2efc515c69", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "90fcae0f556f375ba1e91d2e345f57241660695c6e2b84c8e311df89d09e6c66", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "84ef96946a18e2028d71e125a7a4b8bed2c9cba3c5a2612634509790506e5b9c", - "action": "add" - } - }, - "UserCodeExecutionOutput": { - "1": { - "version": 1, - "hash": "d20e83362df8a5d2d2e7eb26a2c5723739f9cfbe4c0272d3ae7e37a34bbe5317", - "action": "add" - } - }, - "NumpyArrayObject": { - "1": { - "version": 1, - "hash": "dcc7b44fa5ad22ae0bc576948f856c172dac1e9de2bc8e2a302e428f3309a278", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2c631121d9211006edab5620b214dea83e2398bee92244d822227ee316647e22", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "709dc84a946267444a3f9968acf4a5e9807d6aa5143626c3fb635c9282108cc1", - "action": "add" - } - }, - "NumpyScalarObject": { - "1": { - "version": 1, - "hash": "5c1b6b6e8ba88bc79e76646d621489b889fe8f9b9fd59f117d594be18a409633", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0d5d81b9d45c140f6e07b43ed68d31e0ef060d6b4d0431c9b4795997bb35c69d", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "5e84c9905a1816d51c0dfb1eedbfb4d831095ca6c89956c6fe200c2a193cbb8f", - "action": "add" - } - }, - "NumpyBoolObject": { - "1": { - "version": 1, - "hash": "a5c822a6a3ca9eefd6a2b68f7fd0bc614fba7995f6bcc30bdc9dc882296b9b16", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "24839ba1c88ed833a134124750d5f299abcdf318670315028ed87b254f4578b3", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "bf936c1923ceee4def4cded06d41766998ea472322b0738bade7b85298e469da", - "action": "add" - } - }, - "PandasDataframeObject": { - "1": { - "version": 1, - "hash": "35058924b3de2e0a604a92f91f4dd2e3cc0dac80c219d34f360e7cedd52f5f4c", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "66729d4ba7a92210d45c5a5c24fbdb4c8e58138a515a7bdb71ac8f6e8b868544", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "daf3629fb7d26f41f96cd7f9200d7327a4b74d800b3e02afa75454d11bd47d78", - "action": "add" - } - }, - "PandasSeriesObject": { - "1": { - "version": 1, - "hash": "2a0d8a55f1c27bd8fccd276cbe01bf272c40cab10417d7027273983fed423caa", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "cb05a714f75b1140a943f56a3622fcc0477b3a1f504cd545a98510959ffe1528", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4747a220d1587e99e6ac076496a2aa7217e2700205ac80fc24fe4768a313da78", - "action": "add" - } - }, - "UserCodeStatusChange": { - "1": { - "version": 1, - "hash": "4f5b405cc2b3976ed8f7018df82e873435d9187dff15fa5a23bc85a738969f3f", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d83e0905ae882c824ba8fbbf455cd3881906bf8b2ebbfff07bcf471ef869cedc", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "dd79f0f4d8cc7c95120911a0a5d9264cc6e65813bd4ad39f81b756b40c1463e9", - "action": "add" - } - }, - "SyncStateItem": { - "1": { - "version": 1, - "hash": "cde09be2cfeca4246d001f3f28c00d8647a4506641104e5dc647f136a64fd06e", - "action": "add" - } - }, - "SyncState": { - "1": { - "version": 1, - "hash": "b91ed9a9eb8ac7e2fadafd9376d8adefc83845d2f29939b30e95ebe94dc78cd9", - "action": "add" - } - }, - "StoreConfig": { - "1": { - "version": 1, - "hash": "17de8875cf590311ddb042140347ffc79d4a85028e504dad178ca4e1237ec861", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3f6c9a967a43557bf88caab87e5d1b9b14ea240bfd5bd6a1a313798e4ee2552b", - "action": "add" - } - }, - "MongoStoreConfig": { - "1": { - "version": 1, - "hash": "e52aa382e300b0b69aaa2d80aadb4e3a9a3c02b3c741b71d56f959c4d3891ce5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f27e70c1c074de2d921f8f0cca02bec90d359cf0a1f255fe77d84455e5daa966", - "action": "add" - } - }, - "Action": { - "1": { - "version": 1, - "hash": "5cf71ee35097f17fbb1dd05096f875211d71cf07161205d7f6a9c11fd49d5272", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "a13b50c4d23bd6deb7896e394f2a20e6cef4c33c5e6f4ee30f19eaffab708f21", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "18525c0610aea0aa62fe496a739b0ca7fb828617b4fca73840807d3c7b1477a7", - "action": "add" - } - }, - "DataSubjectCreate": { - "1": { - "version": 1, - "hash": "5a94f9fcba75c50d78d71222f0235c5fd4d8003ae0db4d74bdbc4d56a99de3aa", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b35897295822f061fbc70522ca8967cd2be53a5c01b19e24c587cd7b0c4aa3e8", - "action": "add" - } - }, - "Dataset": { - "1": { - "version": 1, - "hash": "99ca2fa3e46fd9810222d269fac6accb546f632e94d5d57529016ba5e55af5a8", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0bbae6e3665e61e97eeb328400efc678dfb26409616c66bf48f3f34bbf102721", - "action": "add" - } - }, - "CreateDataset": { - "1": { - "version": 1, - "hash": "3b020d9b8928cbd7e91f41c749ab4c932e19520696a183f2c7cd1312ebb640d1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "83c6142c99da6667260e0d6df258b6e173beb18e399d60209b6ffccb5547f1e7", - "action": "add" - } - }, - "DictStoreConfig": { - "1": { - "version": 1, - "hash": "256e9c623ce0becd555ddd2a55a0c15514e162786b1549388cef98a92a9b18c9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6cef5c61f567c75c969827fabaf5bd4f4409a399f33b6b2623fbed3c7a597a41", - "action": "add" - } - }, - "SQLiteStoreConfig": { - "1": { - "version": 1, - "hash": "b656b26c14cf4e97aba702dd62a0927aec7f860c12eed512c2c688e1b7109aa5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e2027eacb8db772fadc506e5bbe797a3fd24175c18b98f79f412cc86ee300f2e", - "action": "add" - } - }, - "Plan": { - "1": { - "version": 1, - "hash": "a0bba2b7792c9e08c453e9e256f0ac6e6185610726566bcd50b057ae83b42d9a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "67be9b8933b5bec20090727a7b1a03216f874dcc254975481ac62a5a1e9c0c1e", - "action": "add" - } - }, - "NodeMetadata": { - "1": { - "version": 1, - "hash": "6bee018894dfdf697ea624740d0bf051750e0b0d8470ced59646f6d8812068ac", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f856169fea72486cd436875ce4411ef935da11eb7c5af48121adfa00d4c0cdb6", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "3cc67abf394a805066a88aef0bea15bde609b9ecbe7ec15172eac5e7a0b7ef7c", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "9501017d54d67c987bf62a37891e9e2ceaa0f741ff6cc502ea1db7bdf26b98da", - "action": "add" - } - }, - "NodeSettings": { - "1": { - "version": 1, - "hash": "b662047bb278f4f5db77c102f94b733c3a929839271b3d6b82ea174a60e2aaf0", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "29a82afcb006a044b6ae04c6ea8a067d145d28b4210bb038ea9fa86ebde108c8", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ea0a9336358fc24988e2e157912f1898a9f770d9520b73a34ce2320b0565f99c", - "action": "add" - } - }, - "BlobFile": { - "1": { - "version": 1, - "hash": "47ed55183d619c6c624e35412360a41de42833e2c24223c1de1ad12a84fdafc2", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "8f1710c754bb3b39f546b97fd69c4826291398b247976bbc41fa873af431bca9", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "05ef86582c6b8967499eb0f57d048676e15390ce74891409fada522226563754", - "action": "add" - } - }, - "SeaweedSecureFilePathLocation": { - "1": { - "version": 1, - "hash": "5724a38b1a92b8a55da3d9cc34a720365a6d0c32683acda630fc44067173e201", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5fd63fed2a4efba8c2b6c7a7b5e9b5939181781c331230896aa130b6fd558739", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "a986f0e990db9c7ada326b2cca828fa146349a303e674fa48ee4b45702bedc14", - "action": "add" - } - }, - "BlobStorageEntry": { - "1": { - "version": 1, - "hash": "9f1b027cce390ee6f71c7a81e7420bb71a477b29c6c62ba74e781a97bc5434e6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5472bdd5bdce6d0b561543a6bac70d47bf0c05c141a21450751460cc538d6b55", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "136b0fb4908eb0c065a7ba6644ff5377a3c22ce8d97b3e48de1eb241101d4806", - "action": "add" - } - }, - "BlobStorageMetadata": { - "1": { - "version": 1, - "hash": "6888943be3f97186190dd26d7eefbdf29b15c6f2fa459e13608065ebcdb799e2", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "674f4c52a8444289d5ef389b919008860e2b0e7acbaafa774d58e492d5b6741a", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "643065504ecfabd283c736c794cfb41fb85156879940488d6ea851bb2ac3c16a", - "action": "add" - } - }, - "BlobRetrieval": { - "1": { - "version": 1, - "hash": "a8d7e1d6483e7a9b5a130e837fa398862aa6cbb316cc5f4470450d835755fdd9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4c4fbdb6df5bb9fcbe914a9890bd1c1b6a1b3f382a04cbc8752a5a1b03130111", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ab0f1f06c57b3cd8bd362514d662b170a888a2487dbb1e9f880f611ce47a2b2c", - "action": "add" - } - }, - "SyftObjectRetrieval": { - "2": { - "version": 2, - "hash": "d9d7a7e1b8843145c9687fd013c9223700285886073547734267e91ac53e0996", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "952958e9afae007bef3cb89aa15be95dddc4c310e3a8ce4191576f90ac6fcbc8", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "dd6527e200e7d21e5f4166b2874daf6aeb0b41fafeb8f07f96b675c8625d4cf7", - "action": "add" - } - }, - "WorkerSettings": { - "1": { - "version": 1, - "hash": "0dcd95422ec8a7c74e45ee68a125084c08f898dc94a13d25fe5a5fd0e4fc5027", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d623a8a0d6c83b26ba49686bd8be10eccb126f54626fef334a85396c3b8a8ed6", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "d42ed88ba674e8e1ceefa61b0f9fd76400d965e52ab000b2c7f0ae5f9d26d109", - "action": "add" - } - }, - "SubmitUserCode": { - "2": { - "version": 2, - "hash": "9b29e060973a3de8d3564a2b7d2bb5c53745aa445bf257576994b613505d7194", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "a29160c16d2e2620800d42cdcd9f3637d063a570c477a5d05217a2e64b4bb396", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "755721313ee8a7148c513c1d0b85324cfcbec14297887daf84ac4c0c5f468a4f", - "action": "add" - } - }, - "SeaweedFSBlobDeposit": { - "1": { - "version": 1, - "hash": "382a9ac178deed2a9591e1ebbb39f265cbe67027fb93a420d473a4c26b7fda11", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "07d84a95324d95d9c868cd7d1c33c908f77aa468671d76c144586aab672bcbb5", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "ba3715305ea320413ca5a8780d0d02aeeb5cf3be2445aa274496c539ac787425", - "action": "add" - } - }, - "QueueItem": { - "1": { - "version": 1, - "hash": "5aa94681d9d0715d5b605f9625a54e114927271378cf2ea7245f85c488035e0b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9503b878de4b5b7a1793580301353523b7d6219ebd27d38abe598061979b7570", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "3495f406d2c97050ce86be80c230f49b6b846c63b9a9230cbd6631952f2bad0f", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "c37bc1c6303c467050ce4f8faa088a2f66ef1781437ffe34f15aadf5477ac25b", - "action": "add" - } - }, - "ZMQClientConfig": { - "1": { - "version": 1, - "hash": "e6054969b495791569caaf33239039beae3d116e1fe74e9575467c48b9007c45", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "91ce5953cced58e12c576aa5174d5ca0c91981b01cf42edd5283d347baa3390b", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "94f4243442d5aa7d2eb48e661a2cbf9d7c1d6a22035a3783977bdfae4a571142", - "action": "add" - } - }, - "ActionQueueItem": { - "1": { - "version": 1, - "hash": "11a43caf9164eb2a5a21f4bcb0ca361d0a5d134bf3c60173f2c502d0d80219de", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6413ed01e949cac169299a43ce40651f9bf8053e408b6942853f8afa8a693b3d", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4159d6ea45bc82577828bc19d668196422ff29bb8cc298b84623e6f4f476aaf3", - "action": "add" - } - }, - "JobItem": { - "1": { - "version": 1, - "hash": "7b8723861837b0b7e948b2cf9244159d232185f3407dd6bef108346f941ddf6e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e99cf5a78c6dd3a0adc37af3472c7c21570a9e747985dff540a2b06d24de6446", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "5b93a59e28574691339d22826d5650969336a2e930b93d6b3fe6d5409ca0cfc4", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "dae431b87cadacfd30613519b5dd25d2e4ff59d2a971e21a31d56901103b9420", - "action": "add" - } - }, - "SyftLog": { - "1": { - "version": 1, - "hash": "bd3f62b8fe4b2718a6380c8f05a93c5c40169fc4ab174db291929298e588429e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "d3ce45794da2e6c4b0cef63b98a553525af50c5d9db42d3d64caef3e7d22b4a9", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "6417108288ab4cf090ee2d548fb44b7de7f60b20a33876e5333ab4cabcc5b5df", - "action": "add" - } - }, - "SignedSyftAPICall": { - "1": { - "version": 1, - "hash": "e66a116de2fa44ebdd0d4c2d7d5a047dedb555fd201a0f431cd8017d9d33a61d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6cd89ed24027ed94b3e2bb7a07e8932060e07e481ceb35eb7ee4d2d0b6e34f43", - "action": "add" - } - }, - "UserUpdate": { - "2": { - "version": 2, - "hash": "32cba8fbd786c575f92e26c31384d282e68e3ebfe5c4b0a0e793820b1228d246", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "fd73429a86cc4fe4db51198ae380a18b9a7e42885701efad42bc2ef1b28c04de", - "action": "add" - } - }, - "UserCreate": { - "2": { - "version": 2, - "hash": "2540188c5aaea866914dccff459df6e0f4727108a503414bb1567ff6297d4646", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "26f9467d60b9b642e0a754e9fc028c66a139925fa7d9fac52e5a1e9afdf1387b", - "action": "add" - } - }, - "UserSearch": { - "1": { - "version": 1, - "hash": "69d1e10b81c8a4143cf70e4f911d8562732af2458ebbc455ca64542f11373dd1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6fd7bc05cfad5724d81b1122ddf70c6ea09e6fa77fa374c0b68e0d42e0781088", - "action": "add" - } - }, - "NodeSettingsUpdate": { - "1": { - "version": 1, - "hash": "b6ddc66ff270a3c2c4760e31e1a55d72ed04ccae2d0115ebe2fba6f2bf9bd119", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3f66c4c8a21d63b6dba2ad27c452a01aae6b827ca5c161580312dfb850a0d821", - "action": "add" - } - }, - "User": { - "2": { - "version": 2, - "hash": "ded970c92f202716ed33a2117cf541789f35fad66bd4b1db39da5026b1d7d0e7", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "7f5e148674564f2c9c75e19fd2ea17001fbef9e2ba5e49a7e92a8b8b6098f340", - "action": "add" - } - }, - "UserView": { - "2": { - "version": 2, - "hash": "e410de583bb15bc5af57acef7be55ea5fc56b5b0fc169daa3869f4203c4d7473", - "action": "remove" - }, - "3": { - "version": 3, - "hash": "4487e0e96c6cdef771d751bca4e14afac48a17ba7aa03d956521e3d757ab95f5", - "action": "add" - } - }, - "Notification": { - "1": { - "version": 1, - "hash": "d13981f721fe2b3e2717640ee07dc716c596e4ecd442461665c3fdab0b85bf0e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3814065d869d10444d7413302101c720bc6dd1a105dd7c29eccf38f32351e322", - "action": "add" - } - }, - "CreateNotification": { - "1": { - "version": 1, - "hash": "b1f459de374fe674f873a4a5f3fb8a8aabe0d83faad84a933f0a77dd1141159a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "32d046bda4d978fb8e839e2c2c4994b86a60843311b74330e307e6e3e422176f", - "action": "add" - } - }, - "NotificationPreferences": { - "1": { - "version": 1, - "hash": "127206b9c72d353d9f1b73fb10d8ecd57f28f9bfbfdc2f7648894cb0d2ad2522", - "action": "add" - } - }, - "NotifierSettings": { - "1": { - "version": 1, - "hash": "8505ded16432d1741ee16b0eada22da7c6e36ae7b414cfb59168ac846f3e9f54", - "action": "add" - } - }, - "PartialSyftObject": { - "1": { - "version": 1, - "hash": "008917584d8e1c09015cdbef02f59c0622f48e0618877c1b44425c8846befc13", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "385ef254e4a0c9e68fd750f2bb47f8f9c46dbd2ac9f00f535f843f19f1cf6032", - "action": "add" - } - }, - "NodeMetadataUpdate": { - "1": { - "version": 1, - "hash": "569d124c23590360bda240c19b53314ccc6204c5d1ab0d2898976a028e002191", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "cfe5400a5440de50e9a413f84c2aa05bad33135f46b16d21496534973145e93c", - "action": "add" - } - }, - "MongoDict": { - "1": { - "version": 1, - "hash": "640734396edae801e1601fe7777710e67685e552acb0244ad8b4f689599baca9", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c83245be5997362196ee7fe2afd2b7ec7a2cf67aed5efe4bde16c7e83dc530b0", - "action": "add" - } - }, - "LinkedObject": { - "1": { - "version": 1, - "hash": "824567c6933c095d0e2f6995c8de3581c0fbd2e9e4ead35c8159f7964709c28e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0c52ad9a259358652f7c78f73ab041185a59b24534cee9f0802313ff4b4d4781", - "action": "add" - } - }, - "BaseConfig": { - "1": { - "version": 1, - "hash": "4e5257080ce615aa4122b02bad8487e4c7d6d0f171ff77abbc9e8cd3e33df89a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "45e4480e6fbb5183e36cbe3bd18e21d65c43cc5809028a13ab49270e0a565da6", - "action": "add" - } - }, - "ServiceConfig": { - "1": { - "version": 1, - "hash": "ca91f59bf045d949d82860f7d52655bfbede4cf6bdc5bae8f847f08a16f05d74", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5945f4f7347baeae0a7f5386d71982a16d6be8ab0c1caa2b10c28d282e66b1ea", - "action": "add" - } - }, - "LibConfig": { - "1": { - "version": 1, - "hash": "c6ff229aea16874c5d9ae4d1f9e500d13f5cf984bbcee7abd16c5841707a2f78", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0fc4586bc939a15426ba2315f2457c77eea262c9d34756f0ee6b0198c001cf47", - "action": "add" - } - }, - "APIEndpoint": { - "1": { - "version": 1, - "hash": "c0e83867b107113e6fed06364ba364c24b2f4af35b15a3869b176318d3be7989", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "1264dca857f7d5c8d1aa92791726a2e17567aba82538b64d357b988d1ae3a8c9", - "action": "add" - } - }, - "LibEndpoint": { - "1": { - "version": 1, - "hash": "153eac6d8990774eebfffaa75a9895e7c4e1a0e09465d5da0baf4c3a3b03369d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c845900e729bef87be1a0efe69a7059055199eb5a5b9b9e8bd730dd16e18ed7a", - "action": "add" - } - }, - "SyftAPICall": { - "1": { - "version": 1, - "hash": "014bd1d0933f6070888a313edba239170759de24eae49bf2374c1be4dbe2b4d7", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "bc686b6399e058b21472d61fe56df1f0de0785219f52c7306dd5ab8bae863d89", - "action": "add" - } - }, - "SyftAPIData": { - "1": { - "version": 1, - "hash": "db101a75227e34750d7056785a1e87bb2e8ad6604f19c372d0cb6aa437243bf5", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b303d322c7e6da6e003e5d92a27d86acce512228a9dd62c1ab48824702055bf0", - "action": "add" - } - }, - "SyftAPI": { - "1": { - "version": 1, - "hash": "2bba1d9fcf677a58e35bf903de3da22ee4913af138aa3012af9c46b3609579cd", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "8f3ff426794df07cbeab441ff545fb896f27897df88b11ec949ec05726a41747", - "action": "add" - } - }, - "UserViewPage": { - "1": { - "version": 1, - "hash": "16dac6209b19a934d286ef1efa874379e0040c324e71023c57d1bc6d2d367171", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0f9d54e606f9a4af73249dd4012baa11fcb7c1e60cce70c01ee48bb63411d6fe", - "action": "add" - } - }, - "UserPrivateKey": { - "1": { - "version": 1, - "hash": "7cb196587887f0f3bffb298dd9f3b88509e9b2748792bf8dc03bdd0d6b98714a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0917d22c7cbd3531be6365570952557aed054332d1ec89720213f218e4202ae0", - "action": "add" - } - }, - "DateTime": { - "1": { - "version": 1, - "hash": "7e9d89309a10d2110a7ae4f97d8f25a7914853269e8fa0c531630790c1253f17", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c353b8edfa13250507942a3134f0ec9db8fb1d85f4f7a029fe4ad5665614bf5a", - "action": "add" - } - }, - "ReplyNotification": { - "1": { - "version": 1, - "hash": "34b2ad522f7406c2486573467d9c7acef5c1063a0d9f2177c3bda2d8c4f87572", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "7bea00170bce350ea1c3a1a16cfb31264e70da9da2fd6f2128852c479e793b60", - "action": "add" - } - }, - "HTTPConnection": { - "1": { - "version": 1, - "hash": "5ee19eaf55ecbe7945ea45924c036ec0f500114a2f64176620961a8c2ec94cdb", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c05bfaf9ca6b5f47cd20c52fd7961bf9f372196713c2333fc9bfed8e0383acf1", - "action": "add" - } - }, - "PythonConnection": { - "1": { - "version": 1, - "hash": "011946fc9af0a6987f5c7bc9b0208b2fae9d65217531430bced7ba542788da1a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b7bb677f60333d3ab1e927d0be44725667ce75620c2861c706cbca022cfae1fc", - "action": "add" - } - }, - "ActionDataEmpty": { - "1": { - "version": 1, - "hash": "89b5912fe5416f922051b8068be6071a03c87a4ab264959de524f1b86e95f028", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2bea14a344a82a10725a9e933bb1838ffbe2d28771ee4f54f40b4d5663840a7c", - "action": "add" - } - }, - "ObjectNotReady": { - "1": { - "version": 1, - "hash": "88207988639b11eaca686b6e079616d9caecc3dbc2a8112258e0f39ee5c3e113", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "be7001fea1c819ced4c14e6b3a32b59ee11f773d8b23cf42c2f228e782b631b8", - "action": "add" - } - }, - "ActionDataLink": { - "1": { - "version": 1, - "hash": "10bf94e99637695f1ba283f0b10e70743a4ebcb9ee75aefb1a05e6d6e1d21a71", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4551f22ea68af0d0943f9aa239b4fd468cf9f4da43589b536651fc3d27d99f12", - "action": "add" - } - }, - "SyftImageRegistry": { - "1": { - "version": 1, - "hash": "dc83910c91947e3d9eaa3e6f8592237448f0408668c7cca80450b5fcd54722e1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3ceacaa164246323be86ccde0881dd42ee6275684e147095e1d0de7b007ae066", - "action": "add" - } - }, - "SyftWorkerImage": { - "1": { - "version": 1, - "hash": "2a9585b6a286e24f1a9f3f943d0128730cf853edc549184dc1809d19e1eec54b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4a6169ba1f50fdb73ac45500dd02b9d164ef239f13800c0da0ed5f8aed7cde1a", - "action": "add" - } - }, - "SyftWorker": { - "1": { - "version": 1, - "hash": "0d5b367162f3ce55ab090cc1b49bd30e50d4eb144e8431eadc679bd0e743aa70", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "257395af556b1b2972089150c0e3280479a5ba12779d012651eee2f6870e7133", - "action": "add" - } - }, - "WorkerPool": { - "1": { - "version": 1, - "hash": "250699eb4c452fc427995353d5c5ad6245fb3e9fdac8814f8348784816a0733b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3fa999bb789b9557939dea820ddcb6c68224822581971a3c3861da3b781d6c25", - "action": "add" - } - }, - "SecureFilePathLocation": { - "1": { - "version": 1, - "hash": "7febc066e2ee5a3a4a891720afede3f5c155cacc0557662ac4d04bf67b964c6d", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f1a9510992d60e037c0016574225b8f61433b87bb65bc3320800b1c70e54982c", - "action": "add" - } - }, - "AzureSecureFilePathLocation": { - "1": { - "version": 1, - "hash": "1bb15f3f9d7082779f1c9f58de94011487924cb8a8c9c2ec18fd7c161c27fd0e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "29a0c01a59d8632037c6d18d6fce1512b651e1aa8493b302746ff294c7bd331d", - "action": "add" - } - }, - "CreateBlobStorageEntry": { - "1": { - "version": 1, - "hash": "61a373336e83645f1b6d78a320323d9ea4ee91b3d87b730cb0608fbfa0072262", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9046843fba39e5700aeb8c442a7e4ac5e772b12f6ac502367b2e5decbb26761f", - "action": "add" - } - }, - "BlobRetrievalByURL": { - "3": { - "version": 3, - "hash": "0b664100ea08413ca4ef04665ca910c2cf9535539617ea4ba33687d05cdfe747", - "action": "remove" - }, - "4": { - "version": 4, - "hash": "3fadedaf8e4ba97db9d4ddf1cf954338113cbb88d016253c008b11f0dfe19c59", - "action": "add" - } - }, - "BlobDeposit": { - "1": { - "version": 1, - "hash": "c98e6da658a3be01ead4ea6ee6a4c10046879f0ce0f5fc5f946346671579b229", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "87dd601b58f31ccf8e3001e8723d8d251f84bd7ab9a2f87ff7c6cf05b074d41f", - "action": "add" - } - }, - "HTTPNodeRoute": { - "1": { - "version": 1, - "hash": "1901b9f53f9970ce2bd8307ba9f7cafc0e7eba1d2ec82e4014c6120e605e3741", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b7ee63d7b47d2fab46a62d8e7d8277c03f872524457f4fe128cc9759eac72795", - "action": "add" - } - }, - "PythonNodeRoute": { - "1": { - "version": 1, - "hash": "15711e6e7a1ef726c8e8b5c35a6cb2d30b56ba5213cba489524bf63489e136cf", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "375b36756047fa0e926e5461320960a5c48546ef8cc0c6bb4ff620c7084dc4fc", - "action": "add" - } - }, - "DataSubject": { - "1": { - "version": 1, - "hash": "0b8b049d4627727b444c419f5d6a97b7cb97a433088ebf744c854b6a470dadf1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6d9d65d2723aed8cc4cfce9b5ee4a005ab84f8a24372dc47ce856cb6516835a9", - "action": "add" - } - }, - "DataSubjectMemberRelationship": { - "1": { - "version": 1, - "hash": "0a820edc9f1a87387acc3c611fe852752fcb3dab7608058f2bc48211be7bfbd2", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "159d4e4f2463b213a65082b270acbb57ae84c5f0dbc897fda75486290b3148f1", - "action": "add" - } - }, - "Contributor": { - "1": { - "version": 1, - "hash": "d1d4f25bb87e59c0414501d3335097de66815c164c9ed5a7850ff8bec69fbcdc", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "55259f1e4f1b9da4ac83b032adb86eb4a1322a06584790d1300131777212dbaa", - "action": "add" - } - }, - "MarkdownDescription": { - "1": { - "version": 1, - "hash": "519328a3952049f57004013e4fb00840695b24b8575cad983056412c9c9d9ba6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3416f899b925ba0636edd1ac01bf5c6f4f5533eae4f0a825f112bbf89dcd232a", - "action": "add" - } - }, - "Asset": { - "1": { - "version": 1, - "hash": "24350b8d9597df49999918ad42e0eece1328ea30389311f1e0a420be8f39b8a1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "64661b3bc84a2df81ce631641a0fe3f0d969618b6855971f5e51e5770c278bba", - "action": "add" - } - }, - "CreateAsset": { - "1": { - "version": 1, - "hash": "1b4c71569b8da64258672483bd36dc4aa99a32d4cb519659241d15bc898041a6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "93c75b45b9b74c69243cc2f2ef2d661e11eef5c23ecf71692ffdbd467d11efe6", - "action": "add" - } - }, - "DatasetPageView": { - "1": { - "version": 1, - "hash": "b1de14bb9b6a259648dfc59b6a48fa526116afe50a689c24b8bb36fd0e6a97f8", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c7494afa0ae27326c4521a918eb234ba74eb2c0494ea448255ff310201a16c88", - "action": "add" - } - }, - "TwinObject": { - "1": { - "version": 1, - "hash": "c42455586b43724a7421becd99122b787a129798daf6081e96954ecaea228099", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "937fded2210d9b792cbe7a99879180e396902fe7b684cd6a14a651db8b9ca2c9", - "action": "add" - } - }, - "ExactMatch": { - "1": { - "version": 1, - "hash": "e497e2e2380db72766c5e219e8afd13136d8953933d6f1eaf83b14001e887cde", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "f752dfdec6b30e1c849e483ac88ab6f0c71a286199415e4f7bc33c8c2502fc1f", - "action": "add" - } - }, - "OutputHistory": { - "1": { - "version": 1, - "hash": "4ec6e6efd86a972b474251885151bdfe4ef262562174605e8ab6a8abba1aa867", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "425ad1c14348e51a2ec0eb82f1ef86b8fbc63e282e4c511023d6c2d644e3bd83", - "action": "add" - } - }, - "UserPolicy": { - "1": { - "version": 1, - "hash": "c69b17b1d96cace8b45da6d9639165f2da4aa7ff156b6fd922ac217bf7856d8a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6f201caff6457bd036e614a58aedb9fad6a3947b7d4d7965ccfdb788b6385262", - "action": "add" - } - }, - "SubmitUserPolicy": { - "1": { - "version": 1, - "hash": "96f7f39279fadc70c569b8d48ed4d6420a8132db51e37466d272fda19953554b", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "971f4aa69bf68e7a876b0b1cb85ba7d4213212baf7eeaa24bab0a70f18841497", - "action": "add" - } - }, - "UserCodeExecutionResult": { - "1": { - "version": 1, - "hash": "49c32e85e78b7b189a7f13b7e26115ef94fcb0b60b578adcbe2b95e289f63a6e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "05c457f502f7a257a4d5287633d18bbd3cb4ba565afb6a69ac0822c55408a55e", - "action": "add" - } - }, - "CodeHistory": { - "1": { - "version": 1, - "hash": "a7baae93862ae0aa67675f1617574e31aafb15a9ebff633eb817278a3a867161", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "54793b2909c70303c58fb720e431752547e29e56a616e544b6a103b2bfd2f73b", - "action": "add" - } - }, - "CodeHistoryView": { - "1": { - "version": 1, - "hash": "0ed1a2a04a962ecbcfa38b0b8a03c1e51e8946a4b80f6bf2557148ce658671ce", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3d5f79f8367c229f163ab746ef8c7069bec5a1478a19812dbac735fc333e41c3", - "action": "add" - } - }, - "CodeHistoriesDict": { - "1": { - "version": 1, - "hash": "95288411cd5843834f3273a2fd66a7df2e603e980f4ab1d329f9ab17d5d2f643", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "36175742343fdb2c9ea54809c08857cf1f30451245ebdca45b13020f6c7c0e2e", - "action": "add" - } - }, - "UsersCodeHistoriesDict": { - "1": { - "version": 1, - "hash": "5e1f389c4565ee8558386dd5c934d81e0c68ab1434f86bb9065976b587ef44d1", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9cb9a7e1e5c5e294cd019bdb9824180fa399810e7d57db285823157c91ee7d76", - "action": "add" - } - }, - "OnDiskBlobDeposit": { - "1": { - "version": 1, - "hash": "5efc230c1ee65c4626d334aa69ed458c796c45265e546a333844c6c2bcd0e6b0", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "adc890e6c70334b46f49fff6b4f22d6aa9f13981b4f6ecd16a0f2910ed69da1b", - "action": "add" - } - }, - "RemoteConfig": { - "1": { - "version": 1, - "hash": "ad7bc4780a8ad52e14ce68601852c93d2fe07bda489809cad7cae786d2461754", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "9d6b8ddb258815b5660f2288164a3a87f68a0e6849493eb48c87da1509b6ab27", - "action": "add" - } - }, - "AzureRemoteConfig": { - "1": { - "version": 1, - "hash": "c05c6caa27db4e385c642536d4b0ecabc0c71e91220d2e6ce21a2761ca68a673", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "2f820aa55e6476b455fec7774346a4c0dad212bde1400f1f53f42c8864b7ded4", - "action": "add" - } - }, - "Change": { - "1": { - "version": 1, - "hash": "aefebd1601cf5bfd4817b0db75300a78299cc4949ead735a90873cbd22c8d4bc", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b661753ae9187feb92751edb4a38066c9c14aba73e3639d44ac5fe7aee8b2ab9", - "action": "add" - } - }, - "ChangeStatus": { - "1": { - "version": 1, - "hash": "627f6f8e42cc285336aa6fd4916285d796140f4ff901487b7cb3907ef0f116a6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "8a62d5bcde312e7b9efd1d0b26cab6de7affa1e3ffe9182f8598137340408084", - "action": "add" - } - }, - "ActionStoreChange": { - "1": { - "version": 1, - "hash": "17b865e75eb3fb2693924fb00ba87a25260be45d55a4eb2184c4ead22d787cbe", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "3a1c8f10afb4c4d10a4096a1371e4780b2cb40bb2253193bfced6c250d3e8547", - "action": "add" - } - }, - "CreateCustomImageChange": { - "1": { - "version": 1, - "hash": "bc09dca7995938f3b3a2bd9c8b3c2feffc8484df466144a425cb69cadb2ab635", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6569fb11bccd100cd4b6050084656e7e7c46b9405ff76589b870402b26a6927b", - "action": "add" - } - }, - "CreateCustomWorkerPoolChange": { - "1": { - "version": 1, - "hash": "86894f8ccc037de61f44f9698fd113ba02c3cf3870a3048c00a46e15dcd1941c", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "e2a223a65461b502f097f06453f878b54175b4055dad3ec9b09c1eb9458a575e", - "action": "add" - } - }, - "Request": { - "1": { - "version": 1, - "hash": "e054307eeb7f13683cde9ce7613d5ca2925a13fff7c345b1c9f729a12c955f90", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "72bb2fcf520d8ca31fc5fd9b1730a8839648b7f446bcc9f2b6d80e4c635feb59", - "action": "add" - } - }, - "RequestInfo": { - "1": { - "version": 1, - "hash": "b76075c138afc0563ce9ac7f6b1131f048951f7486cd516c02736dc1a2a23639", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "fd127bb4f64b4d04122d31b27b46f712a6f3c9518b2e6df0b140247bab115789", - "action": "add" - } - }, - "RequestInfoFilter": { - "1": { - "version": 1, - "hash": "7103abdc464ae71bb746410f5730f55dd8ed82268aa32bbb0a69e0070488a669", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "c8773edca83f068b5a7b7ebe7f5e70ff8df65915564cead695b4528203f750a3", - "action": "add" - } - }, - "SubmitRequest": { - "1": { - "version": 1, - "hash": "96b4ec12beafd9d8a7c97399cb8a23dade4db16d8f521be3fe7b8fec99db5161", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "796b297342793995b8dd87e8feb420e8601dee3b704b7a21a93326661b227ea8", - "action": "add" - } - }, - "ObjectMutation": { - "1": { - "version": 1, - "hash": "0ee3dd38d6df0fe9a19d848e8f3aaaf13a6ba86afe3406c239caed6da185651a", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "24b7c302f9821afe073534d4ed02c377bd4f7cb691f66ca92b94c38c92dc78c2", - "action": "add" - } - }, - "EnumMutation": { - "1": { - "version": 1, - "hash": "4c02f956ec9b973064972cc57fc8dd9c525e683f93f804642b4e1bfee1b62e57", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "6d2e2f64c00dcda74a2545c77abbcf1630c56c26014987038feab174d15bd9d7", - "action": "add" - } - }, - "NodePeer": { - "1": { - "version": 1, - "hash": "7b88de7e38490e2d69f31295137673e7ddabc16ab0e2272ff491f6cea1835d63", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "14cf8b9bb7c95c20caec8606ae5dddb882832f00fba2326352e7a0f2444dbc9f", - "action": "add" - } - }, - "SyftObjectMigrationState": { - "1": { - "version": 1, - "hash": "d3c8126bc15dae4dd243bb035530e3f56cd9e433d403dd6b5f3b45face6d281f", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "187e6b6619f56fdaf2fbe150a0ec561b1d6a7dbfbc6132257951844206319c79", - "action": "add" - } - }, - "ProjectThreadMessage": { - "1": { - "version": 1, - "hash": "1118e935792e8e54103dbf91fa33edbf192a7767d2b1d4526dfa7d4a643cde2e", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "319007e1173c1558917cbdf25171da70514fe0afaae49c7d099aca6f2ec87015", - "action": "add" - } - }, - "ProjectMessage": { - "1": { - "version": 1, - "hash": "55a3a5171b6949372b4125cc461bf39bc998565e07703804fca6c7ef99695ae4", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "086513fa450d185b5040b75dc034f4e219c3214677674efa4b4263fda140ce2a", - "action": "add" - } - }, - "ProjectRequestResponse": { - "1": { - "version": 1, - "hash": "d4c360e845697a0b24695143d0781626cd344cfde43162c90ae90fe67e00ae21", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "b29309054cd9f9e6a3f00724453f90510076de0bf03ff300fc83670a1721b272", - "action": "add" - } - }, - "ProjectRequest": { - "1": { - "version": 1, - "hash": "514d189df335c68869eea36befcdcafec74bdc682eaf18871fe879e26da4dbb6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "7d7f74f39333bef10ac37f49b5783dc9ba9b5783d2bec814d7de2d2025bcce01", - "action": "add" - } - }, - "AnswerProjectPoll": { - "1": { - "version": 1, - "hash": "ff2e1ac7bb764c99d646b96eb3ebfbf9311599b7e3be07aa4a4eb4810bb6dd12", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "fff1a7e5ca30b76132cf8b6225cb576467d9727349b9dc54d4131fede03c10f3", - "action": "add" - } - }, - "ProjectPoll": { - "1": { - "version": 1, - "hash": "b0ac8f1d9c06997374ddbc33fdf1d0af0da15fdb6899f52d91a8574106558964", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "90522301ab056881d79a066d824dcce6d7836f2555ac4182bbafe75bea5a5fa7", - "action": "add" - } - }, - "Project": { - "1": { - "version": 1, - "hash": "ec5b7ac1c92808e266f06b175c6ebcd50be81777ad120c02ce8c6074d0004788", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "4b7f5d0bec9a1ba7863679b85425f1918745e9dad21476078c19f7257d5f38a3", - "action": "add" - } - }, - "ProjectSubmit": { - "1": { - "version": 1, - "hash": "0374b37779497d7e0b2ffeabc38d35bfbae2ee762a7674a5a8af75e7c5545e61", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "0af1abb9ac899c0bc133971f75d17be8260b80a2df9fe191965db431bb6fd910", - "action": "add" - } - }, - "VeilidConnection": { - "1": { - "version": 1, - "hash": "c5ed1cfa9b7b146dbce7f1057f6e81e89715b5addfd4d4c4d53c415e450373a5", - "action": "add" - } - }, - "VeilidNodeRoute": { - "1": { - "version": 1, - "hash": "4797413e3144fce7bccc290db64f1750e8c09f75d5e1aba6e19d29f921a21074", - "action": "add" - } - }, - "EnclaveMetadata": { - "1": { - "version": 1, - "hash": "39f85e475015e6f860ddcc5fea819423eba2db8f4b7d8e004c05a44d6f8444c6", - "action": "remove" - }, - "2": { - "version": 2, - "hash": "5103272305abd2bcf23c616bd9014be986a92c40dc37b6238680114036451852", - "action": "add" - } - } - } + "4": { + "release_name": "0.8.5.post2.json" } } diff --git a/packages/syft/src/syft/protocol/releases/0.8.5.post2.json b/packages/syft/src/syft/protocol/releases/0.8.5.post2.json new file mode 100644 index 00000000000..a9263238beb --- /dev/null +++ b/packages/syft/src/syft/protocol/releases/0.8.5.post2.json @@ -0,0 +1,1671 @@ +{ + "4": { + "object_versions": { + "ActionObject": { + "1": { + "version": 1, + "hash": "632446f1415102490c93fafb56dd9eb29d79623bcc5e9f2e6e37c4f63c2c51c3", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "577aa1f010b90194958a18ec38ee21db3718bd96d9e036501c6ddeefabedf432", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "d5303167b1048c1b956781c6daeaa93ec792bea5181c076c93da74dfec0a6127", + "action": "add" + } + }, + "AnyActionObject": { + "1": { + "version": 1, + "hash": "bcb31f847907edc9c95d2d120dc5427854604f40940e3f41cd0474a1820ac65e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "002d8be821140befebbc0503e6bc1ef8779094e24e46305e5da5af6eecb56b13", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "22568b8c3d700b7eaa3291b9f3d014dda3d6dbe20f1f8eab87210ccb2f035bbc", + "action": "add" + } + }, + "BlobFileOBject": { + "1": { + "version": 1, + "hash": "8da2c80ced4f0414c671313c4b63d05846df1e397c763d99d803be86c29755bb", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f8d75c274f7ae4138e85bb936c3f27241cc0f7dd011ba237396733c53e5a1b0d", + "action": "add" + } + }, + "JobInfo": { + "1": { + "version": 1, + "hash": "cf26eeac3d9254dfa439917493b816341f8a379a77d182bbecba3b7ed2c1d00a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "89dbd4a810586b49498be1f5299b565a19871487e14a120433b0a4cf607b6dee", + "action": "add" + } + }, + "ExecutionOutput": { + "1": { + "version": 1, + "hash": "c2337099eba14767ead75fcc1b1fa265c1898461ede0b5e7758a0e8d11d1757d", + "action": "add" + } + }, + "OutputPolicyExecuteCount": { + "1": { + "version": 1, + "hash": "6bb24b3b35e19564c43b838ca3f46ccdeadb6596511917f2d220681a378e439d", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "124e48961e0a2ffe9b8ce2aca7244e5c87d3a31debaedfc03c4edc721bb1a86c", + "action": "add" + } + }, + "OutputPolicyExecuteOnce": { + "1": { + "version": 1, + "hash": "32a40fc9966b277528eebc61c01041f3a5447417731954abdaffbb14dabc76bb", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "429110a31e6a1b91e228e1ce9006607bf6ca3e8ce4c4005c82754b089492ec80", + "action": "add" + } + }, + "UserCodeStatusCollection": { + "1": { + "version": 1, + "hash": "07481d543ec3131e759822710ab1714d525c0a16b20ebe4a2119f558ba22c125", + "action": "add" + } + }, + "UserCode": { + "1": { + "version": 1, + "hash": "e14c22686cdc7d1fb2b0d01c0aebdea37e62a61b051677c1d30234214f05cd42", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "660e1abc15034f525e91ffdd820c2a2179bfddf83b7b9e3ce7823b2efc515c69", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "90fcae0f556f375ba1e91d2e345f57241660695c6e2b84c8e311df89d09e6c66", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "0a7181cd5f76800b6566175ffa7276d0cf38c4ddc5110114430147dfc8bfdb2a", + "action": "add" + } + }, + "UserCodeExecutionOutput": { + "1": { + "version": 1, + "hash": "deafafb72d07d724690aaa2fe742379f8e9b3531d9c33f6a8683ee90b462e353", + "action": "add" + } + }, + "NumpyArrayObject": { + "1": { + "version": 1, + "hash": "dcc7b44fa5ad22ae0bc576948f856c172dac1e9de2bc8e2a302e428f3309a278", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "2c631121d9211006edab5620b214dea83e2398bee92244d822227ee316647e22", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "ff3e9e57df17d6027581ae1aa177199751d8685a3b0cb4359e7e55ace3514041", + "action": "add" + } + }, + "NumpyScalarObject": { + "1": { + "version": 1, + "hash": "5c1b6b6e8ba88bc79e76646d621489b889fe8f9b9fd59f117d594be18a409633", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "0d5d81b9d45c140f6e07b43ed68d31e0ef060d6b4d0431c9b4795997bb35c69d", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "9cc5eca915280827de912d66fbb345f43f80787de309613f3fc53130df5fa7d8", + "action": "add" + } + }, + "NumpyBoolObject": { + "1": { + "version": 1, + "hash": "a5c822a6a3ca9eefd6a2b68f7fd0bc614fba7995f6bcc30bdc9dc882296b9b16", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "24839ba1c88ed833a134124750d5f299abcdf318670315028ed87b254f4578b3", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "808a042ea9bca5b621417296824bf2a0b170e66c1f714f91ec3feccace41e2a3", + "action": "add" + } + }, + "PandasDataframeObject": { + "1": { + "version": 1, + "hash": "35058924b3de2e0a604a92f91f4dd2e3cc0dac80c219d34f360e7cedd52f5f4c", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "66729d4ba7a92210d45c5a5c24fbdb4c8e58138a515a7bdb71ac8f6e8b868544", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "30e79bc3df2f7d99d8bca7e58f2d93ab24fc766ce723d985142cf7adee4cc57a", + "action": "add" + } + }, + "PandasSeriesObject": { + "1": { + "version": 1, + "hash": "2a0d8a55f1c27bd8fccd276cbe01bf272c40cab10417d7027273983fed423caa", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "cb05a714f75b1140a943f56a3622fcc0477b3a1f504cd545a98510959ffe1528", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "96942949c5a7be48891f84f95b046148bf3e5213b586012071f637c488115ac0", + "action": "add" + } + }, + "UserCodeStatusChange": { + "1": { + "version": 1, + "hash": "4f5b405cc2b3976ed8f7018df82e873435d9187dff15fa5a23bc85a738969f3f", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "d83e0905ae882c824ba8fbbf455cd3881906bf8b2ebbfff07bcf471ef869cedc", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "6a743ac25193006491f53e0ab697a1391a8f19441d6fa6d6b67d4d5745808b12", + "action": "add" + } + }, + "SyncStateItem": { + "1": { + "version": 1, + "hash": "4dbfa0813f5a3f7be0b36249ff2d67e395ad7c9e138c5a122fc7342b8dcc4b92", + "action": "add" + } + }, + "SyncState": { + "1": { + "version": 1, + "hash": "a0616775ec8ef0629e2d91e0df9cc4237ea3674727eda1ce367f1897ee35767d", + "action": "add" + } + }, + "StoreConfig": { + "1": { + "version": 1, + "hash": "17de8875cf590311ddb042140347ffc79d4a85028e504dad178ca4e1237ec861", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "6df61455f637affc477cf7ded7206009b414269b497a586b5d3374368e9ea602", + "action": "add" + } + }, + "MongoStoreConfig": { + "1": { + "version": 1, + "hash": "e52aa382e300b0b69aaa2d80aadb4e3a9a3c02b3c741b71d56f959c4d3891ce5", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "ab2a664a0b3c6f5e0d8323aa26c399c7810462f1a8178f5e5f5021b95a40570c", + "action": "add" + } + }, + "Action": { + "1": { + "version": 1, + "hash": "5cf71ee35097f17fbb1dd05096f875211d71cf07161205d7f6a9c11fd49d5272", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "a13b50c4d23bd6deb7896e394f2a20e6cef4c33c5e6f4ee30f19eaffab708f21", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "8b9957c26b2fa6513d6a07cdde6a4fab003693cf4b787e8bda0ecc2503ae9d54", + "action": "add" + } + }, + "DataSubjectCreate": { + "1": { + "version": 1, + "hash": "5a94f9fcba75c50d78d71222f0235c5fd4d8003ae0db4d74bdbc4d56a99de3aa", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f33811ae53332a54323cd64772776d0fdf95623f5ee7e3f5759dd36ba9e0397d", + "action": "add" + } + }, + "Dataset": { + "1": { + "version": 1, + "hash": "99ca2fa3e46fd9810222d269fac6accb546f632e94d5d57529016ba5e55af5a8", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "5e108228813bda478de1d6496fffc888f2f1bbaa7ae11ccce100987ee935c5ce", + "action": "add" + } + }, + "CreateDataset": { + "1": { + "version": 1, + "hash": "3b020d9b8928cbd7e91f41c749ab4c932e19520696a183f2c7cd1312ebb640d1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "67d45b8e93be3c95cdc5c5c2ff8d7e181e0c3200badc279d56be4f51f5e78ce7", + "action": "add" + } + }, + "DictStoreConfig": { + "1": { + "version": 1, + "hash": "256e9c623ce0becd555ddd2a55a0c15514e162786b1549388cef98a92a9b18c9", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "071e31e8bf4fdf894b03e0490549be4c40fcb0f0cdecff34866c5d2eded2944f", + "action": "add" + } + }, + "SQLiteStoreConfig": { + "1": { + "version": 1, + "hash": "b656b26c14cf4e97aba702dd62a0927aec7f860c12eed512c2c688e1b7109aa5", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "194391d5e90030ad2fe46e7a810ee55dddaa9a1f831667bcdad6e2363c1996fa", + "action": "add" + } + }, + "Plan": { + "1": { + "version": 1, + "hash": "a0bba2b7792c9e08c453e9e256f0ac6e6185610726566bcd50b057ae83b42d9a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f8e623e1887df2c0051caf9e06820e6603148e8ae688460e10a6f4b2dd405e9d", + "action": "add" + } + }, + "NodeMetadata": { + "1": { + "version": 1, + "hash": "6bee018894dfdf697ea624740d0bf051750e0b0d8470ced59646f6d8812068ac", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f856169fea72486cd436875ce4411ef935da11eb7c5af48121adfa00d4c0cdb6", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "3cc67abf394a805066a88aef0bea15bde609b9ecbe7ec15172eac5e7a0b7ef7c", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "6d0dd9f388728bb8532ca775587cc7eb9889e111bad8f0b4ba17464140479f9f", + "action": "add" + } + }, + "NodeSettings": { + "1": { + "version": 1, + "hash": "b662047bb278f4f5db77c102f94b733c3a929839271b3d6b82ea174a60e2aaf0", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "29a82afcb006a044b6ae04c6ea8a067d145d28b4210bb038ea9fa86ebde108c8", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "2d5f6e79f074f75b5cfc2357eac7cf635b8f083421009a513240b4dbbd5a0fc1", + "action": "add" + } + }, + "BlobFile": { + "1": { + "version": 1, + "hash": "47ed55183d619c6c624e35412360a41de42833e2c24223c1de1ad12a84fdafc2", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "8f1710c754bb3b39f546b97fd69c4826291398b247976bbc41fa873af431bca9", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "c74d6f9899d928430a38bd4585069b557de8e985a13f82f166479bd7f32d5a85", + "action": "add" + } + }, + "SeaweedSecureFilePathLocation": { + "1": { + "version": 1, + "hash": "5724a38b1a92b8a55da3d9cc34a720365a6d0c32683acda630fc44067173e201", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "5fd63fed2a4efba8c2b6c7a7b5e9b5939181781c331230896aa130b6fd558739", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "12547e03e48b48c44f13720792db9302726c92f33ecc5374bd92ff6f2d733adf", + "action": "add" + } + }, + "BlobStorageEntry": { + "1": { + "version": 1, + "hash": "9f1b027cce390ee6f71c7a81e7420bb71a477b29c6c62ba74e781a97bc5434e6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "5472bdd5bdce6d0b561543a6bac70d47bf0c05c141a21450751460cc538d6b55", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "0a5cf4058b330727a2d617a99d56070a7a6977b7d10f532fbb35cd4fe97b7678", + "action": "add" + } + }, + "BlobStorageMetadata": { + "1": { + "version": 1, + "hash": "6888943be3f97186190dd26d7eefbdf29b15c6f2fa459e13608065ebcdb799e2", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "674f4c52a8444289d5ef389b919008860e2b0e7acbaafa774d58e492d5b6741a", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "b4b222dc8a994b5ff6d685818973516d89b615e2321d122edc28d1c30479a9fb", + "action": "add" + } + }, + "BlobRetrieval": { + "1": { + "version": 1, + "hash": "a8d7e1d6483e7a9b5a130e837fa398862aa6cbb316cc5f4470450d835755fdd9", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "4c4fbdb6df5bb9fcbe914a9890bd1c1b6a1b3f382a04cbc8752a5a1b03130111", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "609daef405c4606f61b76df23c91ae75a97788a4e99f3e1ee7faa5a35eab8748", + "action": "add" + } + }, + "SyftObjectRetrieval": { + "2": { + "version": 2, + "hash": "d9d7a7e1b8843145c9687fd013c9223700285886073547734267e91ac53e0996", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "952958e9afae007bef3cb89aa15be95dddc4c310e3a8ce4191576f90ac6fcbc8", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "fe151e6fceaafc71c9189d07aed077dc0477bea6a8d7f3c3ace9098ed3161f6b", + "action": "add" + } + }, + "WorkerSettings": { + "1": { + "version": 1, + "hash": "0dcd95422ec8a7c74e45ee68a125084c08f898dc94a13d25fe5a5fd0e4fc5027", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "d623a8a0d6c83b26ba49686bd8be10eccb126f54626fef334a85396c3b8a8ed6", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "20c9e19d8084a87130e173d09d3e9ebaecd3127c455702471eac764d37912a43", + "action": "add" + } + }, + "SubmitUserCode": { + "2": { + "version": 2, + "hash": "9b29e060973a3de8d3564a2b7d2bb5c53745aa445bf257576994b613505d7194", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "a29160c16d2e2620800d42cdcd9f3637d063a570c477a5d05217a2e64b4bb396", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "3c5c8627e4f7cca64c1249eea52e7c46171fd4882f76c83e9fa8a1ea7e828b9c", + "action": "add" + } + }, + "SeaweedFSBlobDeposit": { + "1": { + "version": 1, + "hash": "382a9ac178deed2a9591e1ebbb39f265cbe67027fb93a420d473a4c26b7fda11", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "07d84a95324d95d9c868cd7d1c33c908f77aa468671d76c144586aab672bcbb5", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "05e61e6328b085b738e5d41c0781d87852d44d218894cb3008f5be46e337f6d8", + "action": "add" + } + }, + "QueueItem": { + "1": { + "version": 1, + "hash": "5aa94681d9d0715d5b605f9625a54e114927271378cf2ea7245f85c488035e0b", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "9503b878de4b5b7a1793580301353523b7d6219ebd27d38abe598061979b7570", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "3495f406d2c97050ce86be80c230f49b6b846c63b9a9230cbd6631952f2bad0f", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "96b0ab4ae935558cd391b86e923f8c7e172b3c27b288c0133197bdc41bd7e19f", + "action": "add" + } + }, + "ZMQClientConfig": { + "1": { + "version": 1, + "hash": "e6054969b495791569caaf33239039beae3d116e1fe74e9575467c48b9007c45", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "91ce5953cced58e12c576aa5174d5ca0c91981b01cf42edd5283d347baa3390b", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "d8761747473ef2af59a7889ab0ea0f69f78a841a9f0cf9fad8260e9c570211d5", + "action": "add" + } + }, + "ActionQueueItem": { + "1": { + "version": 1, + "hash": "11a43caf9164eb2a5a21f4bcb0ca361d0a5d134bf3c60173f2c502d0d80219de", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "6413ed01e949cac169299a43ce40651f9bf8053e408b6942853f8afa8a693b3d", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "5bcda9c7df78ded9ea4b53710191f37054d3046ea01125b755afc8c30dd9eed2", + "action": "add" + } + }, + "JobItem": { + "1": { + "version": 1, + "hash": "7b8723861837b0b7e948b2cf9244159d232185f3407dd6bef108346f941ddf6e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "e99cf5a78c6dd3a0adc37af3472c7c21570a9e747985dff540a2b06d24de6446", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "5b93a59e28574691339d22826d5650969336a2e930b93d6b3fe6d5409ca0cfc4", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "6a7cc7c2bb4dd234c1508b0af4d3b403cd3b7b427578a775bf80dc36891923ed", + "action": "add" + } + }, + "SyftLog": { + "1": { + "version": 1, + "hash": "bd3f62b8fe4b2718a6380c8f05a93c5c40169fc4ab174db291929298e588429e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "d3ce45794da2e6c4b0cef63b98a553525af50c5d9db42d3d64caef3e7d22b4a9", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "8964d48238672e0e5d5db6b932cda4ee8eb77581949ab3f7a38a05b1efec13b7", + "action": "add" + } + }, + "SignedSyftAPICall": { + "1": { + "version": 1, + "hash": "e66a116de2fa44ebdd0d4c2d7d5a047dedb555fd201a0f431cd8017d9d33a61d", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7a3bdede247c347196d5ced8217d2d3849e91a02dc5fd1c98c4a8bcac98480e4", + "action": "add" + } + }, + "UserUpdate": { + "2": { + "version": 2, + "hash": "32cba8fbd786c575f92e26c31384d282e68e3ebfe5c4b0a0e793820b1228d246", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "a7333af6252bf92ccd913bb23ddc4c0b0c63f8838277d7ebad406be92fa019d2", + "action": "add" + } + }, + "UserCreate": { + "2": { + "version": 2, + "hash": "2540188c5aaea866914dccff459df6e0f4727108a503414bb1567ff6297d4646", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "70a0d3a701aca47f58009d48c94e314adc464e5429af6794b5770a1163ddfdda", + "action": "add" + } + }, + "UserSearch": { + "1": { + "version": 1, + "hash": "69d1e10b81c8a4143cf70e4f911d8562732af2458ebbc455ca64542f11373dd1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "78d4149c8b1af8510755341fc369eae83d7f67c6b771b50af7f9b3c9b6e7b7aa", + "action": "add" + } + }, + "NodeSettingsUpdate": { + "1": { + "version": 1, + "hash": "b6ddc66ff270a3c2c4760e31e1a55d72ed04ccae2d0115ebe2fba6f2bf9bd119", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "e1dc9d2f30c4aae1f7359eb3fd44de5537788cd3c69be5f30c36fb019f07c261", + "action": "add" + } + }, + "User": { + "2": { + "version": 2, + "hash": "ded970c92f202716ed33a2117cf541789f35fad66bd4b1db39da5026b1d7d0e7", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "ac5179da4b09332cade6aeedd1c59b506ddfe932ee79b9bb2c087dca24391342", + "action": "add" + } + }, + "UserView": { + "2": { + "version": 2, + "hash": "e410de583bb15bc5af57acef7be55ea5fc56b5b0fc169daa3869f4203c4d7473", + "action": "remove" + }, + "3": { + "version": 3, + "hash": "ac21f70f7bcbc6cadd7b07949e66b66bca31aa5c1fb28196ae38d22dc05eb444", + "action": "add" + } + }, + "Notification": { + "1": { + "version": 1, + "hash": "d13981f721fe2b3e2717640ee07dc716c596e4ecd442461665c3fdab0b85bf0e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "848bdbdbfc655c8cbb6274d3158fad7d3fcdaf77bf0389031dff0d8cedcdbd24", + "action": "add" + } + }, + "CreateNotification": { + "1": { + "version": 1, + "hash": "b1f459de374fe674f873a4a5f3fb8a8aabe0d83faad84a933f0a77dd1141159a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "657edc0de0b93399006f9c911de2cd212244acc192ff052abf7215bb41fe83aa", + "action": "add" + } + }, + "NotificationPreferences": { + "1": { + "version": 1, + "hash": "e0be3fb928a3e05ba309fc4d59e8eba1e61c6ea09aeb68f25230a5e9446cfcfd", + "action": "add" + } + }, + "NotifierSettings": { + "1": { + "version": 1, + "hash": "efa20280a24d48f583d1e21875a9c195466c7df1239cebbce6016fd6c15c02ad", + "action": "add" + } + }, + "PartialSyftObject": { + "1": { + "version": 1, + "hash": "008917584d8e1c09015cdbef02f59c0622f48e0618877c1b44425c8846befc13", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1254e629e855f017511f60a10f249bd266a018c446b8533b58fcbbb7bb63c29e", + "action": "add" + } + }, + "NodeMetadataUpdate": { + "1": { + "version": 1, + "hash": "569d124c23590360bda240c19b53314ccc6204c5d1ab0d2898976a028e002191", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "520ae8ffc0c057ffa827cb7b267a19fb6b92e3cf3c0a3666ac34e271b6dd0aed", + "action": "add" + } + }, + "MongoDict": { + "1": { + "version": 1, + "hash": "640734396edae801e1601fe7777710e67685e552acb0244ad8b4f689599baca9", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "47da755ee2c572f719f9c4624120142f0e3c411aeb03278a9eea5fdd92ad2bad", + "action": "add" + } + }, + "LinkedObject": { + "1": { + "version": 1, + "hash": "824567c6933c095d0e2f6995c8de3581c0fbd2e9e4ead35c8159f7964709c28e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "08ba9bab178011c723f84bdc64ea879a369f4e6fb32d60020ae123e64b19ec42", + "action": "add" + } + }, + "BaseConfig": { + "1": { + "version": 1, + "hash": "4e5257080ce615aa4122b02bad8487e4c7d6d0f171ff77abbc9e8cd3e33df89a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "383d9ce8873520c9224e00797a96d6dc2e64f054795e3b1de2ac7cd8ce68df86", + "action": "add" + } + }, + "ServiceConfig": { + "1": { + "version": 1, + "hash": "ca91f59bf045d949d82860f7d52655bfbede4cf6bdc5bae8f847f08a16f05d74", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "4c79a399bbbd8571b712bdb957ff3bc4903aae59cc06bd584c248860dfdab9fe", + "action": "add" + } + }, + "LibConfig": { + "1": { + "version": 1, + "hash": "c6ff229aea16874c5d9ae4d1f9e500d13f5cf984bbcee7abd16c5841707a2f78", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "48924a4e5c9dfbc22ef7f2449ca82c7c8d6ae6f6eae070b87747e8a971bd1cb4", + "action": "add" + } + }, + "APIEndpoint": { + "1": { + "version": 1, + "hash": "c0e83867b107113e6fed06364ba364c24b2f4af35b15a3869b176318d3be7989", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1be1f6793478cd2e4a0cc84713426b2d5586969e98058f4e8b91fc19293cf445", + "action": "add" + } + }, + "LibEndpoint": { + "1": { + "version": 1, + "hash": "153eac6d8990774eebfffaa75a9895e7c4e1a0e09465d5da0baf4c3a3b03369d", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "74916f7c9bbca213b70fcdb5212eae9eb5d3c9fddf4aa35e1fb9a7158fd2d97f", + "action": "add" + } + }, + "SyftAPICall": { + "1": { + "version": 1, + "hash": "014bd1d0933f6070888a313edba239170759de24eae49bf2374c1be4dbe2b4d7", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f18183e178a0b5709a2800a7d88f9eef25afefe64d6c646938fec6c5aacd296f", + "action": "add" + } + }, + "SyftAPIData": { + "1": { + "version": 1, + "hash": "db101a75227e34750d7056785a1e87bb2e8ad6604f19c372d0cb6aa437243bf5", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "931f6019fe66e35eebfe2e0b3c20d7354e2222b4e51a7b60ae9a54c581a77d6e", + "action": "add" + } + }, + "SyftAPI": { + "1": { + "version": 1, + "hash": "2bba1d9fcf677a58e35bf903de3da22ee4913af138aa3012af9c46b3609579cd", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "8d24945c5d62c9a910dbe6b925064532db4f351ab7f3eabf1fb454a9e460f7ab", + "action": "add" + } + }, + "UserViewPage": { + "1": { + "version": 1, + "hash": "16dac6209b19a934d286ef1efa874379e0040c324e71023c57d1bc6d2d367171", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1383d83f202e53490d03049685c1052385ecde4ea6d4b34d4917d08749e02e44", + "action": "add" + } + }, + "UserPrivateKey": { + "1": { + "version": 1, + "hash": "7cb196587887f0f3bffb298dd9f3b88509e9b2748792bf8dc03bdd0d6b98714a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7e99d928122dd7546c94893314f393956c29b8c8d605f62bc99429972f2ffd8e", + "action": "add" + } + }, + "DateTime": { + "1": { + "version": 1, + "hash": "7e9d89309a10d2110a7ae4f97d8f25a7914853269e8fa0c531630790c1253f17", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "92daa79cc211b880d7c492e32b22fa4b7cce78ef1606a9be4461324f68fb8cd3", + "action": "add" + } + }, + "ReplyNotification": { + "1": { + "version": 1, + "hash": "34b2ad522f7406c2486573467d9c7acef5c1063a0d9f2177c3bda2d8c4f87572", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "bc3a15f754ea23a1b6dfe1612ee47a361864c820c507b5644b3fada92bd266e7", + "action": "add" + } + }, + "HTTPConnection": { + "1": { + "version": 1, + "hash": "5ee19eaf55ecbe7945ea45924c036ec0f500114a2f64176620961a8c2ec94cdb", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "68409295f8916ceb22a8cf4abf89f5e4bcff0d75dc37e16ede37250ada28df59", + "action": "add" + } + }, + "PythonConnection": { + "1": { + "version": 1, + "hash": "011946fc9af0a6987f5c7bc9b0208b2fae9d65217531430bced7ba542788da1a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "eb479c671fc112b2acbedb88bc5624dfdc9592856c04c22c66410f6c863e1708", + "action": "add" + } + }, + "ActionDataEmpty": { + "1": { + "version": 1, + "hash": "89b5912fe5416f922051b8068be6071a03c87a4ab264959de524f1b86e95f028", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1fd3a1d3b3d97c8fe4ff2e51567c026830e6c1489f82caa4c6e3ca24a11e1da0", + "action": "add" + } + }, + "ObjectNotReady": { + "1": { + "version": 1, + "hash": "88207988639b11eaca686b6e079616d9caecc3dbc2a8112258e0f39ee5c3e113", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "07cad6b7fbf4dc9f02ec5857dd4ab4c224fc2da540062a55835eb85df31e7fe8", + "action": "add" + } + }, + "ActionDataLink": { + "1": { + "version": 1, + "hash": "10bf94e99637695f1ba283f0b10e70743a4ebcb9ee75aefb1a05e6d6e1d21a71", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "59756e8b5729df61217f8bcf53f54e99c7fcc715594488779e19296dec582951", + "action": "add" + } + }, + "SyftImageRegistry": { + "1": { + "version": 1, + "hash": "dc83910c91947e3d9eaa3e6f8592237448f0408668c7cca80450b5fcd54722e1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "862410fcf514a41ee13273d9540a245ed79e26bb82a0acfe2ad48accc3af1bef", + "action": "add" + } + }, + "SyftWorkerImage": { + "1": { + "version": 1, + "hash": "2a9585b6a286e24f1a9f3f943d0128730cf853edc549184dc1809d19e1eec54b", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1063e826436e24707eef3f37dbc15f8008ca038fc3f02ad489a49248c8666ba3", + "action": "add" + } + }, + "SyftWorker": { + "1": { + "version": 1, + "hash": "0d5b367162f3ce55ab090cc1b49bd30e50d4eb144e8431eadc679bd0e743aa70", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "ad19971aabbdf6d032fba708357eb0f0d0bd59f993c58b3e36a1b7ca04332453", + "action": "add" + } + }, + "WorkerPool": { + "1": { + "version": 1, + "hash": "250699eb4c452fc427995353d5c5ad6245fb3e9fdac8814f8348784816a0733b", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "1b81621b7c03eacfe8369c30bbc97967acef6b5d29a3c67d5f8ad81b49556dac", + "action": "add" + } + }, + "SecureFilePathLocation": { + "1": { + "version": 1, + "hash": "7febc066e2ee5a3a4a891720afede3f5c155cacc0557662ac4d04bf67b964c6d", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "e4e18e793f25c1ba8eb32849dafc3b85aa1572ebd9a7339ea8776452777d5b7c", + "action": "add" + } + }, + "AzureSecureFilePathLocation": { + "1": { + "version": 1, + "hash": "1bb15f3f9d7082779f1c9f58de94011487924cb8a8c9c2ec18fd7c161c27fd0e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "b05c5b759d43d9aa13e2a11087d13ff78cbec946768e3ff130fcac83a4216117", + "action": "add" + } + }, + "CreateBlobStorageEntry": { + "1": { + "version": 1, + "hash": "61a373336e83645f1b6d78a320323d9ea4ee91b3d87b730cb0608fbfa0072262", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "b252fe14bd22f92866c20bfffbdab1a839c8648c7b2cda81500cbeb9a5d85c57", + "action": "add" + } + }, + "BlobRetrievalByURL": { + "3": { + "version": 3, + "hash": "0b664100ea08413ca4ef04665ca910c2cf9535539617ea4ba33687d05cdfe747", + "action": "remove" + }, + "4": { + "version": 4, + "hash": "3a82ec6220eda51289931689db2f598e5e44a610b0a229113c4695f897cc9f2b", + "action": "add" + } + }, + "BlobDeposit": { + "1": { + "version": 1, + "hash": "c98e6da658a3be01ead4ea6ee6a4c10046879f0ce0f5fc5f946346671579b229", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7b0709298f6a6bd1e33244f655dc4f3bb95645f9e474f2de331869071e3ab384", + "action": "add" + } + }, + "HTTPNodeRoute": { + "1": { + "version": 1, + "hash": "1901b9f53f9970ce2bd8307ba9f7cafc0e7eba1d2ec82e4014c6120e605e3741", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "2134ea812f7c6ea41522727ae087245c4b1195ffbad554db638070861cd9eb1c", + "action": "add" + } + }, + "PythonNodeRoute": { + "1": { + "version": 1, + "hash": "15711e6e7a1ef726c8e8b5c35a6cb2d30b56ba5213cba489524bf63489e136cf", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "3eca5767ae4a8fbe67744509e58c6d9fb78f38fa0a0f7fcf5960ab4250acc1f0", + "action": "add" + } + }, + "DataSubject": { + "1": { + "version": 1, + "hash": "0b8b049d4627727b444c419f5d6a97b7cb97a433088ebf744c854b6a470dadf1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "4385b12c582d711cfadf08f6d9254d2b95652d8aeedbeb350c5dcbf57dab1fea", + "action": "add" + } + }, + "DataSubjectMemberRelationship": { + "1": { + "version": 1, + "hash": "0a820edc9f1a87387acc3c611fe852752fcb3dab7608058f2bc48211be7bfbd2", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "6f03ee3c35cd02973210c25ce99f50effdaa6156211329bddf763272d9d32585", + "action": "add" + } + }, + "Contributor": { + "1": { + "version": 1, + "hash": "d1d4f25bb87e59c0414501d3335097de66815c164c9ed5a7850ff8bec69fbcdc", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7beef331ac6ea90632adc81a96bd99a656467ab8f2334007c624c64ea8a4b886", + "action": "add" + } + }, + "MarkdownDescription": { + "1": { + "version": 1, + "hash": "519328a3952049f57004013e4fb00840695b24b8575cad983056412c9c9d9ba6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "3c4990cee7cc0b9e86c4b1aa6120476d3d7154d4047d8f4a80a10b6ad1415be4", + "action": "add" + } + }, + "Asset": { + "1": { + "version": 1, + "hash": "24350b8d9597df49999918ad42e0eece1328ea30389311f1e0a420be8f39b8a1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "b5ce972e6b0341da041f457660eca873bd9bb4f93e73158767f951cb93b53d10", + "action": "add" + } + }, + "CreateAsset": { + "1": { + "version": 1, + "hash": "1b4c71569b8da64258672483bd36dc4aa99a32d4cb519659241d15bc898041a6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "954da64a48165139f585e9e5a9526aa43a73a0709c1c1bf58e937e8c3e0f184f", + "action": "add" + } + }, + "DatasetPageView": { + "1": { + "version": 1, + "hash": "b1de14bb9b6a259648dfc59b6a48fa526116afe50a689c24b8bb36fd0e6a97f8", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f7652573278f762788f4ec3d39c3ec14179061429589714ff49210b015d57d0f", + "action": "add" + } + }, + "TwinObject": { + "1": { + "version": 1, + "hash": "c42455586b43724a7421becd99122b787a129798daf6081e96954ecaea228099", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "c863c24d4ec1989ce2a0547f9b9152a2a61b24386b38ccd37f0aeae91ce80e41", + "action": "add" + } + }, + "ExactMatch": { + "1": { + "version": 1, + "hash": "e497e2e2380db72766c5e219e8afd13136d8953933d6f1eaf83b14001e887cde", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "8767689e0b6acdc42ed558645ce641098e63094300225e2c8b9e4758abf80104", + "action": "add" + } + }, + "OutputHistory": { + "1": { + "version": 1, + "hash": "4ec6e6efd86a972b474251885151bdfe4ef262562174605e8ab6a8abba1aa867", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "b6e3d6ca02441af981df1c83bb3ccf05e8221e8da3fb369596190c32ee547f12", + "action": "add" + } + }, + "UserPolicy": { + "1": { + "version": 1, + "hash": "c69b17b1d96cace8b45da6d9639165f2da4aa7ff156b6fd922ac217bf7856d8a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "9a5ef3d6ece1321ad59c20f2dda08564696e1dd8d017b268ffd70c2958671cad", + "action": "add" + } + }, + "SubmitUserPolicy": { + "1": { + "version": 1, + "hash": "96f7f39279fadc70c569b8d48ed4d6420a8132db51e37466d272fda19953554b", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "354df4734594f6bc3b58b26c0b60592f454c750e49c00781fc15448dd65a4fb4", + "action": "add" + } + }, + "UserCodeExecutionResult": { + "1": { + "version": 1, + "hash": "49c32e85e78b7b189a7f13b7e26115ef94fcb0b60b578adcbe2b95e289f63a6e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "0f4b96ae01b360b7b5ba99f6bd34aaf2da368ff56075bee8137d8c9a82bcec02", + "action": "add" + } + }, + "CodeHistory": { + "1": { + "version": 1, + "hash": "a7baae93862ae0aa67675f1617574e31aafb15a9ebff633eb817278a3a867161", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "f9a3e33bb89c72612b2c5ea501ca16bdbac832a94af1f373c76458f2a5a96614", + "action": "add" + } + }, + "CodeHistoryView": { + "1": { + "version": 1, + "hash": "0ed1a2a04a962ecbcfa38b0b8a03c1e51e8946a4b80f6bf2557148ce658671ce", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "91f1c8b4d9f8e8be517cda487615ae2e3a9df6fd4bdd2c7be51836b851f429f0", + "action": "add" + } + }, + "CodeHistoriesDict": { + "1": { + "version": 1, + "hash": "95288411cd5843834f3273a2fd66a7df2e603e980f4ab1d329f9ab17d5d2f643", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "9ebf38ad3f12b1ec397bd977cf1013fb8703e02562a6e74b7d17ea2debfcb4a1", + "action": "add" + } + }, + "UsersCodeHistoriesDict": { + "1": { + "version": 1, + "hash": "5e1f389c4565ee8558386dd5c934d81e0c68ab1434f86bb9065976b587ef44d1", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "863280e2a39de8f50293d54dd9798a0568a2204418fe0bd776b5ea3dcc43e99a", + "action": "add" + } + }, + "OnDiskBlobDeposit": { + "1": { + "version": 1, + "hash": "5efc230c1ee65c4626d334aa69ed458c796c45265e546a333844c6c2bcd0e6b0", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "6f8f03f6bf76407b8f34aba12970d037c2a59ec3858feee8f8a3234ebe3a744d", + "action": "add" + } + }, + "RemoteConfig": { + "1": { + "version": 1, + "hash": "ad7bc4780a8ad52e14ce68601852c93d2fe07bda489809cad7cae786d2461754", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "0269311d0a524c1f2c565ffd1c9d0da4a4cb4880f98b44cb7d3b76312f5c9f98", + "action": "add" + } + }, + "AzureRemoteConfig": { + "1": { + "version": 1, + "hash": "c05c6caa27db4e385c642536d4b0ecabc0c71e91220d2e6ce21a2761ca68a673", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "56ab4455e8182d3c300efb31ae019a2211ecb9e579ec1a41a087c98ee8e9f317", + "action": "add" + } + }, + "Change": { + "1": { + "version": 1, + "hash": "aefebd1601cf5bfd4817b0db75300a78299cc4949ead735a90873cbd22c8d4bc", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "9784905430b48d60be31b89d5fdbf559f8f7cc0a3be3428a3ba4b17b0db06330", + "action": "add" + } + }, + "ChangeStatus": { + "1": { + "version": 1, + "hash": "627f6f8e42cc285336aa6fd4916285d796140f4ff901487b7cb3907ef0f116a6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "37e33e685081a3e45155ffe8f02371a5dde82841ebb3d1b60c0ff06031622ccd", + "action": "add" + } + }, + "ActionStoreChange": { + "1": { + "version": 1, + "hash": "17b865e75eb3fb2693924fb00ba87a25260be45d55a4eb2184c4ead22d787cbe", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "0d97c83b6a355eaa6c351cd50c36ba58c0f0e08e63e16af1c44cba76c61af834", + "action": "add" + } + }, + "CreateCustomImageChange": { + "1": { + "version": 1, + "hash": "bc09dca7995938f3b3a2bd9c8b3c2feffc8484df466144a425cb69cadb2ab635", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "91d2333291eb43c9814eb1d3ad1f736d5c1ccb9370de6734e506f0463fa92159", + "action": "add" + } + }, + "CreateCustomWorkerPoolChange": { + "1": { + "version": 1, + "hash": "86894f8ccc037de61f44f9698fd113ba02c3cf3870a3048c00a46e15dcd1941c", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "84cb18e884dfb1509d78d8775110314278444af2b2dd5370cb2621d28f8d1aaa", + "action": "add" + } + }, + "Request": { + "1": { + "version": 1, + "hash": "e054307eeb7f13683cde9ce7613d5ca2925a13fff7c345b1c9f729a12c955f90", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "b8be498ac1e0a7df5e683540ed2a62778faff11404f45f660b3e092e9ed0e37d", + "action": "add" + } + }, + "RequestInfo": { + "1": { + "version": 1, + "hash": "b76075c138afc0563ce9ac7f6b1131f048951f7486cd516c02736dc1a2a23639", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "836d768fe0d3d5e134dbcafdff8542a97242ded1b4df1c76dff2ca0f87b28d71", + "action": "add" + } + }, + "RequestInfoFilter": { + "1": { + "version": 1, + "hash": "7103abdc464ae71bb746410f5730f55dd8ed82268aa32bbb0a69e0070488a669", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "8dabbabdac26c5223579dabe54f7b1b4220b0e49fa6e401fdb09768bca6b49d5", + "action": "add" + } + }, + "SubmitRequest": { + "1": { + "version": 1, + "hash": "96b4ec12beafd9d8a7c97399cb8a23dade4db16d8f521be3fe7b8fec99db5161", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "33c6aa318e2d7f3d56897e61c7370a5483bf5a37f25cfa0041ff3bf84949aee2", + "action": "add" + } + }, + "ObjectMutation": { + "1": { + "version": 1, + "hash": "0ee3dd38d6df0fe9a19d848e8f3aaaf13a6ba86afe3406c239caed6da185651a", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "4d77ee2650ea29a50e60cf0dcb6cac932b7e6f1aa1e8a927a791ca088e1d07d0", + "action": "add" + } + }, + "EnumMutation": { + "1": { + "version": 1, + "hash": "4c02f956ec9b973064972cc57fc8dd9c525e683f93f804642b4e1bfee1b62e57", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "13275f41942fa8eaa359fe3b0d5ba9f7c8c73564dad6d661441c29beef19a049", + "action": "add" + } + }, + "NodePeer": { + "1": { + "version": 1, + "hash": "7b88de7e38490e2d69f31295137673e7ddabc16ab0e2272ff491f6cea1835d63", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "840d11498095c02d3de9bfe48ea8960c81017c4af45cb8af7e12dc9a18ebd2da", + "action": "add" + } + }, + "SyftObjectMigrationState": { + "1": { + "version": 1, + "hash": "d3c8126bc15dae4dd243bb035530e3f56cd9e433d403dd6b5f3b45face6d281f", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "0b00b9236ae35820733041dc0f4f3956d85d75108a94dba0653aa5948436bd8a", + "action": "add" + } + }, + "ProjectThreadMessage": { + "1": { + "version": 1, + "hash": "1118e935792e8e54103dbf91fa33edbf192a7767d2b1d4526dfa7d4a643cde2e", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "a7454aace740674583226e4f1c1e48284d4ffbc125c196c919d449e2fe8b52a7", + "action": "add" + } + }, + "ProjectMessage": { + "1": { + "version": 1, + "hash": "55a3a5171b6949372b4125cc461bf39bc998565e07703804fca6c7ef99695ae4", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "283dd47bd664db581928ffe33e7f93d81100351461976a7d662541837b8490b9", + "action": "add" + } + }, + "ProjectRequestResponse": { + "1": { + "version": 1, + "hash": "d4c360e845697a0b24695143d0781626cd344cfde43162c90ae90fe67e00ae21", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "31c346849ab131d6eddb109054a19118c6937b20586fe54f5c7a0a50ecc017e4", + "action": "add" + } + }, + "ProjectRequest": { + "1": { + "version": 1, + "hash": "514d189df335c68869eea36befcdcafec74bdc682eaf18871fe879e26da4dbb6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "4051700e64dd28f6a928fd3e4cbaf989abf0e2345b7c086f3aa8917e30c756b2", + "action": "add" + } + }, + "AnswerProjectPoll": { + "1": { + "version": 1, + "hash": "ff2e1ac7bb764c99d646b96eb3ebfbf9311599b7e3be07aa4a4eb4810bb6dd12", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7467766e01c8afadb1b2dbe548c9f540a7d6869fed4e98db96c2705bb6f3f3c2", + "action": "add" + } + }, + "ProjectPoll": { + "1": { + "version": 1, + "hash": "b0ac8f1d9c06997374ddbc33fdf1d0af0da15fdb6899f52d91a8574106558964", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "900f51fcd1cdac2b34f74038a33229273446e211a310138f8af7ac3683094e92", + "action": "add" + } + }, + "Project": { + "1": { + "version": 1, + "hash": "ec5b7ac1c92808e266f06b175c6ebcd50be81777ad120c02ce8c6074d0004788", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "7a874f5d00996d9781f1e448c1a6fb766aa236fb9b468e8f0f5fdee76a047791", + "action": "add" + } + }, + "ProjectSubmit": { + "1": { + "version": 1, + "hash": "0374b37779497d7e0b2ffeabc38d35bfbae2ee762a7674a5a8af75e7c5545e61", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "70fa24856ecb0df109736e0cb8478cac335801413ca191aa9ced34f5ea3e5189", + "action": "add" + } + }, + "VeilidConnection": { + "1": { + "version": 1, + "hash": "c1796e7b01c9eae0dbf59cfd5c2c2f0e7eba593e0cea615717246572b27aae4b", + "action": "add" + } + }, + "VeilidNodeRoute": { + "1": { + "version": 1, + "hash": "eadf99eac62574cdda61290c44c564a3ba22faebf27a661da4fc4a2643760376", + "action": "add" + } + }, + "EnclaveMetadata": { + "1": { + "version": 1, + "hash": "39f85e475015e6f860ddcc5fea819423eba2db8f4b7d8e004c05a44d6f8444c6", + "action": "remove" + }, + "2": { + "version": 2, + "hash": "6dcc26695abc6a9ecd9d7d1e6507a9f1a92cc5ccd10987e92419bf984245f9a1", + "action": "add" + } + } + } + } +} diff --git a/packages/syft/src/syft/service/user/user_service.py b/packages/syft/src/syft/service/user/user_service.py index 3e10325c858..644915aa069 100644 --- a/packages/syft/src/syft/service/user/user_service.py +++ b/packages/syft/src/syft/service/user/user_service.py @@ -273,7 +273,7 @@ def update( edits_non_role_attrs = any( getattr(user_update, attr) is not Empty - for attr in user_update.dict() + for attr in user_update.to_dict() if attr != "role" ) diff --git a/packages/syft/src/syft/stable_version.py b/packages/syft/src/syft/stable_version.py index 6ab7dba0f59..88cf36c88bd 100644 --- a/packages/syft/src/syft/stable_version.py +++ b/packages/syft/src/syft/stable_version.py @@ -1 +1 @@ -LATEST_STABLE_SYFT = "0.8.5" +LATEST_STABLE_SYFT = "0.8.5-post.2" diff --git a/packages/syft/src/syft/types/syft_metaclass.py b/packages/syft/src/syft/types/syft_metaclass.py index dadd8664aa6..ae09b1c03c8 100644 --- a/packages/syft/src/syft/types/syft_metaclass.py +++ b/packages/syft/src/syft/types/syft_metaclass.py @@ -1,6 +1,5 @@ # stdlib from typing import Any -from typing import TypeVar from typing import final # third party @@ -10,8 +9,6 @@ # relative from ..serde.serializable import serializable -_T = TypeVar("_T", bound=BaseModel) - class EmptyType(type): def __repr__(self) -> str: @@ -28,12 +25,22 @@ class Empty(metaclass=EmptyType): class PartialModelMetaclass(ModelMetaclass): - def __call__(cls: type[_T], *args: Any, **kwargs: Any) -> _T: - for field_info in cls.model_fields.values(): - if field_info.annotation is not None and field_info.is_required(): - field_info.annotation = field_info.annotation | EmptyType - field_info.default = Empty - - cls.model_rebuild(force=True) - - return super().__call__(*args, **kwargs) # type: ignore[misc] + def __new__( + mcs, + cls_name: str, + bases: tuple[type[Any], ...], + namespace: dict[str, Any], + *args: Any, + **kwargs: Any, + ) -> type: + cls = super().__new__(mcs, cls_name, bases, namespace, *args, **kwargs) + + if issubclass(cls, BaseModel): + for field_info in cls.model_fields.values(): + if field_info.annotation is not None and field_info.is_required(): + field_info.annotation = field_info.annotation | EmptyType + field_info.default = Empty + + cls.model_rebuild(force=True) + + return cls diff --git a/packages/syft/src/syft/types/syft_object.py b/packages/syft/src/syft/types/syft_object.py index cbce6600589..27e9db3bbbd 100644 --- a/packages/syft/src/syft/types/syft_object.py +++ b/packages/syft/src/syft/types/syft_object.py @@ -25,7 +25,6 @@ from typing import Union from typing import get_args from typing import get_origin -import warnings # third party import pandas as pd @@ -554,25 +553,17 @@ def to(self, projection: type, context: Context | None = None) -> Any: def to_dict( self, exclude_none: bool = False, exclude_empty: bool = False ) -> dict[str, Any]: - warnings.warn( - "`SyftObject.to_dict` is deprecated and will be removed in a future version", - PendingDeprecationWarning, - stacklevel=2, - ) - # 🟡 TODO 18: Remove to_dict and replace usage with transforms etc - if not exclude_none and not exclude_empty: - return self.dict() - else: - new_dict = {} - for k, v in dict(self).items(): - # exclude dynamically added syft attributes - if k in DYNAMIC_SYFT_ATTRIBUTES: - continue - if exclude_empty and v is not Empty: - new_dict[k] = v - if exclude_none and v is not None: - new_dict[k] = v - return new_dict + new_dict = {} + for k, v in dict(self).items(): + # exclude dynamically added syft attributes + if k in DYNAMIC_SYFT_ATTRIBUTES: + continue + if exclude_empty and v is Empty: + continue + if exclude_none and v is None: + continue + new_dict[k] = v + return new_dict def __post_init__(self) -> None: pass diff --git a/packages/syft/src/syft/util/util.py b/packages/syft/src/syft/util/util.py index 82dda0b9c08..c01017b1bfe 100644 --- a/packages/syft/src/syft/util/util.py +++ b/packages/syft/src/syft/util/util.py @@ -910,3 +910,7 @@ def get_queue_address(port: int) -> str: elif container_host == "docker": return f"tcp://{socket.gethostname()}:{port}" return f"tcp://localhost:{port}" + + +def get_dev_mode() -> bool: + return str_to_bool(os.getenv("DEV_MODE", "False")) diff --git a/packages/syft/tests/conftest.py b/packages/syft/tests/conftest.py index 79c69efbdf1..bf86f68300a 100644 --- a/packages/syft/tests/conftest.py +++ b/packages/syft/tests/conftest.py @@ -108,7 +108,7 @@ def stage_protocol(protocol_file: Path): stage_protocol_changes() # bump_protocol_version() yield dp.protocol_history - dp.revert_latest_protocol() + dp.reset_dev_protocol() dp.save_history(dp.protocol_history) # Cleanup release dir, remove unused released files diff --git a/packages/syft/tests/syft/action_graph/action_graph_test.py b/packages/syft/tests/syft/action_graph/action_graph_test.py index 0b451f455b4..2aa956cd9dc 100644 --- a/packages/syft/tests/syft/action_graph/action_graph_test.py +++ b/packages/syft/tests/syft/action_graph/action_graph_test.py @@ -142,7 +142,7 @@ def test_node_action_data_update() -> None: assert len(node_action_data_update.to_dict(exclude_empty=True)) == 1 assert ( node_action_data_update.to_dict(exclude_empty=False) - == node_action_data_update.dict() + == node_action_data_update.to_dict() ) diff --git a/packages/syft/tests/syft/settings/settings_service_test.py b/packages/syft/tests/syft/settings/settings_service_test.py index d359eb2848f..26728f10857 100644 --- a/packages/syft/tests/syft/settings/settings_service_test.py +++ b/packages/syft/tests/syft/settings/settings_service_test.py @@ -159,10 +159,10 @@ def mock_stash_get_all(root_verify_key) -> Ok: assert response.is_ok() is True assert len(response.ok()) == len(mock_stash_get_all_output) assert ( - updated_settings.model_dump() == new_settings.model_dump() + updated_settings.to_dict() == new_settings.to_dict() ) # the first settings is updated assert ( - not_updated_settings.model_dump() == settings.model_dump() + not_updated_settings.to_dict() == settings.to_dict() ) # the second settings is not updated diff --git a/packages/syft/tests/syft/stores/base_stash_test.py b/packages/syft/tests/syft/stores/base_stash_test.py index b60fafcfda1..2dd5e443080 100644 --- a/packages/syft/tests/syft/stores/base_stash_test.py +++ b/packages/syft/tests/syft/stores/base_stash_test.py @@ -50,7 +50,7 @@ class MockStash(BaseUIDStoreStash): def get_object_values(obj: SyftObject) -> tuple[Any]: - return tuple(obj.dict().values()) + return tuple(obj.to_dict().values()) def add_mock_object(root_verify_key, stash: MockStash, obj: MockObject) -> MockObject: diff --git a/packages/syft/tests/syft/stores/queue_stash_test.py b/packages/syft/tests/syft/stores/queue_stash_test.py index 97efd3df41b..d1fdfa4a10b 100644 --- a/packages/syft/tests/syft/stores/queue_stash_test.py +++ b/packages/syft/tests/syft/stores/queue_stash_test.py @@ -1,5 +1,6 @@ # stdlib from threading import Thread +import time from typing import Any # third party @@ -377,6 +378,7 @@ def helper_queue_update_threading(root_verify_key, create_queue_cbk) -> None: repeats = 5 queue = create_queue_cbk() + time.sleep(1) obj = mock_queue_object() queue.set(root_verify_key, obj, ignore_duplicates=False) diff --git a/packages/syft/tests/syft/users/user_service_test.py b/packages/syft/tests/syft/users/user_service_test.py index 1377bbfafc1..54a32bef836 100644 --- a/packages/syft/tests/syft/users/user_service_test.py +++ b/packages/syft/tests/syft/users/user_service_test.py @@ -76,7 +76,9 @@ def mock_get_by_email(credentials: SyftVerifyKey, email: str) -> Ok: return Ok(None) expected_user = guest_create_user.to(User) - expected_output = expected_user.to(UserView) + expected_output: UserView = expected_user.to(UserView) + expected_output.syft_client_verify_key = authed_context.credentials + expected_output.syft_node_location = authed_context.node.id def mock_set( credentials: SyftVerifyKey, @@ -168,7 +170,7 @@ def mock_get_by_uid(credentials: SyftVerifyKey, uid: UID) -> Ok: monkeypatch.setattr(user_service.stash, "get_by_uid", mock_get_by_uid) response = user_service.view(authed_context, uid_to_view) assert isinstance(response, UserView) - assert response.model_dump() == expected_output.model_dump() + assert response.to_dict() == expected_output.to_dict() def test_userservice_get_all_success( @@ -189,7 +191,7 @@ def mock_get_all(credentials: SyftVerifyKey) -> Ok: assert isinstance(response, list) assert len(response) == len(expected_output) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) @@ -230,16 +232,16 @@ def mock_find_all(credentials: SyftVerifyKey, **kwargs) -> Ok | Err: response = user_service.search(authed_context, id=guest_user.id) assert isinstance(response, list) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) - # assert response.model_dump() == expected_output.model_dump() + # assert response.to_dict() == expected_output.to_dict() # Search via email response = user_service.search(authed_context, email=guest_user.email) assert isinstance(response, list) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) @@ -247,7 +249,7 @@ def mock_find_all(credentials: SyftVerifyKey, **kwargs) -> Ok | Err: response = user_service.search(authed_context, name=guest_user.name) assert isinstance(response, list) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) @@ -258,7 +260,7 @@ def mock_find_all(credentials: SyftVerifyKey, **kwargs) -> Ok | Err: ) assert isinstance(response, list) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) @@ -268,7 +270,7 @@ def mock_find_all(credentials: SyftVerifyKey, **kwargs) -> Ok | Err: ) assert isinstance(response, list) assert all( - r.model_dump() == expected.model_dump() + r.to_dict() == expected.to_dict() for r, expected in zip(response, expected_output) ) diff --git a/packages/syft/tests/syft/users/user_test.py b/packages/syft/tests/syft/users/user_test.py index 9566a8e1c1e..f0cb1fcf8c6 100644 --- a/packages/syft/tests/syft/users/user_test.py +++ b/packages/syft/tests/syft/users/user_test.py @@ -167,25 +167,25 @@ def test_user_delete(do_client, guest_client, ds_client, worker, root_client): def test_user_update_roles(do_client, guest_client, ds_client, root_client, worker): # admins can update the roles of lower roles clients = [get_mock_client(root_client, role) for role in DO_ROLES] - for c in clients: + for _c in clients: assert worker.root_client.api.services.user.update( - c.user_id, UserUpdate(role=ServiceRole.ADMIN) + _c.user_id, UserUpdate(role=ServiceRole.ADMIN) ) # DOs can update the roles of lower roles clients = [get_mock_client(root_client, role) for role in DS_ROLES] - for c in clients: + for _c in clients: assert do_client.api.services.user.update( - c.user_id, UserUpdate(role=ServiceRole.DATA_SCIENTIST) + _c.user_id, UserUpdate(role=ServiceRole.DATA_SCIENTIST) ) clients = [get_mock_client(root_client, role) for role in ADMIN_ROLES] # DOs cannot update roles to greater than / equal to own role - for c in clients: + for _c in clients: for target_role in [ServiceRole.DATA_OWNER, ServiceRole.ADMIN]: assert not do_client.api.services.user.update( - c.user_id, UserUpdate(role=target_role) + _c.user_id, UserUpdate(role=target_role) ) # DOs cannot downgrade higher roles to lower levels @@ -193,27 +193,27 @@ def test_user_update_roles(do_client, guest_client, ds_client, root_client, work get_mock_client(root_client, role) for role in [ServiceRole.ADMIN, ServiceRole.DATA_OWNER] ] - for c in clients: + for _c in clients: for target_role in DO_ROLES: - if target_role < c.role: + if target_role < _c.role: assert not do_client.api.services.user.update( - c.user_id, UserUpdate(role=target_role) + _c.user_id, UserUpdate(role=target_role) ) # DSs cannot update any roles clients = [get_mock_client(root_client, role) for role in ADMIN_ROLES] - for c in clients: + for _c in clients: for target_role in ADMIN_ROLES: assert not ds_client.api.services.user.update( - c.user_id, UserUpdate(role=target_role) + _c.user_id, UserUpdate(role=target_role) ) # Guests cannot update any roles clients = [get_mock_client(root_client, role) for role in ADMIN_ROLES] - for c in clients: + for _c in clients: for target_role in ADMIN_ROLES: assert not guest_client.api.services.user.update( - c.user_id, UserUpdate(role=target_role) + _c.user_id, UserUpdate(role=target_role) ) diff --git a/packages/syftcli/manifest.yml b/packages/syftcli/manifest.yml index 44a90115702..9e328a21c64 100644 --- a/packages/syftcli/manifest.yml +++ b/packages/syftcli/manifest.yml @@ -1,11 +1,11 @@ manifestVersion: 1.0 -syftVersion: 0.8.5 -dockerTag: 0.8.5 +syftVersion: 0.8.5-post.2 +dockerTag: 0.8.5-post.2 images: - - docker.io/openmined/grid-frontend:0.8.5 - - docker.io/openmined/grid-backend:0.8.5 + - docker.io/openmined/grid-frontend:0.8.5-post.2 + - docker.io/openmined/grid-backend:0.8.5-post.2 - docker.io/library/mongo:7.0.4 - docker.io/traefik:v2.10 diff --git a/scripts/hagrid_hash b/scripts/hagrid_hash index 63aec8b1bad..5c6000dc0bc 100644 --- a/scripts/hagrid_hash +++ b/scripts/hagrid_hash @@ -1 +1 @@ -4b25e83ff10f7d5923ba9b723d949a6d +febc97823e0be29d1f34c4db3f1f3023 diff --git a/tests/integration/container_workload/pool_image_test.py b/tests/integration/container_workload/pool_image_test.py index ae4b4368396..ac91296fe29 100644 --- a/tests/integration/container_workload/pool_image_test.py +++ b/tests/integration/container_workload/pool_image_test.py @@ -38,7 +38,7 @@ def test_image_build(domain_1_port) -> None: docker_config=docker_config ) assert isinstance(submit_result, SyftSuccess) - assert len(domain_client.images.get_all()) == 2 + # assert len(domain_client.images.get_all()) == 2 # Validate if we can get the worker image object from its config workerimage = domain_client.api.services.worker_image.get_by_config(docker_config) diff --git a/tox.ini b/tox.ini index 58ab2016277..0e76c35476c 100644 --- a/tox.ini +++ b/tox.ini @@ -395,7 +395,7 @@ commands = bandit -r src # ansible 8.4.0 # restrictedpython 6.2 - safety check -i 60840 -i 54229 -i 54230 -i 42923 -i 54230 -i 54229 -i 62044 -i 65213 + safety check -i 60840 -i 54229 -i 54230 -i 42923 -i 54230 -i 54229 -i 62044 -i 65213 -i 54564 [testenv:syft.test.unit] description = Syft Unit Tests @@ -456,7 +456,11 @@ setenv = DEV_MODE = {env:DEV_MODE:True} TEST_NOTEBOOK_PATHS = {env:TEST_NOTEBOOK_PATHS:api/0.8,tutorials} ENABLE_SIGNUP={env:ENABLE_SIGNUP:False} + BUMP_PROTOCOL={env:BUMP_PROTOCOL:False} commands = + bash -c 'if [[ $BUMP_PROTOCOL == "True" ]]; then \ + python -c "import syft as sy; sy.bump_protocol_version()"; \ + fi;' bash -c "echo Running with ORCHESTRA_DEPLOYMENT_TYPE=$ORCHESTRA_DEPLOYMENT_TYPE DEV_MODE=$DEV_MODE TEST_NOTEBOOK_PATHS=$TEST_NOTEBOOK_PATHS; ENABLE_SIGNUP=$ENABLE_SIGNUP; date" bash -c "for subfolder in $(echo ${TEST_NOTEBOOK_PATHS} | tr ',' ' '); do \ if [[ $subfolder == *tutorials* ]]; then \
- + - + - + - + - + - + - + - + - + - + - +