From 09da85f28c92a138016a96b4e435f9c8b89202fb Mon Sep 17 00:00:00 2001 From: cicharka <93913624+cicharka@users.noreply.github.com> Date: Fri, 10 Dec 2021 12:47:17 +0100 Subject: [PATCH 1/3] Upgrade JMX exporter to the newest version (#2750) (#2779) * Upgrade JMX exporter to the newest version (#2750) * Move prometheus_jmx_path from schema to defaults * Introduced upgrade flag file * preflight check for binary existance and version downgrade --- ansible/playbooks/kafka.yml | 2 +- .../roles/jmx_exporter/defaults/main.yml | 4 + .../roles/jmx_exporter/tasks/main.yml | 8 +- .../roles/jmx_exporter/tasks/upgrade/main.yml | 101 ++++++++++++++++++ .../playbooks/roles/kafka/defaults/main.yml | 1 + ansible/playbooks/roles/kafka/tasks/main.yml | 2 +- .../roles/kafka/templates/kafka.service.j2 | 2 +- .../centos-7/requirements.aarch64.txt | 2 +- .../centos-7/requirements.x86_64.txt | 2 +- .../redhat-7/requirements.x86_64.txt | 2 +- .../ubuntu-18.04/requirements.x86_64.txt | 2 +- .../roles/zookeeper/defaults/main.yml | 6 +- .../playbooks/roles/zookeeper/tasks/main.yml | 2 +- .../zookeeper/templates/zookeeper.service.j2 | 2 +- ansible/playbooks/upgrade.yml | 14 +++ ansible/playbooks/zookeeper.yml | 2 +- cli/engine/ansible/AnsibleVarsGenerator.py | 5 +- cli/epicli.py | 1 + docs/changelogs/CHANGELOG-1.3.md | 1 + docs/home/COMPONENTS.md | 2 +- .../defaults/configuration/jmx-exporter.yml | 4 +- .../common/defaults/configuration/kafka.yml | 1 - .../validation/configuration/jmx-exporter.yml | 4 - .../common/validation/configuration/kafka.yml | 2 - 24 files changed, 145 insertions(+), 29 deletions(-) create mode 100644 ansible/playbooks/roles/jmx_exporter/tasks/upgrade/main.yml diff --git a/ansible/playbooks/kafka.yml b/ansible/playbooks/kafka.yml index 3b7aa6da2d..85609a5aa1 100644 --- a/ansible/playbooks/kafka.yml +++ b/ansible/playbooks/kafka.yml @@ -3,7 +3,7 @@ - hosts: all gather_facts: yes - tasks: [ ] + tasks: [ ] - hosts: kafka become: true diff --git a/ansible/playbooks/roles/jmx_exporter/defaults/main.yml b/ansible/playbooks/roles/jmx_exporter/defaults/main.yml index e69de29bb2..386fc1428a 100644 --- a/ansible/playbooks/roles/jmx_exporter/defaults/main.yml +++ b/ansible/playbooks/roles/jmx_exporter/defaults/main.yml @@ -0,0 +1,4 @@ +jmx_exporter_bin_filename: "jmx_prometheus_javaagent-0.16.1.jar" +jmx_exporter_version: 0.16.1 +jmx_exporter_directory: /opt/jmx-exporter +prometheus_jmx_exporter_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar diff --git a/ansible/playbooks/roles/jmx_exporter/tasks/main.yml b/ansible/playbooks/roles/jmx_exporter/tasks/main.yml index c814fa5234..76ab4875da 100644 --- a/ansible/playbooks/roles/jmx_exporter/tasks/main.yml +++ b/ansible/playbooks/roles/jmx_exporter/tasks/main.yml @@ -27,7 +27,7 @@ - name: Set JMX Exporter file name to install set_fact: - exporter_file_name: "{{ specification.file_name }}" + exporter_file_name: "{{ jmx_exporter_bin_filename }}" - name: Download JMX Exporter binaries include_role: @@ -39,7 +39,7 @@ - name: Copy JMX Exporter binaries copy: src: "{{ download_directory }}/{{ exporter_file_name }}" - dest: "/opt/jmx-exporter/{{ exporter_file_name }}" + dest: "{{ jmx_exporter_directory }}/{{ exporter_file_name }}" owner: "{{ specification.jmx_exporter_user }}" group: "{{ specification.jmx_exporter_group }}" remote_src: yes @@ -47,7 +47,7 @@ - name: Prometheus jmx | symlink jar become: yes file: - src: "/opt/jmx-exporter/{{ exporter_file_name }}" - path: "{{ specification.jmx_path }}" + src: "{{ jmx_exporter_directory }}/{{ exporter_file_name }}" + path: "{{ prometheus_jmx_exporter_path }}" force: yes state: link diff --git a/ansible/playbooks/roles/jmx_exporter/tasks/upgrade/main.yml b/ansible/playbooks/roles/jmx_exporter/tasks/upgrade/main.yml new file mode 100644 index 0000000000..4862404803 --- /dev/null +++ b/ansible/playbooks/roles/jmx_exporter/tasks/upgrade/main.yml @@ -0,0 +1,101 @@ +--- + +- name: Check for upgrade flag file + stat: + path: "{{ lock_file }}" + register: lock_file_status + +- name: Preflight check + when: not lock_file_status.stat.exists + block: + - name: Check for binary + stat: + path: "{{ prometheus_jmx_exporter_path }}" + register: jmx_exporter_binary + + - name: Inform and fail if JMX exporter binary is missing + when: not jmx_exporter_binary.stat.exists + fail: + msg: > + There is no JMX exporter binary at all, + re-apply your configuration or remove jmx_exporter role from inventory + + - name: Verify installed version + when: jmx_exporter_binary.stat.exists + block: + - name: Get installed jmx-exporter version + shell: >- + unzip -p /opt/jmx-exporter/jmx_prometheus_javaagent.jar META-INF/MANIFEST.MF \ + | awk '$1 == "Implementation-Version:" {print $2}' + register: installed_jmx_exporter_version + + - name: Set version facts + set_fact: + jmx_exporter_version: + old: "{{ installed_jmx_exporter_version.stdout }}" + new: "{{ jmx_exporter_version }}" + + - name: Avoiding risk of downgrade + when: jmx_exporter_version.old is not version( jmx_exporter_version.new, '<' ) + debug: + msg: "Skipping upgrade: JMX Exporter in newer version already installed!" + +- name: Upgrade | jmx-exporter + when: > + jmx_exporter_version.old is version( jmx_exporter_version.new, '<' ) or + lock_file_status.stat.exists + block: + - name: Create upgrade flag file + file: + path: "{{ lock_file }}" + state: touch + + - name: Download jmx-exporter binaries + include_role: + name: download + tasks_from: download_file + vars: + file_name: "{{ jmx_exporter_bin_filename }}" + + - name: Copy jmx-exporter binaries to jmx-exporter directory + copy: + src: "{{ download_directory }}/{{ jmx_exporter_bin_filename }}" + dest: "{{ jmx_exporter_directory }}/{{ jmx_exporter_bin_filename }}" + owner: "{{ specification.jmx_exporter_user }}" + group: "{{ specification.jmx_exporter_group }}" + remote_src: yes + + - name: Get installed jmx-exporter binary path + stat: + path: "{{ prometheus_jmx_exporter_path }}" + get_attributes: false + get_checksum: false + get_mime: false + register: linked_jmx + + - name: Reconfigure {{ prometheus_jmx_exporter_path }} symlink to point to the new version + file: + dest: "{{ prometheus_jmx_exporter_path }}" + state: link + src: "{{ jmx_exporter_directory }}/{{ jmx_exporter_bin_filename }}" + force: yes + + - name: Run systemctl daemon-reload # zookeeper and kafka configure jmx-exporter via systemd units + systemd: + state: restarted + daemon_reload: true + name: "{{ item }}" + with_items: + - zookeeper + - kafka + + - name: Remove previous binary version + file: + path: "{{ linked_jmx.stat.lnk_target }}" + state: absent + + - name: Remove upgrade flag file + file: + path: "{{ lock_file }}" + state: absent +... diff --git a/ansible/playbooks/roles/kafka/defaults/main.yml b/ansible/playbooks/roles/kafka/defaults/main.yml index cdf9a3627a..0abffa7915 100644 --- a/ansible/playbooks/roles/kafka/defaults/main.yml +++ b/ansible/playbooks/roles/kafka/defaults/main.yml @@ -1,3 +1,4 @@ kafka_version: 2.6.0 scala_version: 2.12 kafka_bin_filename: "kafka_2.12-2.6.0.tgz" +prometheus_jmx_exporter_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar diff --git a/ansible/playbooks/roles/kafka/tasks/main.yml b/ansible/playbooks/roles/kafka/tasks/main.yml index 32068ef883..30df870093 100644 --- a/ansible/playbooks/roles/kafka/tasks/main.yml +++ b/ansible/playbooks/roles/kafka/tasks/main.yml @@ -3,7 +3,7 @@ - name: Check if jmx exporter is available stat: - path: "{{ specification.prometheus_jmx_path }}" + path: "{{ prometheus_jmx_exporter_path }}" register: exporter - include_tasks: setup-kafka.yml diff --git a/ansible/playbooks/roles/kafka/templates/kafka.service.j2 b/ansible/playbooks/roles/kafka/templates/kafka.service.j2 index d36dd98415..18c69243ee 100644 --- a/ansible/playbooks/roles/kafka/templates/kafka.service.j2 +++ b/ansible/playbooks/roles/kafka/templates/kafka.service.j2 @@ -17,7 +17,7 @@ Restart=on-failure Environment="KAFKA_HEAP_OPTS={{ specification.kafka_var.heap_opts }}" Environment="LOG_DIR={{ specification.kafka_var.log_dir }}" {% if exporter.stat.exists %} -Environment="KAFKA_OPTS={{ javax_debug }} -javaagent:{{ specification.prometheus_jmx_path }}={{ specification.prometheus_jmx_exporter_web_listen_port }}:{{ specification.prometheus_jmx_config }}" +Environment="KAFKA_OPTS={{ javax_debug }} -javaagent:{{ prometheus_jmx_exporter_path }}={{ specification.prometheus_jmx_exporter_web_listen_port }}:{{ specification.prometheus_jmx_config }}" {% else %} Environment="KAFKA_OPTS={{ javax_debug }}" {% endif %} diff --git a/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.aarch64.txt b/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.aarch64.txt index f06c55adae..8a6075154a 100644 --- a/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.aarch64.txt +++ b/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.aarch64.txt @@ -147,8 +147,8 @@ https://packages.erlang-solutions.com/erlang/rpm/centos/7/aarch64/esl-erlang_23. https://dl.grafana.com/oss/release/grafana-7.3.5-1.aarch64.rpm # --- Exporters --- https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-arm64.tar.gz -https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.14.0/jmx_prometheus_javaagent-0.14.0.jar https://github.com/danielqsj/kafka_exporter/releases/download/v1.4.2/kafka_exporter-1.4.2.linux-arm64.tar.gz +https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-arm64.tar.gz https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-arm64.tar.gz # --- Misc --- diff --git a/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.x86_64.txt b/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.x86_64.txt index 50bb947d25..8cb1e663de 100644 --- a/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.x86_64.txt +++ b/ansible/playbooks/roles/repository/files/download-requirements/centos-7/requirements.x86_64.txt @@ -148,8 +148,8 @@ https://github.com/rabbitmq/erlang-rpm/releases/download/v23.1.5/erlang-23.1.5-1 https://dl.grafana.com/oss/release/grafana-7.3.5-1.x86_64.rpm # --- Exporters --- https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-amd64.tar.gz -https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.14.0/jmx_prometheus_javaagent-0.14.0.jar https://github.com/danielqsj/kafka_exporter/releases/download/v1.4.2/kafka_exporter-1.4.2.linux-amd64.tar.gz +https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-amd64.tar.gz # --- Misc --- diff --git a/ansible/playbooks/roles/repository/files/download-requirements/redhat-7/requirements.x86_64.txt b/ansible/playbooks/roles/repository/files/download-requirements/redhat-7/requirements.x86_64.txt index 9bf868438d..fe0e778737 100644 --- a/ansible/playbooks/roles/repository/files/download-requirements/redhat-7/requirements.x86_64.txt +++ b/ansible/playbooks/roles/repository/files/download-requirements/redhat-7/requirements.x86_64.txt @@ -144,8 +144,8 @@ https://github.com/rabbitmq/erlang-rpm/releases/download/v23.1.5/erlang-23.1.5-1 https://dl.grafana.com/oss/release/grafana-7.3.5-1.x86_64.rpm # --- Exporters --- https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-amd64.tar.gz -https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.14.0/jmx_prometheus_javaagent-0.14.0.jar https://github.com/danielqsj/kafka_exporter/releases/download/v1.4.2/kafka_exporter-1.4.2.linux-amd64.tar.gz +https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-amd64.tar.gz # --- Misc --- diff --git a/ansible/playbooks/roles/repository/files/download-requirements/ubuntu-18.04/requirements.x86_64.txt b/ansible/playbooks/roles/repository/files/download-requirements/ubuntu-18.04/requirements.x86_64.txt index f6b215ca5a..2cca58174f 100644 --- a/ansible/playbooks/roles/repository/files/download-requirements/ubuntu-18.04/requirements.x86_64.txt +++ b/ansible/playbooks/roles/repository/files/download-requirements/ubuntu-18.04/requirements.x86_64.txt @@ -207,8 +207,8 @@ https://packages.elastic.co/curator/5/debian9/pool/main/e/elasticsearch-curator/ https://dl.grafana.com/oss/release/grafana_7.3.5_amd64.deb # --- Exporters --- https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-amd64.tar.gz -https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.14.0/jmx_prometheus_javaagent-0.14.0.jar https://github.com/danielqsj/kafka_exporter/releases/download/v1.4.2/kafka_exporter-1.4.2.linux-amd64.tar.gz +https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-amd64.tar.gz # --- Misc --- diff --git a/ansible/playbooks/roles/zookeeper/defaults/main.yml b/ansible/playbooks/roles/zookeeper/defaults/main.yml index b537b0d395..d74ce924bb 100644 --- a/ansible/playbooks/roles/zookeeper/defaults/main.yml +++ b/ansible/playbooks/roles/zookeeper/defaults/main.yml @@ -14,9 +14,9 @@ zookeeper_max_rolling_log_file_count: 10 zookeeper_user: zookeeper zookeeper_group: zookeeper -prometheus_jmx_version: 0.3.1 +prometheus_jmx_version: 0.16.1 prometheus_jmx_sha256: 2a25e74e7af7f4e63c227bf5d0d0a4da9b6b146ce521eca58fcde3bf803f1974 -prometheus_jmx_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar +prometheus_jmx_exporter_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar prometheus_jmx_exporter_web_listen_port: 7072 prometheus_jmx_config: /opt/zookeeper/conf/jmx-zookeeper-config.yml prometheus_config_dir: /etc/prometheus @@ -25,4 +25,4 @@ prometheus_kafka_jmx_file_sd_labels: jmx_exporter_user: jmx-exporter -jmx_exporter_group: jmx-exporter \ No newline at end of file +jmx_exporter_group: jmx-exporter diff --git a/ansible/playbooks/roles/zookeeper/tasks/main.yml b/ansible/playbooks/roles/zookeeper/tasks/main.yml index c1e10ef6f9..ba5a093080 100644 --- a/ansible/playbooks/roles/zookeeper/tasks/main.yml +++ b/ansible/playbooks/roles/zookeeper/tasks/main.yml @@ -26,7 +26,7 @@ - name: Check if jmx exporter is available stat: - path: "{{ prometheus_jmx_path }}" + path: "{{ prometheus_jmx_exporter_path }}" register: exporter - name: Set Zookeeper variable with version name diff --git a/ansible/playbooks/roles/zookeeper/templates/zookeeper.service.j2 b/ansible/playbooks/roles/zookeeper/templates/zookeeper.service.j2 index 22361e803d..26a3e69767 100644 --- a/ansible/playbooks/roles/zookeeper/templates/zookeeper.service.j2 +++ b/ansible/playbooks/roles/zookeeper/templates/zookeeper.service.j2 @@ -8,7 +8,7 @@ Type=simple User={{ zookeeper_user }} Group={{ zookeeper_group }} {% if exporter.stat.exists %} -Environment="SERVER_JVMFLAGS=-javaagent:{{ prometheus_jmx_path }}={{ prometheus_jmx_exporter_web_listen_port }}:{{ prometheus_jmx_config }}" +Environment="SERVER_JVMFLAGS=-javaagent:{{ prometheus_jmx_exporter_path }}={{ prometheus_jmx_exporter_web_listen_port }}:{{ prometheus_jmx_config }}" {% endif %} ExecStart=/opt/zookeeper/bin/zkServer.sh start-foreground Restart=always diff --git a/ansible/playbooks/upgrade.yml b/ansible/playbooks/upgrade.yml index 012ff634d5..d5b405b97a 100644 --- a/ansible/playbooks/upgrade.yml +++ b/ansible/playbooks/upgrade.yml @@ -270,6 +270,20 @@ environment: KUBECONFIG: "{{ kubeconfig.local }}" +- hosts: jmx_exporter + serial: 1 + become: true + become_method: sudo + module_defaults: + shell: + executable: /bin/bash + tasks: + - include_role: + name: jmx_exporter + tasks_from: upgrade/main + vars: { lock_file: /var/tmp/jmx-exporter-upgrade-in-progress.flag } + when: "'jmx_exporter' in upgrade_components or upgrade_components|length == 0" + # === postgresql === - hosts: postgresql diff --git a/ansible/playbooks/zookeeper.yml b/ansible/playbooks/zookeeper.yml index 1adeb0bf3a..d681feaa53 100644 --- a/ansible/playbooks/zookeeper.yml +++ b/ansible/playbooks/zookeeper.yml @@ -3,7 +3,7 @@ - hosts: all gather_facts: yes - tasks: [ ] + tasks: [ ] - hosts: zookeeper become: true diff --git a/cli/engine/ansible/AnsibleVarsGenerator.py b/cli/engine/ansible/AnsibleVarsGenerator.py index 0ac4bb9543..ee73abb74c 100644 --- a/cli/engine/ansible/AnsibleVarsGenerator.py +++ b/cli/engine/ansible/AnsibleVarsGenerator.py @@ -67,7 +67,10 @@ def generate(self): # already provisioned from the cluster model constructed from the inventory. As PostgreSQL configuration # is changed between versions (e.g. wal_keep_segments -> wal_keep_size) and sometimes previous parameters # are not compatible with the new ones, defaults are used for template processing - roles_with_defaults = ['repository', 'image_registry', 'node_exporter', 'postgresql', 'kafka_exporter'] + roles_with_defaults = [ + 'repository', 'image_registry', 'node_exporter', + 'postgresql', 'kafka_exporter', 'jmx_exporter' + ] # now lets add any external configs we want to load roles_with_defaults = [*roles_with_defaults, *self.inventory_upgrade.get_new_config_roles()] # In special cases (like haproxy), where user specifies majority of the config, it's easier (and less diff --git a/cli/epicli.py b/cli/epicli.py index aa3096f4bd..edcd780e00 100644 --- a/cli/epicli.py +++ b/cli/epicli.py @@ -252,6 +252,7 @@ def upgrade_parser(subparsers): 'grafana', 'ignite', 'image_registry', + 'jmx_exporter', 'kafka', 'kafka_exporter', 'kibana', diff --git a/docs/changelogs/CHANGELOG-1.3.md b/docs/changelogs/CHANGELOG-1.3.md index 6575e57c1a..4b042d4ac5 100644 --- a/docs/changelogs/CHANGELOG-1.3.md +++ b/docs/changelogs/CHANGELOG-1.3.md @@ -46,6 +46,7 @@ - [#2755](https://github.com/epiphany-platform/epiphany/issues/2755) - Upgrade Python dependencies to the latest - [#2700](https://github.com/epiphany-platform/epiphany/issues/2700) - Upgrade Prometheus to 2.31.1 and AlertManager to 0.23.0 - [#2748](https://github.com/epiphany-platform/epiphany/issues/2748) - Upgrade Kafka exporter to the version 1.4.2 +- [#2750](https://github.com/epiphany-platform/epiphany/issues/2750) - Upgrade JMX exporter to the newest version ### Removed diff --git a/docs/home/COMPONENTS.md b/docs/home/COMPONENTS.md index b3f564a69e..f3d373e209 100644 --- a/docs/home/COMPONENTS.md +++ b/docs/home/COMPONENTS.md @@ -31,7 +31,7 @@ Note that versions are default versions and can be changed in certain cases thro | Bitnami Node Exporter Helm Chart | 1.1.2 | https://github.com/bitnami/charts | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | | Kafka Exporter | 1.4.2 | https://github.com/danielqsj/kafka_exporter | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | | HAProxy Exporter | 0.10.0 | https://github.com/prometheus/haproxy_exporter | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | -| JMX Exporter | 0.12.0 | https://github.com/prometheus/jmx_exporter | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | +| JMX Exporter | 0.16.1 | https://github.com/prometheus/jmx_exporter | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | | Postgres Exporter | 0.9.0 | https://github.com/prometheus-community/postgres_exporter | [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) | | PostgreSQL | 13 | https://www.postgresql.org/ | [PostgreSQL license](http://www.postgresql.org/about/licence/) | | HAProxy | 2.2.2 | https://www.haproxy.org/ | [GNU General Public License 2.0](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) | diff --git a/schema/common/defaults/configuration/jmx-exporter.yml b/schema/common/defaults/configuration/jmx-exporter.yml index b024b9e38f..4d44105bf2 100644 --- a/schema/common/defaults/configuration/jmx-exporter.yml +++ b/schema/common/defaults/configuration/jmx-exporter.yml @@ -2,8 +2,6 @@ kind: configuration/jmx-exporter title: "JMX exporter" name: default specification: - file_name: "jmx_prometheus_javaagent-0.14.0.jar" - jmx_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar # Changing it requires also change for same variable in Kafka and Zookeeper configs. # Todo Zookeeper and Kafka to use this variable jmx_jars_directory: /opt/jmx-exporter/jars jmx_exporter_user: jmx-exporter - jmx_exporter_group: jmx-exporter \ No newline at end of file + jmx_exporter_group: jmx-exporter diff --git a/schema/common/defaults/configuration/kafka.yml b/schema/common/defaults/configuration/kafka.yml index e788000b35..1da6a76f96 100644 --- a/schema/common/defaults/configuration/kafka.yml +++ b/schema/common/defaults/configuration/kafka.yml @@ -72,7 +72,6 @@ specification: zookeeper_hosts: "{{ groups['zookeeper']|join(':2181,') }}:2181" jmx_exporter_user: jmx-exporter jmx_exporter_group: jmx-exporter - prometheus_jmx_path: /opt/jmx-exporter/jmx_prometheus_javaagent.jar prometheus_jmx_exporter_web_listen_port: 7071 prometheus_jmx_config: /opt/kafka/config/jmx-kafka.config.yml prometheus_config_dir: /etc/prometheus diff --git a/schema/common/validation/configuration/jmx-exporter.yml b/schema/common/validation/configuration/jmx-exporter.yml index 1dcfbd2a94..b9edd66fd4 100644 --- a/schema/common/validation/configuration/jmx-exporter.yml +++ b/schema/common/validation/configuration/jmx-exporter.yml @@ -3,10 +3,6 @@ title: "Jmx-exporter specification schema" description: "Jmx-exporter specification schema" type: object properties: - file_name: - type: string - jmx_path: - type: string jmx_jars_directory: type: string jmx_exporter_user: diff --git a/schema/common/validation/configuration/kafka.yml b/schema/common/validation/configuration/kafka.yml index df937774e2..32b7cb5b98 100644 --- a/schema/common/validation/configuration/kafka.yml +++ b/schema/common/validation/configuration/kafka.yml @@ -152,8 +152,6 @@ properties: type: string jmx_exporter_group: type: string - prometheus_jmx_path: - type: string prometheus_jmx_exporter_web_listen_port: type: integer prometheus_jmx_config: From b726641d9869c2d85797e816b23a999160b6702f Mon Sep 17 00:00:00 2001 From: pprach <62592404+pprach@users.noreply.github.com> Date: Fri, 10 Dec 2021 13:44:06 +0100 Subject: [PATCH 2/3] Add preflight check for standalone pods (#2758) * Add preflight check for standalone pods --- .../playbooks/roles/preflight/tasks/upgrade.yml | 14 ++++++++++++++ docs/changelogs/CHANGELOG-1.3.md | 1 + 2 files changed, 15 insertions(+) diff --git a/ansible/playbooks/roles/preflight/tasks/upgrade.yml b/ansible/playbooks/roles/preflight/tasks/upgrade.yml index 328921e387..b3c6aa095b 100644 --- a/ansible/playbooks/roles/preflight/tasks/upgrade.yml +++ b/ansible/playbooks/roles/preflight/tasks/upgrade.yml @@ -15,6 +15,20 @@ is not supported by this version of Epiphany which requires at least version 1.18.6. For more information, refer to the documentation. quiet: true + + - name: Check number of unmanaged pods + become: true + command: kubectl get pods --all-namespaces -o custom-columns=CONTROLLER:.metadata.ownerReferences[].kind + register: no_unmanaged_pods + changed_when: false + + - name: Check if cluster has any unmanaged pods + assert: + that: "{{ no_unmanaged_pods.stdout_lines | regex_findall('') | length }} == 0" + fail_msg: >- + You have some pods that are not created by controller. Please remove them and then start upgrade once again. + quiet: true + run_once: true delegate_to: "{{ groups.kubernetes_master[0] }}" when: diff --git a/docs/changelogs/CHANGELOG-1.3.md b/docs/changelogs/CHANGELOG-1.3.md index 4b042d4ac5..2eba228d14 100644 --- a/docs/changelogs/CHANGELOG-1.3.md +++ b/docs/changelogs/CHANGELOG-1.3.md @@ -18,6 +18,7 @@ ### Fixed +- [#2657](https://github.com/epiphany-platform/epiphany/issues/2657) - Add preflight check which stop upgrade is such pods exists - [#2497](https://github.com/epiphany-platform/epiphany/issues/2497) - Fix epicli apply --full region values - [#1743](https://github.com/epiphany-platform/epiphany/issues/1743) - Virtual machine "kind" mismatch - [#2656](https://github.com/epiphany-platform/epiphany/issues/2656) - WAL files are not removed from $PGDATA/pg_wal directory From 2fde9d66745baf31f03913e3b533d85630dcf554 Mon Sep 17 00:00:00 2001 From: Luuk van Venrooij <11056665+seriva@users.noreply.github.com> Date: Fri, 10 Dec 2021 18:39:51 +0100 Subject: [PATCH 3/3] - Downgrade Azure-CLI 2.31.0 > 2.29.0 (#2783) --- .devcontainer/poetry.lock | 320 ++++++++++++++++----------------- .devcontainer/pyproject.toml | 2 +- .devcontainer/requirements.txt | 74 ++++---- cli/licenses.py | 108 +++++------ docs/home/COMPONENTS.md | 57 +++--- 5 files changed, 285 insertions(+), 276 deletions(-) diff --git a/.devcontainer/poetry.lock b/.devcontainer/poetry.lock index 6218e8460b..63e9083f76 100644 --- a/.devcontainer/poetry.lock +++ b/.devcontainer/poetry.lock @@ -111,7 +111,7 @@ msrestazure = ">=0.4.32,<2.0.0" [[package]] name = "azure-cli" -version = "2.31.0" +version = "2.29.0" description = "Microsoft Azure Command-Line Tools" category = "main" optional = false @@ -121,14 +121,15 @@ python-versions = ">=3.6.0" antlr4-python3-runtime = ">=4.7.2,<4.8.0" azure-appconfiguration = ">=1.1.1,<1.2.0" azure-batch = ">=11.0.0,<11.1.0" -azure-cli-core = "2.31.0" +azure-cli-core = "2.29.0" azure-cosmos = ">=3.0.2,<4.0" azure-datalake-store = ">=0.0.49,<0.1.0" +azure-functions-devops-build = ">=0.0.22,<0.1.0" azure-graphrbac = ">=0.60.0,<0.61.0" azure-identity = "*" azure-keyvault = ">=1.1.0,<1.2.0" azure-keyvault-administration = "4.0.0b3" -azure-keyvault-keys = ">=4.5.0b4,<4.6.0" +azure-keyvault-keys = ">=4.4.0,<4.5.0" azure-loganalytics = ">=0.1.0,<0.2.0" azure-mgmt-advisor = "9.0.0" azure-mgmt-apimanagement = ">=0.2.0,<0.3.0" @@ -140,29 +141,29 @@ azure-mgmt-batchai = ">=7.0.0b1,<7.1.0" azure-mgmt-billing = "6.0.0" azure-mgmt-botservice = ">=0.3.0,<0.4.0" azure-mgmt-cdn = "11.0.0" -azure-mgmt-cognitiveservices = ">=13.0.0,<13.1.0" -azure-mgmt-compute = ">=23.1.0,<23.2.0" +azure-mgmt-cognitiveservices = ">=12.0.0,<12.1.0" +azure-mgmt-compute = ">=23.0.0,<23.1.0" azure-mgmt-consumption = ">=2.0,<3.0" -azure-mgmt-containerinstance = ">=9.1.0,<9.2.0" -azure-mgmt-containerregistry = "8.2.0" +azure-mgmt-containerinstance = ">=9.0.0,<9.1.0" +azure-mgmt-containerregistry = "8.1.0" azure-mgmt-containerservice = ">=16.1.0,<16.2.0" -azure-mgmt-cosmosdb = ">=7.0.0b2,<7.1.0" +azure-mgmt-cosmosdb = ">=6.4.0,<6.5.0" azure-mgmt-databoxedge = ">=1.0.0,<1.1.0" azure-mgmt-datalake-analytics = ">=0.2.1,<0.3.0" azure-mgmt-datalake-store = ">=0.5.0,<0.6.0" -azure-mgmt-datamigration = ">=10.0.0,<10.1.0" +azure-mgmt-datamigration = ">=9.0.0,<9.1.0" azure-mgmt-deploymentmanager = ">=0.2.0,<0.3.0" azure-mgmt-devtestlabs = ">=4.0,<5.0" azure-mgmt-dns = ">=8.0.0,<8.1.0" azure-mgmt-eventgrid = "9.0.0" azure-mgmt-eventhub = ">=9.1.0,<9.2.0" azure-mgmt-extendedlocation = ">=1.0.0b2,<1.1.0" -azure-mgmt-hdinsight = ">=9.0.0,<9.1.0" +azure-mgmt-hdinsight = ">=8.0.0,<8.1.0" azure-mgmt-imagebuilder = ">=0.4.0,<0.5.0" azure-mgmt-iotcentral = ">=9.0.0b1,<9.1.0" azure-mgmt-iothub = "2.1.0" azure-mgmt-iothubprovisioningservices = ">=0.3.0,<0.4.0" -azure-mgmt-keyvault = "9.3.0" +azure-mgmt-keyvault = "9.1.0" azure-mgmt-kusto = ">=0.3.0,<0.4.0" azure-mgmt-loganalytics = ">=11.0.0,<11.1.0" azure-mgmt-managedservices = ">=1.0,<2.0" @@ -172,78 +173,77 @@ azure-mgmt-marketplaceordering = "1.1.0" azure-mgmt-media = ">=7.0,<8.0" azure-mgmt-monitor = ">=2.0.0,<2.1.0" azure-mgmt-msi = ">=0.2,<1.0" -azure-mgmt-netapp = ">=5.1.0,<5.2.0" -azure-mgmt-network = ">=19.3.0,<19.4.0" +azure-mgmt-netapp = ">=4.0.0,<4.1.0" +azure-mgmt-network = ">=19.0.0,<19.1.0" azure-mgmt-policyinsights = ">=1.0.0,<1.1.0" azure-mgmt-privatedns = ">=1.0.0,<1.1.0" -azure-mgmt-rdbms = ">=10.0.0,<10.1.0" +azure-mgmt-rdbms = ">=9.1.0b1,<9.2.0" azure-mgmt-recoveryservices = ">=2.0.0,<2.1.0" -azure-mgmt-recoveryservicesbackup = ">=3.0.0,<3.1.0" +azure-mgmt-recoveryservicesbackup = ">=0.15.0,<0.16.0" azure-mgmt-redhatopenshift = "1.0.0" azure-mgmt-redis = ">=13.0.0,<13.1.0" azure-mgmt-relay = ">=0.1.0,<0.2.0" azure-mgmt-reservations = "0.6.0" -azure-mgmt-resource = "20.0.0" +azure-mgmt-resource = "19.0.0" azure-mgmt-search = ">=8.0,<9.0" azure-mgmt-security = ">=2.0.0b1,<2.1.0" azure-mgmt-servicebus = ">=6.0.0,<6.1.0" azure-mgmt-servicefabric = ">=1.0.0,<1.1.0" azure-mgmt-servicefabricmanagedclusters = ">=1.0.0,<1.1.0" -azure-mgmt-servicelinker = "1.0.0b1" azure-mgmt-signalr = ">=1.0.0b2,<1.1.0" azure-mgmt-sql = ">=3.0.1,<3.1.0" azure-mgmt-sqlvirtualmachine = ">=1.0.0b1,<1.1.0" azure-mgmt-storage = ">=19.0.0,<19.1.0" -azure-mgmt-synapse = ">=2.1.0b2,<2.2.0" +azure-mgmt-synapse = ">=2.0.0,<2.1.0" azure-mgmt-trafficmanager = ">=0.51.0,<0.52.0" azure-mgmt-web = ">=4.0.0,<4.1.0" -azure-multiapi-storage = ">=0.7.0,<0.8.0" +azure-multiapi-storage = ">=0.6.2,<0.7.0" azure-storage-common = ">=1.4,<2.0" azure-synapse-accesscontrol = ">=0.5.0,<0.6.0" -azure-synapse-artifacts = ">=0.9.0,<0.10.0" +azure-synapse-artifacts = ">=0.8.0,<0.9.0" azure-synapse-managedprivateendpoints = ">=0.3.0,<0.4.0" azure-synapse-spark = ">=0.2.0,<0.3.0" chardet = ">=3.0.4,<3.1.0" -colorama = ">=0.4.4,<0.5.0" distro = "*" fabric = ">=2.4,<3.0" javaproperties = ">=0.5.1,<0.6.0" -jsondiff = ">=1.3.0,<1.4.0" +jsondiff = ">=1.2.0,<1.3.0" packaging = ">=20.9,<21.0" PyGithub = ">=1.38,<2.0" PyNaCl = ">=1.4.0,<1.5.0" +pytz = "2019.1" scp = ">=0.13.2,<0.14.0" semver = "2.13.0" -six = ">=1.10.0" sshtunnel = ">=0.1.4,<0.2.0" -urllib3 = {version = "*", extras = ["secure"]} websocket-client = ">=0.56.0,<0.57.0" xmltodict = ">=0.12,<1.0" [[package]] name = "azure-cli-core" -version = "2.31.0" +version = "2.29.0" description = "Microsoft Azure Command-Line Tools Core Module" category = "main" optional = false python-versions = ">=3.6.0" [package.dependencies] +adal = ">=1.2.7,<1.3.0" argcomplete = ">=1.8,<2.0" azure-cli-telemetry = ">=1.0.0,<1.1.0" -azure-mgmt-core = ">=1.2.0,<2" +azure-mgmt-core = ">=1.2.0,<1.3.0" cryptography = "*" -humanfriendly = ">=10.0,<11.0" +humanfriendly = ">=4.7,<10.0" jmespath = "*" -knack = ">=0.9.0,<0.10.0" -msal = ">=1.16.0,<2.0.0" -msal-extensions = ">=0.3.0,<0.4" +knack = ">=0.8.2,<0.9.0" +msal = ">=1.10.0,<2.0.0" paramiko = ">=2.0.8,<3.0.0" pkginfo = ">=1.5.0.1" psutil = ">=5.8,<6.0" PyJWT = ">=2.1.0" pyopenssl = ">=17.1.0" -requests = {version = "*", extras = ["socks"]} +requests = {version = ">=2.25.1,<2.26.0", extras = ["socks"]} +six = ">=1.12,<2.0" +urllib3 = {version = ">=1.26.5", extras = ["secure"]} [[package]] name = "azure-cli-telemetry" @@ -302,6 +302,19 @@ adal = ">=0.4.2" cffi = "*" requests = ">=2.20.0" +[[package]] +name = "azure-functions-devops-build" +version = "0.0.22" +description = "Python package for integrating Azure Functions with Azure DevOps. Specifically made for the Azure CLI" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +jinja2 = "*" +msrest = "*" +vsts = "*" + [[package]] name = "azure-graphrbac" version = "0.60.0" @@ -361,7 +374,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-keyvault-keys" -version = "4.5.0b5" +version = "4.4.0" description = "Microsoft Azure Key Vault Keys Client Library for Python" category = "main" optional = false @@ -369,7 +382,7 @@ python-versions = "*" [package.dependencies] azure-common = ">=1.1,<2.0" -azure-core = ">=1.15.0,<2.0.0" +azure-core = ">=1.7.0,<2.0.0" cryptography = ">=2.1.4" msrest = ">=0.6.21" six = ">=1.12.0" @@ -518,7 +531,7 @@ msrest = ">=0.5.0" [[package]] name = "azure-mgmt-cognitiveservices" -version = "13.0.0" +version = "12.0.0" description = "Microsoft Azure Cognitive Services Management Client Library for Python" category = "main" optional = false @@ -531,7 +544,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-compute" -version = "23.1.0" +version = "23.0.0" description = "Microsoft Azure Compute Management Client Library for Python" category = "main" optional = false @@ -557,7 +570,7 @@ msrestazure = ">=0.4.20,<2.0.0" [[package]] name = "azure-mgmt-containerinstance" -version = "9.1.0" +version = "9.0.0" description = "Microsoft Azure Container Instance Client Library for Python" category = "main" optional = false @@ -570,7 +583,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-containerregistry" -version = "8.2.0" +version = "8.1.0" description = "Microsoft Azure Container Registry Client Library for Python" category = "main" optional = false @@ -596,18 +609,18 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-core" -version = "1.3.0" +version = "1.2.2" description = "Microsoft Azure Management Core Library for Python" category = "main" optional = false python-versions = "*" [package.dependencies] -azure-core = ">=1.15.0,<2.0.0" +azure-core = ">=1.9.0,<2.0.0" [[package]] name = "azure-mgmt-cosmosdb" -version = "7.0.0b2" +version = "6.4.0" description = "Microsoft Azure Cosmos DB Management Client Library for Python" category = "main" optional = false @@ -670,7 +683,7 @@ msrestazure = ">=0.4.27,<2.0.0" [[package]] name = "azure-mgmt-datamigration" -version = "10.0.0" +version = "9.0.0" description = "Microsoft Azure Data Migration Client Library for Python" category = "main" optional = false @@ -761,7 +774,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-hdinsight" -version = "9.0.0" +version = "8.0.0" description = "Microsoft Azure HDInsight Management Client Library for Python" category = "main" optional = false @@ -826,7 +839,7 @@ msrestazure = ">=0.4.32,<2.0.0" [[package]] name = "azure-mgmt-keyvault" -version = "9.3.0" +version = "9.1.0" description = "Microsoft Azure Keyvault Management Client Library for Python" category = "main" optional = false @@ -956,7 +969,7 @@ msrestazure = ">=0.4.27,<2.0.0" [[package]] name = "azure-mgmt-netapp" -version = "5.1.0" +version = "4.0.0" description = "Microsoft Azure NetApp Files Management Client Library for Python" category = "main" optional = false @@ -969,7 +982,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-network" -version = "19.3.0" +version = "19.0.0" description = "Microsoft Azure Network Management Client Library for Python" category = "main" optional = false @@ -1019,7 +1032,7 @@ msrest = ">=0.5.0" [[package]] name = "azure-mgmt-rdbms" -version = "10.0.0" +version = "9.1.0" description = "Microsoft Azure RDBMS Management Client Library for Python" category = "main" optional = false @@ -1045,16 +1058,16 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-recoveryservicesbackup" -version = "3.0.0" -description = "Microsoft Azure Recoveryservicesbackup Management Client Library for Python" +version = "0.15.0" +description = "Microsoft Azure Recovery Services Backup Management Client Library for Python" category = "main" optional = false python-versions = "*" [package.dependencies] azure-common = ">=1.1,<2.0" -azure-mgmt-core = ">=1.2.0,<2.0.0" -msrest = ">=0.6.21" +msrest = ">=0.5.0" +msrestazure = ">=0.4.32,<2.0.0" [[package]] name = "azure-mgmt-redhatopenshift" @@ -1110,7 +1123,7 @@ msrestazure = ">=0.4.32,<2.0.0" [[package]] name = "azure-mgmt-resource" -version = "20.0.0" +version = "19.0.0" description = "Microsoft Azure Resource Management Client Library for Python" category = "main" optional = false @@ -1186,19 +1199,6 @@ azure-common = ">=1.1,<2.0" azure-mgmt-core = ">=1.2.0,<2.0.0" msrest = ">=0.6.21" -[[package]] -name = "azure-mgmt-servicelinker" -version = "1.0.0b1" -description = "Microsoft Azure Servicelinker Management Client Library for Python" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -azure-common = ">=1.1,<2.0" -azure-mgmt-core = ">=1.2.0,<2.0.0" -msrest = ">=0.6.21" - [[package]] name = "azure-mgmt-signalr" version = "1.0.0" @@ -1253,7 +1253,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-mgmt-synapse" -version = "2.1.0b3" +version = "2.0.0" description = "Microsoft Azure Synapse Management Client Library for Python" category = "main" optional = false @@ -1292,7 +1292,7 @@ msrest = ">=0.6.21" [[package]] name = "azure-multiapi-storage" -version = "0.7.0" +version = "0.6.2" description = "Microsoft Azure Storage Client Library for Python with multi API version support." category = "main" optional = false @@ -1343,7 +1343,7 @@ msrest = ">=0.5.0" [[package]] name = "azure-synapse-artifacts" -version = "0.9.0" +version = "0.8.0" description = "Microsoft Azure Synapse Artifacts Client Library for Python" category = "main" optional = false @@ -1455,17 +1455,6 @@ category = "main" optional = false python-versions = "*" -[[package]] -name = "charset-normalizer" -version = "2.0.9" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" -optional = false -python-versions = ">=3.5.0" - -[package.extras] -unicode_backport = ["unicodedata2"] - [[package]] name = "colorama" version = "0.4.4" @@ -1534,23 +1523,22 @@ testing = ["mock (>=2.0.0,<3.0)"] [[package]] name = "humanfriendly" -version = "10.0" +version = "9.2" description = "Human friendly output for text interfaces using Python" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [package.dependencies] -pyreadline = {version = "*", markers = "sys_platform == \"win32\" and python_version < \"3.8\""} -pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_version >= \"3.8\""} +pyreadline = {version = "*", markers = "sys_platform == \"win32\""} [[package]] name = "idna" -version = "3.3" +version = "2.10" description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "importlib-metadata" @@ -1638,7 +1626,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" [[package]] name = "jsondiff" -version = "1.3.0" +version = "1.2.0" description = "Diff JSON and JSON-like structures in Python" category = "main" optional = false @@ -1664,7 +1652,7 @@ format_nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- [[package]] name = "knack" -version = "0.9.0" +version = "0.8.2" description = "A Command-Line Interface framework" category = "main" optional = false @@ -1672,6 +1660,7 @@ python-versions = "*" [package.dependencies] argcomplete = "*" +colorama = "*" jmespath = "*" pygments = "*" pyyaml = "*" @@ -1935,14 +1924,6 @@ category = "main" optional = false python-versions = "*" -[[package]] -name = "pyreadline3" -version = "3.3" -description = "A python implementation of GNU readline." -category = "main" -optional = false -python-versions = "*" - [[package]] name = "pyrsistent" version = "0.18.0" @@ -1978,6 +1959,14 @@ category = "main" optional = false python-versions = ">=3.5" +[[package]] +name = "pytz" +version = "2019.1" +description = "World timezone definitions, modern and historical" +category = "main" +optional = false +python-versions = "*" + [[package]] name = "pywin32" version = "302" @@ -1996,22 +1985,22 @@ python-versions = ">=3.6" [[package]] name = "requests" -version = "2.26.0" +version = "2.25.1" description = "Python HTTP for Humans." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} -idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +chardet = ">=3.0.2,<5" +idna = ">=2.5,<3" PySocks = {version = ">=1.5.6,<1.5.7 || >1.5.7", optional = true, markers = "extra == \"socks\""} urllib3 = ">=1.21.1,<1.27" [package.extras] +security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"] socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] [[package]] name = "requests-oauthlib" @@ -2154,6 +2143,17 @@ brotli = ["brotlipy (>=0.6.0)"] secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +[[package]] +name = "vsts" +version = "0.1.25" +description = "Python wrapper around the VSTS APIs" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +msrest = ">=0.6.0,<0.7.0" + [[package]] name = "websocket-client" version = "0.56.0" @@ -2196,7 +2196,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = "^3.7" -content-hash = "d1be090e5bbdce75e324092237a0325739bb069b7783c9b66055191f5f7152bb" +content-hash = "1d182bc0b555c3530e59ff61ced62171084c14dfc30dc3a459f16dcd0a3d5982" [metadata.files] adal = [ @@ -2233,12 +2233,12 @@ azure-batch = [ {file = "azure_batch-11.0.0-py2.py3-none-any.whl", hash = "sha256:7059a82d1f7e466896d2f24fd4fa040a3717a7c3dc110e21c9fc2e754fc3ac72"}, ] azure-cli = [ - {file = "azure-cli-2.31.0.tar.gz", hash = "sha256:754f34d214df136b4afa07a798fa4ca3b4fa6851a8bc92ba9fe6afb642a99106"}, - {file = "azure_cli-2.31.0-py3-none-any.whl", hash = "sha256:97709c377786a63d21acec6c85f9311ca919f705c7617107d73135997c858cec"}, + {file = "azure-cli-2.29.0.tar.gz", hash = "sha256:e59affe49e3ae04aa2768450ceef35df3f828882ebc4d38b2430b2fc320c73e0"}, + {file = "azure_cli-2.29.0-py3-none-any.whl", hash = "sha256:ba4cc11a1b31b9c0cc0ca6530fe5a1d83579e32dc261129687f62e43cef67cd6"}, ] azure-cli-core = [ - {file = "azure-cli-core-2.31.0.tar.gz", hash = "sha256:2d859f1b1deac29db0bfd9e96e8a8975e538d9b54210ebc54d6d83dd7c9f4b83"}, - {file = "azure_cli_core-2.31.0-py3-none-any.whl", hash = "sha256:f3cd57de47b1f117eae676c93f65bcfaea40b799283f016b0ae9a3cb2cfb70cc"}, + {file = "azure-cli-core-2.29.0.tar.gz", hash = "sha256:18326c74d2bdbd82de7f9ab294f188f9270a37955d43f5011ef2fc2e048b72ac"}, + {file = "azure_cli_core-2.29.0-py3-none-any.whl", hash = "sha256:29aead13bf0f44f3757cff5216c55b2a7106db299c184c6fa501a97aaca8b8a5"}, ] azure-cli-telemetry = [ {file = "azure-cli-telemetry-1.0.6.tar.gz", hash = "sha256:fc6cadf59f14f3bbd6c01d1b4d6ad54cfc1456303510d8bdb6206db08c40e661"}, @@ -2260,6 +2260,10 @@ azure-datalake-store = [ {file = "azure-datalake-store-0.0.52.tar.gz", hash = "sha256:4198ddb32614d16d4502b43d5c9739f81432b7e0e4d75d30e05149fe6007fea2"}, {file = "azure_datalake_store-0.0.52-py2.py3-none-any.whl", hash = "sha256:aaed72b9c856824aeab554f4dbe0ef2c6d0ff36700bdd8b93d8298793117c48e"}, ] +azure-functions-devops-build = [ + {file = "azure-functions-devops-build-0.0.22.tar.gz", hash = "sha256:c6341abda6098813f8fa625acd1e925410a17a8a1c7aaabdf975bb7cecb14edf"}, + {file = "azure_functions_devops_build-0.0.22-py3-none-any.whl", hash = "sha256:adc4c45de5510acf4c094df84b54bc7767e1466e4bfdce23b99ffccf29de3f2f"}, +] azure-graphrbac = [ {file = "azure-graphrbac-0.60.0.zip", hash = "sha256:d0bb62d8bf8e196b903f3971ba4afa448e4fe14e8394ebfcdd941d84d62ecafe"}, {file = "azure_graphrbac-0.60.0-py2.py3-none-any.whl", hash = "sha256:0b266602dfc631dca13960cc64bac172bf9dea2cccbb1aa13d1631ce76f14d79"}, @@ -2277,8 +2281,8 @@ azure-keyvault-administration = [ {file = "azure_keyvault_administration-4.0.0b3-py2.py3-none-any.whl", hash = "sha256:b4e5efb89ea378cfe72bc151153510a696cca5d24374eabbe3498ef7d78a3f98"}, ] azure-keyvault-keys = [ - {file = "azure-keyvault-keys-4.5.0b5.zip", hash = "sha256:21f3fa478b6398b81df0abcec3779530dc75538b03b4479d46d90207894fa054"}, - {file = "azure_keyvault_keys-4.5.0b5-py2.py3-none-any.whl", hash = "sha256:abb75ed5ab042db37c9146db2987e19dce9b8791398543fa4260f5ea80f78625"}, + {file = "azure-keyvault-keys-4.4.0.zip", hash = "sha256:7792ad0d5e63ad9eafa68bdce5de91b3ffcc7ca7a6afdc576785e6a2793caed0"}, + {file = "azure_keyvault_keys-4.4.0-py2.py3-none-any.whl", hash = "sha256:e12c5554f7f0d5547e52cc2e725e94825fb40db1dbde7c39ec8a7f1fd150c46d"}, ] azure-loganalytics = [ {file = "azure-loganalytics-0.1.1.zip", hash = "sha256:68ffb9a2206e06b9672100a8e6351cc04f75bb81867f30d416c68b55d624d793"}, @@ -2325,36 +2329,36 @@ azure-mgmt-cdn = [ {file = "azure_mgmt_cdn-11.0.0-py2.py3-none-any.whl", hash = "sha256:92f7fbfde35891a8c6aab1f009419f92cb573f9ad9baf1f88bf35078f5b850cb"}, ] azure-mgmt-cognitiveservices = [ - {file = "azure-mgmt-cognitiveservices-13.0.0.zip", hash = "sha256:dc6116e8394d45312c7ad5a9098ce0dd2370bd92d43afd33d8b3bfab724fa498"}, - {file = "azure_mgmt_cognitiveservices-13.0.0-py2.py3-none-any.whl", hash = "sha256:3c0fe6385b2f4972e0d98999c841daaf6b21f4f7ceb1454beb4c7291a34c7bf3"}, + {file = "azure-mgmt-cognitiveservices-12.0.0.zip", hash = "sha256:73054bd19866577e7e327518afc8f47e1639a11aea29a7466354b81804f4a676"}, + {file = "azure_mgmt_cognitiveservices-12.0.0-py2.py3-none-any.whl", hash = "sha256:dac3a3b0f0ac55980e1221e6b5a4e09434eed567c3ff429106ec184ed899bf9a"}, ] azure-mgmt-compute = [ - {file = "azure-mgmt-compute-23.1.0.zip", hash = "sha256:49dbb0f51006d557cbd0b22999cb9ecf3eabc2be46d96efcc6d651c6b33754b3"}, - {file = "azure_mgmt_compute-23.1.0-py2.py3-none-any.whl", hash = "sha256:d028afc4fbbd6796b2604195ffdb1021ef77b18cf01356f810820a52a7e2a12d"}, + {file = "azure-mgmt-compute-23.0.0.zip", hash = "sha256:1eb26b965ba4049ddcf10d4f25818725fc03c491c3be76537d0d74ceb1146b04"}, + {file = "azure_mgmt_compute-23.0.0-py2.py3-none-any.whl", hash = "sha256:3efc8084744d1f275a6eb2ed8c920da34f54b0c8c97acb217ea34c9f6821824e"}, ] azure-mgmt-consumption = [ {file = "azure-mgmt-consumption-2.0.0.zip", hash = "sha256:9a85a89f30f224d261749be20b4616a0eb8948586f7f0f20573b8ea32f265189"}, {file = "azure_mgmt_consumption-2.0.0-py2.py3-none-any.whl", hash = "sha256:36ea28bb2ed4bec7e4d643444085ba4debed20a01fbd87f599896a4bda3318bd"}, ] azure-mgmt-containerinstance = [ - {file = "azure-mgmt-containerinstance-9.1.0.zip", hash = "sha256:22164b0c59138b37bc48ba6d476bf635152bc428dcb420b521a14b8c25c797ad"}, - {file = "azure_mgmt_containerinstance-9.1.0-py2.py3-none-any.whl", hash = "sha256:219763b6d831ecc4352ce1f079e4d12f454d8dcfc3ed4901a78d27952a2d3c0b"}, + {file = "azure-mgmt-containerinstance-9.0.0.zip", hash = "sha256:041431c5a768ac652aac318a17f2a53b90db968494c79abbafec441d0be387ff"}, + {file = "azure_mgmt_containerinstance-9.0.0-py2.py3-none-any.whl", hash = "sha256:942739f8831de75edaa388aed1659c87ffa26b7866559d0381b0c55c23a6ae65"}, ] azure-mgmt-containerregistry = [ - {file = "azure-mgmt-containerregistry-8.2.0.zip", hash = "sha256:f2bcdbcf0b9fdc2df0df9eccb77cb489091d3c670ed53cba77e5ffd734e9539b"}, - {file = "azure_mgmt_containerregistry-8.2.0-py2.py3-none-any.whl", hash = "sha256:02836de341eaa597733b3d959a6167812f7dc80340fe82a5e9ba71bca2f2afd1"}, + {file = "azure-mgmt-containerregistry-8.1.0.zip", hash = "sha256:62efbb03275d920894d79879ad0ed59605163abd32177dcf24e90c1862ebccbd"}, + {file = "azure_mgmt_containerregistry-8.1.0-py2.py3-none-any.whl", hash = "sha256:78dea71a1b4ccb98e085f47ed8b31825fd3a83a3600fad497d59254204955755"}, ] azure-mgmt-containerservice = [ {file = "azure-mgmt-containerservice-16.1.0.zip", hash = "sha256:3654c8ace2b8868d0ea9c4c78c74f51e86e23330c7d8a636d132253747e6f3f4"}, {file = "azure_mgmt_containerservice-16.1.0-py2.py3-none-any.whl", hash = "sha256:b7a0e6c97f4f995d7c6f9bcba45075a70a957b383d4f28cc42c327b180ad4b5e"}, ] azure-mgmt-core = [ - {file = "azure-mgmt-core-1.3.0.zip", hash = "sha256:3ffb7352b39e5495dccc2d2b47254f4d82747aff4735e8bf3267c335b0c9bb40"}, - {file = "azure_mgmt_core-1.3.0-py2.py3-none-any.whl", hash = "sha256:7b7fa952aeb9d3eaa13eff905880f3d3b62200f7be7a8ba5a50c8b2e7295322a"}, + {file = "azure-mgmt-core-1.2.2.zip", hash = "sha256:4246810996107f72482a9351cf918d380c257e90942144ec9c0c2abda1d0a312"}, + {file = "azure_mgmt_core-1.2.2-py2.py3-none-any.whl", hash = "sha256:d36bd595dff6a1509ed52a89ee8dd88b83200320a6afa60fb4186afcb8978ce5"}, ] azure-mgmt-cosmosdb = [ - {file = "azure-mgmt-cosmosdb-7.0.0b2.zip", hash = "sha256:855bd85bd8247d354cc22b3721d0f4257603c5d29ccb2cc8171de1364ed530b2"}, - {file = "azure_mgmt_cosmosdb-7.0.0b2-py2.py3-none-any.whl", hash = "sha256:d433569b1d7c780640868213455d2c1ddda56e9091b391acf25859b508e93dde"}, + {file = "azure-mgmt-cosmosdb-6.4.0.zip", hash = "sha256:fb6b8ab80ab97214b94ae9e462ba1c459b68a3af296ffc26317ebd3ff500e00b"}, + {file = "azure_mgmt_cosmosdb-6.4.0-py2.py3-none-any.whl", hash = "sha256:aa10e728be4706189173916e7ecb49da98a8b96fbacbec1d2b48ca6cdad3efc9"}, ] azure-mgmt-databoxedge = [ {file = "azure-mgmt-databoxedge-1.0.0.zip", hash = "sha256:04090062bc1e8f00c2f45315a3bceb0fb3b3479ec1474d71b88342e13499b087"}, @@ -2374,8 +2378,8 @@ azure-mgmt-datalake-store = [ {file = "azure_mgmt_datalake_store-0.5.0-py2.py3-none-any.whl", hash = "sha256:2af98236cd7eaa439b239bf761338c866996ce82e9c129b204e8851e5dc095dd"}, ] azure-mgmt-datamigration = [ - {file = "azure-mgmt-datamigration-10.0.0.zip", hash = "sha256:5cee70f97fe3a093c3cb70c2a190c2df936b772e94a09ef7e3deb1ed177c9f32"}, - {file = "azure_mgmt_datamigration-10.0.0-py2.py3-none-any.whl", hash = "sha256:35e21390540689d3c066ac9283293f31f36d48eb27a5c8e96b076fd2e29503ae"}, + {file = "azure-mgmt-datamigration-9.0.0.zip", hash = "sha256:70373dbeb35a7768a47341bb3b570c559197bc1ba36fc8f8bf15139e4c8bad70"}, + {file = "azure_mgmt_datamigration-9.0.0-py2.py3-none-any.whl", hash = "sha256:c2ab9c075efbcb5bc43e924a34c9e6b06f0ab1bc35845ab879a2a360e5b6abf5"}, ] azure-mgmt-deploymentmanager = [ {file = "azure-mgmt-deploymentmanager-0.2.0.zip", hash = "sha256:46e342227993fc9acab1dda42f2eb566b522a8c945ab9d0eea56276b46f6d730"}, @@ -2402,8 +2406,8 @@ azure-mgmt-extendedlocation = [ {file = "azure_mgmt_extendedlocation-1.0.0-py2.py3-none-any.whl", hash = "sha256:117901ca6ea29222f9d4e58ff66b7327a1806032460db467bbdcf2396c43d291"}, ] azure-mgmt-hdinsight = [ - {file = "azure-mgmt-hdinsight-9.0.0.zip", hash = "sha256:41ebdc69c0d1f81d25dd30438c14fff4331f66639f55805b918b9649eaffe78a"}, - {file = "azure_mgmt_hdinsight-9.0.0-py2.py3-none-any.whl", hash = "sha256:1df6d8284bc173d8d556a31a9bde677ada0fe1f52227c5d499ab05fcd71b8d4f"}, + {file = "azure-mgmt-hdinsight-8.0.0.zip", hash = "sha256:2c43f1a62e5b83304392b0ad7cfdaeef2ef2f47cb3fdfa2577b703b6ea126000"}, + {file = "azure_mgmt_hdinsight-8.0.0-py2.py3-none-any.whl", hash = "sha256:d7e81cf92fc9fd724545a7d6e89716053b13779f76f019a12d6d2cc459e0e45e"}, ] azure-mgmt-imagebuilder = [ {file = "azure-mgmt-imagebuilder-0.4.0.zip", hash = "sha256:4c9291bf16b40b043637e5e4f15650f71418ac237393e62219cab478a7951733"}, @@ -2422,8 +2426,8 @@ azure-mgmt-iothubprovisioningservices = [ {file = "azure_mgmt_iothubprovisioningservices-0.3.0-py2.py3-none-any.whl", hash = "sha256:f83a505b11cdb4310c2cf8a026e34e60c26fb980146a49a00448b6c65c4d8186"}, ] azure-mgmt-keyvault = [ - {file = "azure-mgmt-keyvault-9.3.0.zip", hash = "sha256:54156422e618b686d52232a7989594b240bd18afd0fa381e12e4772ed4ab5ea8"}, - {file = "azure_mgmt_keyvault-9.3.0-py2.py3-none-any.whl", hash = "sha256:4ef0285292de9d833e5b1a56b9667ef7f7fd435ac44ad179b917ed3f3470c974"}, + {file = "azure-mgmt-keyvault-9.1.0.zip", hash = "sha256:cd35e81c4a3cf812ade4bdcf1f7ccf4b5b78a801ef967340012a6ac9fe61ded2"}, + {file = "azure_mgmt_keyvault-9.1.0-py2.py3-none-any.whl", hash = "sha256:81587675b0bbc4cc2b5f1d446aa8c065f62cc7069227d3a1de3d499359073d88"}, ] azure-mgmt-kusto = [ {file = "azure-mgmt-kusto-0.3.0.zip", hash = "sha256:9eb8b7781fd4410ee9e207cd0c3983baf9e58414b5b4a18849d09856e36bacde"}, @@ -2462,12 +2466,12 @@ azure-mgmt-msi = [ {file = "azure_mgmt_msi-0.2.0-py2.py3-none-any.whl", hash = "sha256:e989e61753bf4eca0e688526b7c31c9a88082080acfb038fad17dda7f084a026"}, ] azure-mgmt-netapp = [ - {file = "azure-mgmt-netapp-5.1.0.zip", hash = "sha256:306088088ee10e86c4cf24cc82a9ca619db5cdfc0da3fa207d00ec7f77f06e8e"}, - {file = "azure_mgmt_netapp-5.1.0-py2.py3-none-any.whl", hash = "sha256:c867a3f0be3b1b3e79e8a1098ba3a081573d0d7b1a50ec9a681bef5c799acb2d"}, + {file = "azure-mgmt-netapp-4.0.0.zip", hash = "sha256:7195e413a0764684cd42bec9e429c13c290db9ab5c465dbed586a6f6d0ec8a42"}, + {file = "azure_mgmt_netapp-4.0.0-py2.py3-none-any.whl", hash = "sha256:19656876cc459a65a34ef239195774f99c03d00a0259cb1d1d27025aa0c1d616"}, ] azure-mgmt-network = [ - {file = "azure-mgmt-network-19.3.0.zip", hash = "sha256:0b6a1ccdffd76e057ab16a6c319740a0ca68d59fedf7e9c02f2437396e72aa11"}, - {file = "azure_mgmt_network-19.3.0-py2.py3-none-any.whl", hash = "sha256:00e391243ed772ebfe551dec3a3f50c4001ac622a4c5504ef4453001f8c63433"}, + {file = "azure-mgmt-network-19.0.0.zip", hash = "sha256:5e39a26ae81fa58c13c02029700f8c7b22c3fd832a294c543e3156a91b9459e8"}, + {file = "azure_mgmt_network-19.0.0-py2.py3-none-any.whl", hash = "sha256:4585c5eedcb8783c2840feef1d66843849f39835d7e3f2ec8a5af834fd7b949e"}, ] azure-mgmt-nspkg = [ {file = "azure-mgmt-nspkg-3.0.2.zip", hash = "sha256:8b2287f671529505b296005e6de9150b074344c2c7d1c805b3f053d081d58c52"}, @@ -2483,16 +2487,16 @@ azure-mgmt-privatedns = [ {file = "azure_mgmt_privatedns-1.0.0-py2.py3-none-any.whl", hash = "sha256:683a3eedb65b40c56b08b5636d2c1d125db58d536989a858fed8661d1ec011b6"}, ] azure-mgmt-rdbms = [ - {file = "azure-mgmt-rdbms-10.0.0.zip", hash = "sha256:bdc479b3bbcac423943d63e746a81dd5fc80b46a4dbb4393e760016e3fa4f74a"}, - {file = "azure_mgmt_rdbms-10.0.0-py2.py3-none-any.whl", hash = "sha256:18f4d06ce686ece017f456e025710efffd48e19b82c9a7475c3903e5e572b767"}, + {file = "azure-mgmt-rdbms-9.1.0.zip", hash = "sha256:f738d9e6db8f6da6bb4e84e59dd0548c8adef948357a447337e78d1035ac960a"}, + {file = "azure_mgmt_rdbms-9.1.0-py2.py3-none-any.whl", hash = "sha256:f9b36998e080c9f7d84554fbdd532273719113a84bda5ae67ae6e62d747c2661"}, ] azure-mgmt-recoveryservices = [ {file = "azure-mgmt-recoveryservices-2.0.0.zip", hash = "sha256:a7d3137d5c460f50ac2d44061d60a70b4f2779d4ca844b77419b5725e65e09be"}, {file = "azure_mgmt_recoveryservices-2.0.0-py2.py3-none-any.whl", hash = "sha256:6fd8c67147e0b143ae57d457bd34898d1c31cae76ee6ac9bd622f6e5c338dd22"}, ] azure-mgmt-recoveryservicesbackup = [ - {file = "azure-mgmt-recoveryservicesbackup-3.0.0.zip", hash = "sha256:1992486b28ddd6d4f597fd3004217cd2caf4f4dc8a0ce71226b5ae767ace3a18"}, - {file = "azure_mgmt_recoveryservicesbackup-3.0.0-py2.py3-none-any.whl", hash = "sha256:1ed5da968942a3be1fd8ca81ba513915b7e6c6c713b49c3801a9eec51a0ce996"}, + {file = "azure-mgmt-recoveryservicesbackup-0.15.0.zip", hash = "sha256:cb96a46c976a5d9b118be99e72ad68a51d587bdc93c4d6e51a9ff38e25c4a856"}, + {file = "azure_mgmt_recoveryservicesbackup-0.15.0-py2.py3-none-any.whl", hash = "sha256:76530c85b7fefb68a6c2d3ea930871373e0e140e8ba0ffcd0292aede1a24237c"}, ] azure-mgmt-redhatopenshift = [ {file = "azure-mgmt-redhatopenshift-1.0.0.zip", hash = "sha256:94cd41f1ebd82e40620fd3e6d88f666b5c19ac7cf8b4e8edadb9721bd7c80980"}, @@ -2511,8 +2515,8 @@ azure-mgmt-reservations = [ {file = "azure_mgmt_reservations-0.6.0-py2.py3-none-any.whl", hash = "sha256:e592ebf163f9641fc4367202b470ee7c85ba221a3b979a0045c693002cc2eb59"}, ] azure-mgmt-resource = [ - {file = "azure-mgmt-resource-20.0.0.zip", hash = "sha256:622dca4484be64f9f5ce335d327dffabf3e71e14e8a3f4a1051dc85a5c3ebbca"}, - {file = "azure_mgmt_resource-20.0.0-py2.py3-none-any.whl", hash = "sha256:0ebad05a946e27c17d5a86ea5a68b2d9a0142257656ae8211dee9fc191c849b7"}, + {file = "azure-mgmt-resource-19.0.0.zip", hash = "sha256:bbb60bb9419633c2339569d4e097908638c7944e782b5aef0f5d9535085a9100"}, + {file = "azure_mgmt_resource-19.0.0-py2.py3-none-any.whl", hash = "sha256:6902e62510f9500fd907a6f9187f61ee7d5fff18217d808bd650cd1092ad6233"}, ] azure-mgmt-search = [ {file = "azure-mgmt-search-8.0.0.zip", hash = "sha256:a96d50c88507233a293e757202deead980c67808f432b8e897c4df1ca088da7e"}, @@ -2534,10 +2538,6 @@ azure-mgmt-servicefabricmanagedclusters = [ {file = "azure-mgmt-servicefabricmanagedclusters-1.0.0.zip", hash = "sha256:109ca3a251ebb7ddb35a0f8829614a4daa7065a16bc13b52c8422ee7f9995ce8"}, {file = "azure_mgmt_servicefabricmanagedclusters-1.0.0-py2.py3-none-any.whl", hash = "sha256:b791eb22f48119548f218cbad10ce29aa11fa8e9c0aca2ca88a98c859605056d"}, ] -azure-mgmt-servicelinker = [ - {file = "azure-mgmt-servicelinker-1.0.0b1.zip", hash = "sha256:4f70d3bcd98ba539bfef870e3c497ebdc5efed3200c2627a61718baa9ab21a61"}, - {file = "azure_mgmt_servicelinker-1.0.0b1-py2.py3-none-any.whl", hash = "sha256:b0e5ab1db51ec4264d4144728a69d9a5c0dfde86df8b4fadddd0fd6b6e3f6e3a"}, -] azure-mgmt-signalr = [ {file = "azure-mgmt-signalr-1.0.0.zip", hash = "sha256:43fe90b5c5eb5aa00afcaf2895f1d4417f89ddb7f76bd61204e1253a6767ef7c"}, {file = "azure_mgmt_signalr-1.0.0-py2.py3-none-any.whl", hash = "sha256:d7154ee7e75bcb72af8e7a9ea2365879aa333d5f83266c26400a9a36e4a68f2b"}, @@ -2555,8 +2555,8 @@ azure-mgmt-storage = [ {file = "azure_mgmt_storage-19.0.0-py2.py3-none-any.whl", hash = "sha256:d4960693a4e2aa046b510df13c2071df2eb3f99925384a127d843a3b969fc54b"}, ] azure-mgmt-synapse = [ - {file = "azure-mgmt-synapse-2.1.0b3.zip", hash = "sha256:fe58c1b124a035c0d67ac2190feb7deb5d1af7992bad52ecbe1d8b45ae383431"}, - {file = "azure_mgmt_synapse-2.1.0b3-py2.py3-none-any.whl", hash = "sha256:9e862ffd0f901d2dc88ee50947a0b3df43e8a018b8129c156918fd7e8818d01b"}, + {file = "azure-mgmt-synapse-2.0.0.zip", hash = "sha256:bec6bdfaeb55b4fdd159f2055e8875bf50a720bb0fce80a816e92a2359b898c8"}, + {file = "azure_mgmt_synapse-2.0.0-py2.py3-none-any.whl", hash = "sha256:e901274009be843a7bf2eedeab32c0941fabb2addea9a1ad1560395073965f0f"}, ] azure-mgmt-trafficmanager = [ {file = "azure-mgmt-trafficmanager-0.51.0.zip", hash = "sha256:fc8ae77022cfe52fda4379a2f31e0b857574d536e41291a7b569b5c0f4104186"}, @@ -2567,8 +2567,8 @@ azure-mgmt-web = [ {file = "azure_mgmt_web-4.0.0-py2.py3-none-any.whl", hash = "sha256:cfa59514268f93e6719e01f5a4aa61b8c1bf88fa185272bb63309fba785ff199"}, ] azure-multiapi-storage = [ - {file = "azure-multiapi-storage-0.7.0.tar.gz", hash = "sha256:cd4f184be8c9ca8aca969f93ed50dc7fe556d28ca11520440fc182cf876abdf9"}, - {file = "azure_multiapi_storage-0.7.0-py2.py3-none-any.whl", hash = "sha256:472e1a530ac362318a1dbd815584665d4fba46e4cad96f7245b6b272c2a8ea1a"}, + {file = "azure-multiapi-storage-0.6.2.tar.gz", hash = "sha256:74061f99730fa82c54d9b8ab3c7d6e219da3f30912740ecf0456b20cb3555ebc"}, + {file = "azure_multiapi_storage-0.6.2-py2.py3-none-any.whl", hash = "sha256:bfea3d00237a2b03de7c28c4479a5390b01ac2917f8335b3c5a4a4b60c67c800"}, ] azure-nspkg = [ {file = "azure-nspkg-3.0.2.zip", hash = "sha256:e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0"}, @@ -2584,8 +2584,8 @@ azure-synapse-accesscontrol = [ {file = "azure_synapse_accesscontrol-0.5.0-py2.py3-none-any.whl", hash = "sha256:0bb2b4f9f04e781781901f1790fe6fa36d1455ce8c287185b92af737b1fe89bd"}, ] azure-synapse-artifacts = [ - {file = "azure-synapse-artifacts-0.9.0.zip", hash = "sha256:5e1d8f03939eafe29c301659c7b819053513be6f224861388b0048ca62e7a75d"}, - {file = "azure_synapse_artifacts-0.9.0-py2.py3-none-any.whl", hash = "sha256:b33462f3a4bd0ab1c17b0e0959a59278a7ae526dc096e3c76d2e6b356666b836"}, + {file = "azure-synapse-artifacts-0.8.0.zip", hash = "sha256:3d4fdfd0bd666984f7bdc7bc0c7a6018c35a5d46a81a32dd193b07c03b528b72"}, + {file = "azure_synapse_artifacts-0.8.0-py2.py3-none-any.whl", hash = "sha256:9d75fb91ae7bca8a64ebaf6f90d32c2bc481eb9d3c14983afb168938267cb0a3"}, ] azure-synapse-managedprivateendpoints = [ {file = "azure-synapse-managedprivateendpoints-0.3.0.zip", hash = "sha256:7cdd48b99f5f8f181166feaa87d820eafe8a6299ca9577e7a0ba9f6420d7a116"}, @@ -2672,10 +2672,6 @@ chardet = [ {file = "chardet-3.0.4-py2.py3-none-any.whl", hash = "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691"}, {file = "chardet-3.0.4.tar.gz", hash = "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae"}, ] -charset-normalizer = [ - {file = "charset-normalizer-2.0.9.tar.gz", hash = "sha256:b0b883e8e874edfdece9c28f314e3dd5badf067342e42fb162203335ae61aa2c"}, - {file = "charset_normalizer-2.0.9-py3-none-any.whl", hash = "sha256:1eecaa09422db5be9e29d7fc65664e6c33bd06f9ced7838578ba40d58bdf3721"}, -] colorama = [ {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, @@ -2709,12 +2705,12 @@ fabric = [ {file = "fabric-2.6.0.tar.gz", hash = "sha256:47f184b070272796fd2f9f0436799e18f2ccba4ee8ee587796fca192acd46cd2"}, ] humanfriendly = [ - {file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"}, - {file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"}, + {file = "humanfriendly-9.2-py2.py3-none-any.whl", hash = "sha256:332da98c24cc150efcc91b5508b19115209272bfdf4b0764a56795932f854271"}, + {file = "humanfriendly-9.2.tar.gz", hash = "sha256:f7dba53ac7935fd0b4a2fc9a29e316ddd9ea135fb3052d3d0279d10c18ff9c48"}, ] idna = [ - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, + {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"}, + {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"}, ] importlib-metadata = [ {file = "importlib_metadata-4.8.2-py3-none-any.whl", hash = "sha256:53ccfd5c134223e497627b9815d5030edf77d2ed573922f7a0b8f8bb81a1c100"}, @@ -2746,15 +2742,15 @@ jmespath = [ {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"}, ] jsondiff = [ - {file = "jsondiff-1.3.0.tar.gz", hash = "sha256:5122bf4708a031b02db029366184a87c5d0ddd5a327a5884ee6cf0193e599d71"}, + {file = "jsondiff-1.2.0.tar.gz", hash = "sha256:34941bc431d10aa15828afe1cbb644977a114e75eef6cc74fb58951312326303"}, ] jsonschema = [ {file = "jsonschema-4.2.1-py3-none-any.whl", hash = "sha256:2a0f162822a64d95287990481b45d82f096e99721c86534f48201b64ebca6e8c"}, {file = "jsonschema-4.2.1.tar.gz", hash = "sha256:390713469ae64b8a58698bb3cbc3859abe6925b565a973f87323ef21b09a27a8"}, ] knack = [ - {file = "knack-0.9.0-py3-none-any.whl", hash = "sha256:d609abcca2604086b2e41935f7ffade2f83b709891af87df5088d23240ecbecc"}, - {file = "knack-0.9.0.tar.gz", hash = "sha256:7fcab17585c0236885eaef311c01a1e626d84c982aabcac81703afda3f89c81f"}, + {file = "knack-0.8.2-py3-none-any.whl", hash = "sha256:5239f85873f524e213e81af7b784bfc08b654006eb418ae0042b9019552399e9"}, + {file = "knack-0.8.2.tar.gz", hash = "sha256:4eaa50a1c5e79d1c5c8e5e1705b661721b0b83a089695e59e229cc26c64963b9"}, ] markupsafe = [ {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, @@ -2946,10 +2942,6 @@ pyreadline = [ {file = "pyreadline-2.1.win32.exe", hash = "sha256:65540c21bfe14405a3a77e4c085ecfce88724743a4ead47c66b84defcf82c32e"}, {file = "pyreadline-2.1.zip", hash = "sha256:4530592fc2e85b25b1a9f79664433da09237c1a270e4d78ea5aa3a2c7229e2d1"}, ] -pyreadline3 = [ - {file = "pyreadline3-3.3-py3-none-any.whl", hash = "sha256:0003fd0079d152ecbd8111202c5a7dfa6a5569ffd65b235e45f3c2ecbee337b4"}, - {file = "pyreadline3-3.3.tar.gz", hash = "sha256:ff3b5a1ac0010d0967869f723e687d42cabc7dccf33b14934c92aa5168d260b3"}, -] pyrsistent = [ {file = "pyrsistent-0.18.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72"}, {file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d"}, @@ -2986,6 +2978,10 @@ python-json-logger = [ {file = "python-json-logger-2.0.2.tar.gz", hash = "sha256:202a4f29901a4b8002a6d1b958407eeb2dd1d83c18b18b816f5b64476dde9096"}, {file = "python_json_logger-2.0.2-py3-none-any.whl", hash = "sha256:99310d148f054e858cd5f4258794ed6777e7ad2c3fd7e1c1b527f1cba4d08420"}, ] +pytz = [ + {file = "pytz-2019.1-py2.py3-none-any.whl", hash = "sha256:303879e36b721603cc54604edcac9d20401bdbe31e1e4fdee5b9f98d5d31dfda"}, + {file = "pytz-2019.1.tar.gz", hash = "sha256:d747dd3d23d77ef44c6a3526e274af6efeb0a6f1afd5a69ba4d5be4098c8e141"}, +] pywin32 = [ {file = "pywin32-302-cp310-cp310-win32.whl", hash = "sha256:251b7a9367355ccd1a4cd69cd8dd24bd57b29ad83edb2957cfa30f7ed9941efa"}, {file = "pywin32-302-cp310-cp310-win_amd64.whl", hash = "sha256:79cf7e6ddaaf1cd47a9e50cc74b5d770801a9db6594464137b1b86aa91edafcc"}, @@ -3034,8 +3030,8 @@ pyyaml = [ {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] requests = [ - {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"}, - {file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"}, + {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"}, + {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"}, ] requests-oauthlib = [ {file = "requests-oauthlib-1.3.0.tar.gz", hash = "sha256:b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a"}, @@ -3110,6 +3106,10 @@ urllib3 = [ {file = "urllib3-1.26.7-py2.py3-none-any.whl", hash = "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844"}, {file = "urllib3-1.26.7.tar.gz", hash = "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece"}, ] +vsts = [ + {file = "vsts-0.1.25-py3-none-any.whl", hash = "sha256:c5595a42c9447888ebc91494d2db03c2b867cbca9f1f5f05c113261b92383e35"}, + {file = "vsts-0.1.25.tar.gz", hash = "sha256:da179160121f5b38be061dbff29cd2b60d5d029b2207102454d77a7114e64f97"}, +] websocket-client = [ {file = "websocket_client-0.56.0-py2.py3-none-any.whl", hash = "sha256:1151d5fb3a62dc129164292e1227655e4bbc5dd5340a5165dfae61128ec50aa9"}, {file = "websocket_client-0.56.0.tar.gz", hash = "sha256:1fd5520878b68b84b5748bb30e592b10d0a91529d5383f74f4964e72b297fd3a"}, diff --git a/.devcontainer/pyproject.toml b/.devcontainer/pyproject.toml index 1a82d42bb4..37147b113d 100644 --- a/.devcontainer/pyproject.toml +++ b/.devcontainer/pyproject.toml @@ -14,7 +14,7 @@ python-json-logger = "*" ansible = "==2.10.7" terraform-bin = "*" "ruamel.yaml" = "*" -azure-cli = "2.31.0" +azure-cli = "2.29.0" [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/.devcontainer/requirements.txt b/.devcontainer/requirements.txt index 73767217a3..c9f84765bb 100644 --- a/.devcontainer/requirements.txt +++ b/.devcontainer/requirements.txt @@ -7,17 +7,18 @@ argcomplete==1.12.3; python_full_version >= "3.6.0" attrs==21.2.0; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7" azure-appconfiguration==1.1.1; python_full_version >= "3.6.0" azure-batch==11.0.0; python_full_version >= "3.6.0" -azure-cli-core==2.31.0; python_full_version >= "3.6.0" +azure-cli-core==2.29.0; python_full_version >= "3.6.0" azure-cli-telemetry==1.0.6; python_full_version >= "3.6.0" -azure-cli==2.31.0; python_full_version >= "3.6.0" +azure-cli==2.29.0; python_full_version >= "3.6.0" azure-common==1.1.27; python_full_version >= "3.6.0" azure-core==1.21.1; python_full_version >= "3.6.0" azure-cosmos==3.2.0; python_full_version >= "3.6.0" azure-datalake-store==0.0.52; python_full_version >= "3.6.0" +azure-functions-devops-build==0.0.22; python_full_version >= "3.6.0" azure-graphrbac==0.60.0; python_full_version >= "3.6.0" azure-identity==1.7.1; python_full_version >= "3.6.0" azure-keyvault-administration==4.0.0b3; python_full_version >= "3.6.0" -azure-keyvault-keys==4.5.0b5; python_full_version >= "3.6.0" +azure-keyvault-keys==4.4.0; python_full_version >= "3.6.0" azure-keyvault==1.1.0; python_full_version >= "3.6.0" azure-loganalytics==0.1.1; python_full_version >= "3.6.0" azure-mgmt-advisor==9.0.0; python_full_version >= "3.6.0" @@ -30,31 +31,31 @@ azure-mgmt-batchai==7.0.0b1; python_full_version >= "3.6.0" azure-mgmt-billing==6.0.0; python_full_version >= "3.6.0" azure-mgmt-botservice==0.3.0; python_full_version >= "3.6.0" azure-mgmt-cdn==11.0.0; python_full_version >= "3.6.0" -azure-mgmt-cognitiveservices==13.0.0; python_full_version >= "3.6.0" -azure-mgmt-compute==23.1.0; python_full_version >= "3.6.0" +azure-mgmt-cognitiveservices==12.0.0; python_full_version >= "3.6.0" +azure-mgmt-compute==23.0.0; python_full_version >= "3.6.0" azure-mgmt-consumption==2.0.0; python_full_version >= "3.6.0" -azure-mgmt-containerinstance==9.1.0; python_full_version >= "3.6.0" -azure-mgmt-containerregistry==8.2.0; python_full_version >= "3.6.0" +azure-mgmt-containerinstance==9.0.0; python_full_version >= "3.6.0" +azure-mgmt-containerregistry==8.1.0; python_full_version >= "3.6.0" azure-mgmt-containerservice==16.1.0; python_full_version >= "3.6.0" -azure-mgmt-core==1.3.0; python_full_version >= "3.6.0" -azure-mgmt-cosmosdb==7.0.0b2; python_full_version >= "3.6.0" +azure-mgmt-core==1.2.2; python_full_version >= "3.6.0" +azure-mgmt-cosmosdb==6.4.0; python_full_version >= "3.6.0" azure-mgmt-databoxedge==1.0.0; python_full_version >= "3.6.0" azure-mgmt-datalake-analytics==0.2.1; python_full_version >= "3.6.0" azure-mgmt-datalake-nspkg==3.0.1; python_full_version >= "3.6.0" azure-mgmt-datalake-store==0.5.0; python_full_version >= "3.6.0" -azure-mgmt-datamigration==10.0.0; python_full_version >= "3.6.0" +azure-mgmt-datamigration==9.0.0; python_full_version >= "3.6.0" azure-mgmt-deploymentmanager==0.2.0; python_full_version >= "3.6.0" azure-mgmt-devtestlabs==4.0.0; python_full_version >= "3.6.0" azure-mgmt-dns==8.0.0; python_full_version >= "3.6.0" azure-mgmt-eventgrid==9.0.0; python_full_version >= "3.6.0" azure-mgmt-eventhub==9.1.0; python_full_version >= "3.6.0" azure-mgmt-extendedlocation==1.0.0; python_full_version >= "3.6.0" -azure-mgmt-hdinsight==9.0.0; python_full_version >= "3.6.0" +azure-mgmt-hdinsight==8.0.0; python_full_version >= "3.6.0" azure-mgmt-imagebuilder==0.4.0; python_full_version >= "3.6.0" azure-mgmt-iotcentral==9.0.0; python_full_version >= "3.6.0" azure-mgmt-iothub==2.1.0; python_full_version >= "3.6.0" azure-mgmt-iothubprovisioningservices==0.3.0; python_full_version >= "3.6.0" -azure-mgmt-keyvault==9.3.0; python_full_version >= "3.6.0" +azure-mgmt-keyvault==9.1.0; python_full_version >= "3.6.0" azure-mgmt-kusto==0.3.0; python_full_version >= "3.6.0" azure-mgmt-loganalytics==11.0.0; python_full_version >= "3.6.0" azure-mgmt-managedservices==1.0.0; python_full_version >= "3.6.0" @@ -64,53 +65,51 @@ azure-mgmt-marketplaceordering==1.1.0; python_full_version >= "3.6.0" azure-mgmt-media==7.0.0; python_full_version >= "3.6.0" azure-mgmt-monitor==2.0.0; python_full_version >= "3.6.0" azure-mgmt-msi==0.2.0; python_full_version >= "3.6.0" -azure-mgmt-netapp==5.1.0; python_full_version >= "3.6.0" -azure-mgmt-network==19.3.0; python_full_version >= "3.6.0" +azure-mgmt-netapp==4.0.0; python_full_version >= "3.6.0" +azure-mgmt-network==19.0.0; python_full_version >= "3.6.0" azure-mgmt-nspkg==3.0.2; python_full_version >= "3.6.0" azure-mgmt-policyinsights==1.0.0; python_full_version >= "3.6.0" azure-mgmt-privatedns==1.0.0; python_full_version >= "3.6.0" -azure-mgmt-rdbms==10.0.0; python_full_version >= "3.6.0" +azure-mgmt-rdbms==9.1.0; python_full_version >= "3.6.0" azure-mgmt-recoveryservices==2.0.0; python_full_version >= "3.6.0" -azure-mgmt-recoveryservicesbackup==3.0.0; python_full_version >= "3.6.0" +azure-mgmt-recoveryservicesbackup==0.15.0; python_full_version >= "3.6.0" azure-mgmt-redhatopenshift==1.0.0; python_full_version >= "3.6.0" azure-mgmt-redis==13.0.0; python_full_version >= "3.6.0" azure-mgmt-relay==0.1.0; python_full_version >= "3.6.0" azure-mgmt-reservations==0.6.0; python_full_version >= "3.6.0" -azure-mgmt-resource==20.0.0; python_full_version >= "3.6.0" +azure-mgmt-resource==19.0.0; python_full_version >= "3.6.0" azure-mgmt-search==8.0.0; python_full_version >= "3.6.0" azure-mgmt-security==2.0.0b1; python_full_version >= "3.6.0" azure-mgmt-servicebus==6.0.0; python_full_version >= "3.6.0" azure-mgmt-servicefabric==1.0.0; python_full_version >= "3.6.0" azure-mgmt-servicefabricmanagedclusters==1.0.0; python_full_version >= "3.6.0" -azure-mgmt-servicelinker==1.0.0b1; python_full_version >= "3.6.0" azure-mgmt-signalr==1.0.0; python_full_version >= "3.6.0" azure-mgmt-sql==3.0.1; python_full_version >= "3.6.0" azure-mgmt-sqlvirtualmachine==1.0.0b1; python_full_version >= "3.6.0" azure-mgmt-storage==19.0.0; python_full_version >= "3.6.0" -azure-mgmt-synapse==2.1.0b3; python_full_version >= "3.6.0" +azure-mgmt-synapse==2.0.0; python_full_version >= "3.6.0" azure-mgmt-trafficmanager==0.51.0; python_full_version >= "3.6.0" azure-mgmt-web==4.0.0; python_full_version >= "3.6.0" -azure-multiapi-storage==0.7.0; python_full_version >= "3.6.0" +azure-multiapi-storage==0.6.2; python_full_version >= "3.6.0" azure-nspkg==3.0.2; python_full_version >= "3.6.0" azure-storage-common==1.4.2; python_full_version >= "3.6.0" azure-synapse-accesscontrol==0.5.0; python_full_version >= "3.6.0" -azure-synapse-artifacts==0.9.0; python_full_version >= "3.6.0" +azure-synapse-artifacts==0.8.0; python_full_version >= "3.6.0" azure-synapse-managedprivateendpoints==0.3.0; python_full_version >= "3.6.0" azure-synapse-spark==0.2.0; python_full_version >= "3.6.0" bcrypt==3.2.0; python_version >= "3.6" and python_full_version >= "3.6.0" boto3==1.20.11; python_version >= "3.6" botocore==1.23.11; python_version >= "3.6" -certifi==2021.10.8; python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") and python_version >= "3.6" -cffi==1.15.0; python_version >= "3.6" and python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") -chardet==3.0.4; python_full_version >= "3.6.0" -charset-normalizer==2.0.9; python_version >= "3.6" and python_full_version >= "3.6.0" +certifi==2021.10.8; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" +cffi==1.15.0; python_version >= "3.6" and python_full_version >= "3.6.0" and python_version < "4" +chardet==3.0.4; python_version >= "3.6" and python_full_version >= "3.6.0" colorama==0.4.4; python_full_version >= "3.6.0" cryptography==3.3.2 deprecated==1.2.13; python_version >= "3.6" and python_full_version >= "3.6.0" distro==1.6.0; python_full_version >= "3.6.0" fabric==2.6.0; python_full_version >= "3.6.0" -humanfriendly==10.0; python_full_version >= "3.6.0" -idna==3.3; python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") and python_version >= "3.6" +humanfriendly==9.2; python_full_version >= "3.6.0" +idna==2.10; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" importlib-metadata==4.8.2; python_version == "3.7" and python_full_version >= "3.6.0" importlib-resources==5.4.0; python_version < "3.9" and python_version >= "3.7" invoke==1.6.0; python_full_version >= "3.6.0" @@ -118,10 +117,10 @@ isodate==0.6.0; python_full_version >= "3.6.0" javaproperties==0.5.2; python_full_version >= "3.6.0" and python_version < "4" jinja2==3.0.3; python_version >= "3.6" jmespath==0.10.0; python_full_version >= "3.6.0" and python_version >= "3.6" -jsondiff==1.3.0; python_full_version >= "3.6.0" +jsondiff==1.2.0; python_full_version >= "3.6.0" jsonschema==4.2.1; python_version >= "3.7" -knack==0.9.0; python_full_version >= "3.6.0" -markupsafe==2.0.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6" +knack==0.8.2; python_full_version >= "3.6.0" +markupsafe==2.0.1; python_full_version >= "3.6.0" and python_version >= "3.6" msal-extensions==0.3.0; python_full_version >= "3.6.0" msal==1.16.0; python_full_version >= "3.6.0" msrest==0.6.21; python_full_version >= "3.6.0" @@ -133,34 +132,35 @@ pathlib2==2.3.6; python_full_version >= "3.6.0" pkginfo==1.8.2; python_full_version >= "3.6.0" portalocker==1.7.1 psutil==5.8.0; python_full_version >= "3.6.0" -pycparser==2.21; python_version >= "3.6" and python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") +pycparser==2.21; python_version >= "3.6" and python_full_version >= "3.6.0" and python_version < "4" pygithub==1.55; python_version >= "3.6" and python_full_version >= "3.6.0" pygments==2.10.0; python_version >= "3.5" and python_full_version >= "3.6.0" pyjwt==2.3.0; python_version >= "3.6" and python_full_version >= "3.6.0" pynacl==1.4.0; python_version >= "3.6" and python_full_version >= "3.6.0" -pyopenssl==21.0.0; python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") +pyopenssl==21.0.0; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" pyparsing==3.0.6; python_version >= "3.6" and python_full_version >= "3.6.0" -pyreadline3==3.3; sys_platform == "win32" and python_version >= "3.8" and python_full_version >= "3.6.0" -pyreadline==2.1; sys_platform == "win32" and python_version < "3.8" and python_full_version >= "3.6.0" +pyreadline==2.1; sys_platform == "win32" and python_full_version >= "3.6.0" pyrsistent==0.18.0; python_version >= "3.7" pysocks==1.7.1; python_full_version >= "3.6.0" and python_version >= "3.6" python-dateutil==2.8.2; python_full_version >= "3.6.0" and python_version >= "3.6" python-json-logger==2.0.2; python_version >= "3.5" +pytz==2019.1; python_full_version >= "3.6.0" pywin32==302; platform_system == "Windows" and python_full_version >= "3.6.0" pyyaml==6.0; python_version >= "3.6" requests-oauthlib==1.3.0; python_full_version >= "3.6.0" -requests==2.26.0; python_version >= "3.6" and python_full_version >= "3.6.0" +requests==2.25.1; python_version >= "3.6" and python_full_version >= "3.6.0" ruamel.yaml.clib==0.2.6; platform_python_implementation == "CPython" and python_version < "3.10" and python_version >= "3.5" ruamel.yaml==0.17.17; python_version >= "3" s3transfer==0.5.0; python_version >= "3.6" scp==0.13.6; python_full_version >= "3.6.0" semver==2.13.0; python_full_version >= "3.6.0" -six==1.16.0; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") +six==1.16.0; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" sshtunnel==0.1.5; python_full_version >= "3.6.0" tabulate==0.8.9; python_full_version >= "3.6.0" terraform-bin==1.0.1 typing-extensions==4.0.0; python_version < "3.8" and python_version >= "3.7" -urllib3==1.26.7; python_full_version >= "3.6.0" and python_version < "4" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6") and python_version >= "3.6" +urllib3==1.26.7; python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6" +vsts==0.1.25; python_full_version >= "3.6.0" websocket-client==0.56.0; python_full_version >= "3.6.0" wrapt==1.13.3; python_version >= "3.6" and python_full_version >= "3.6.0" xmltodict==0.12.0; python_full_version >= "3.6.0" diff --git a/cli/licenses.py b/cli/licenses.py index 159700e311..446ae4fc43 100644 --- a/cli/licenses.py +++ b/cli/licenses.py @@ -87,7 +87,7 @@ }, { "Name": "azure-cli-core", - "Version": "2.31.0", + "Version": "2.29.0", "Summary": "Microsoft Azure Command-Line Tools Core Module", "Home-page": "https://github.com/Azure/azure-cli", "Author": "Microsoft Corporation", @@ -109,7 +109,7 @@ }, { "Name": "azure-cli", - "Version": "2.31.0", + "Version": "2.29.0", "Summary": "Microsoft Azure Command-Line Tools", "Home-page": "https://github.com/Azure/azure-cli", "Author": "Microsoft Corporation", @@ -158,6 +158,17 @@ "License URL": "https://api.github.com/repos/azure/azure-data-lake-store-python/license", "License repo": "\ufeffThe MIT License (MIT)\n\nCopyright (c) 2016 Microsoft\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" }, + { + "Name": "azure-functions-devops-build", + "Version": "0.0.22", + "Summary": "Python package for integrating Azure Functions with Azure DevOps. Specifically made for the Azure CLI", + "Home-page": "https://github.com/Azure/azure-functions-devops-build", + "Author": "Oliver Dolk, Hanzhang Zeng", + "License": "MIT License", + "License URL": "https://api.github.com/repos/azure/azure-functions-devops-build/license", + "License repo": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n", + "License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + }, { "Name": "azure-graphrbac", "Version": "0.60.0", @@ -187,9 +198,9 @@ }, { "Name": "azure-keyvault-keys", - "Version": "4.5.0b5", + "Version": "4.4.0", "Summary": "Microsoft Azure Key Vault Keys Client Library for Python", - "Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys", + "Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-keys", "Author": "Microsoft Corporation", "License": "MIT License" }, @@ -327,7 +338,7 @@ }, { "Name": "azure-mgmt-cognitiveservices", - "Version": "13.0.0", + "Version": "12.0.0", "Summary": "Microsoft Azure Cognitive Services Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -338,7 +349,7 @@ }, { "Name": "azure-mgmt-compute", - "Version": "23.1.0", + "Version": "23.0.0", "Summary": "Microsoft Azure Compute Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -360,7 +371,7 @@ }, { "Name": "azure-mgmt-containerinstance", - "Version": "9.1.0", + "Version": "9.0.0", "Summary": "Microsoft Azure Container Instance Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -371,7 +382,7 @@ }, { "Name": "azure-mgmt-containerregistry", - "Version": "8.2.0", + "Version": "8.1.0", "Summary": "Microsoft Azure Container Registry Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -393,15 +404,15 @@ }, { "Name": "azure-mgmt-core", - "Version": "1.3.0", + "Version": "1.2.2", "Summary": "Microsoft Azure Management Core Library for Python", - "Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-mgmt-core", + "Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/core/azure-mgmt-core", "Author": "Microsoft Corporation", "License": "MIT License" }, { "Name": "azure-mgmt-cosmosdb", - "Version": "7.0.0b2", + "Version": "6.4.0", "Summary": "Microsoft Azure Cosmos DB Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -456,7 +467,7 @@ }, { "Name": "azure-mgmt-datamigration", - "Version": "10.0.0", + "Version": "9.0.0", "Summary": "Microsoft Azure Data Migration Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -533,7 +544,7 @@ }, { "Name": "azure-mgmt-hdinsight", - "Version": "9.0.0", + "Version": "8.0.0", "Summary": "Microsoft Azure HDInsight Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -588,7 +599,7 @@ }, { "Name": "azure-mgmt-keyvault", - "Version": "9.3.0", + "Version": "9.1.0", "Summary": "Microsoft Azure Keyvault Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -698,7 +709,7 @@ }, { "Name": "azure-mgmt-netapp", - "Version": "5.1.0", + "Version": "4.0.0", "Summary": "Microsoft Azure NetApp Files Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -709,7 +720,7 @@ }, { "Name": "azure-mgmt-network", - "Version": "19.3.0", + "Version": "19.0.0", "Summary": "Microsoft Azure Network Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -753,7 +764,7 @@ }, { "Name": "azure-mgmt-rdbms", - "Version": "10.0.0", + "Version": "9.1.0", "Summary": "Microsoft Azure RDBMS Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -775,8 +786,8 @@ }, { "Name": "azure-mgmt-recoveryservicesbackup", - "Version": "3.0.0", - "Summary": "Microsoft Azure Recoveryservicesbackup Management Client Library for Python", + "Version": "0.15.0", + "Summary": "Microsoft Azure Recovery Services Backup Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", "License": "MIT License", @@ -830,7 +841,7 @@ }, { "Name": "azure-mgmt-resource", - "Version": "20.0.0", + "Version": "19.0.0", "Summary": "Microsoft Azure Resource Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -894,17 +905,6 @@ "License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", "License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" }, - { - "Name": "azure-mgmt-servicelinker", - "Version": "1.0.0b1", - "Summary": "Microsoft Azure Servicelinker Management Client Library for Python", - "Home-page": "https://github.com/Azure/azure-sdk-for-python", - "Author": "Microsoft Corporation", - "License": "MIT License", - "License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license", - "License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", - "License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" - }, { "Name": "azure-mgmt-signalr", "Version": "1.0.0", @@ -951,7 +951,7 @@ }, { "Name": "azure-mgmt-synapse", - "Version": "2.1.0b3", + "Version": "2.0.0", "Summary": "Microsoft Azure Synapse Management Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -984,7 +984,7 @@ }, { "Name": "azure-multiapi-storage", - "Version": "0.7.0", + "Version": "0.6.2", "Summary": "Microsoft Azure Storage Client Library for Python with multi API version support.", "Home-page": "https://github.com/Azure/azure-multiapi-storage-python", "Author": "Microsoft Corporation", @@ -1028,7 +1028,7 @@ }, { "Name": "azure-synapse-artifacts", - "Version": "0.9.0", + "Version": "0.8.0", "Summary": "Microsoft Azure Synapse Artifacts Client Library for Python", "Home-page": "https://github.com/Azure/azure-sdk-for-python", "Author": "Microsoft Corporation", @@ -1119,17 +1119,6 @@ "License repo": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\f\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\f\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\f\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\f\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\f\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!\n", "License text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301\n USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random\n Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!\n" }, - { - "Name": "charset-normalizer", - "Version": "2.0.9", - "Summary": "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.", - "Home-page": "https://github.com/ousret/charset_normalizer", - "Author": "Ahmed TAHRI @Ousret", - "License": "MIT License", - "License URL": "https://api.github.com/repos/ousret/charset_normalizer/license", - "License repo": "MIT License\n\nCopyright (c) 2019 TAHRI Ahmed R.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.", - "License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" - }, { "Name": "colorama", "Version": "0.4.4", @@ -1183,7 +1172,7 @@ }, { "Name": "humanfriendly", - "Version": "10.0", + "Version": "9.2", "Summary": "Human friendly output for text interfaces using Python", "Home-page": "https://humanfriendly.readthedocs.io", "Author": "Peter Odding", @@ -1191,7 +1180,7 @@ }, { "Name": "idna", - "Version": "3.3", + "Version": "2.10", "Summary": "Internationalized Domain Names in Applications (IDNA)", "Home-page": "https://github.com/kjd/idna", "Author": "Kim Davies", @@ -1265,7 +1254,7 @@ }, { "Name": "jsondiff", - "Version": "1.3.0", + "Version": "1.2.0", "Summary": "Diff JSON and JSON-like structures in Python", "Home-page": "https://github.com/ZoomerAnalytics/jsondiff", "Author": "Zoomer Analytics LLC", @@ -1287,7 +1276,7 @@ }, { "Name": "knack", - "Version": "0.9.0", + "Version": "0.8.2", "Summary": "A Command-Line Interface framework", "Home-page": "https://github.com/microsoft/knack", "Author": "Microsoft Corporation", @@ -1525,6 +1514,14 @@ "License repo": "Copyright (c) 2011, Zakaria Zajac \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n", "License text": "BSD 2-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" }, + { + "Name": "pytz", + "Version": "2019.1", + "Summary": "World timezone definitions, modern and historical", + "Home-page": "http://pythonhosted.org/pytz", + "Author": "Stuart Bishop", + "License": "MIT" + }, { "Name": "PyYAML", "Version": "6.0", @@ -1546,7 +1543,7 @@ }, { "Name": "requests", - "Version": "2.26.0", + "Version": "2.25.1", "Summary": "Python HTTP for Humans.", "Home-page": "https://requests.readthedocs.io", "Author": "Kenneth Reitz", @@ -1660,6 +1657,17 @@ "Author": "Andrey Petrov", "License": "MIT" }, + { + "Name": "vsts", + "Version": "0.1.25", + "Summary": "Python wrapper around the VSTS APIs", + "Home-page": "https://github.com/Microsoft/vsts-python-api", + "Author": "Microsoft Corporation", + "License": "MIT License", + "License URL": "https://api.github.com/repos/microsoft/vsts-python-api/license", + "License repo": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n", + "License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + }, { "Name": "websocket-client", "Version": "0.56.0", diff --git a/docs/home/COMPONENTS.md b/docs/home/COMPONENTS.md index f3d373e209..eb662e7edb 100644 --- a/docs/home/COMPONENTS.md +++ b/docs/home/COMPONENTS.md @@ -67,17 +67,18 @@ Note that versions are default versions and can be changed in certain cases thro | attrs | 21.2.0 | https://www.attrs.org/ | MIT | | azure-appconfiguration | 1.1.1 | https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration | MIT License | | azure-batch | 11.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-cli-core | 2.31.0 | https://github.com/Azure/azure-cli | [MIT License](https://api.github.com/repos/azure/azure-cli/license) | +| azure-cli-core | 2.29.0 | https://github.com/Azure/azure-cli | [MIT License](https://api.github.com/repos/azure/azure-cli/license) | | azure-cli-telemetry | 1.0.6 | https://github.com/Azure/azure-cli | [MIT License](https://api.github.com/repos/azure/azure-cli/license) | -| azure-cli | 2.31.0 | https://github.com/Azure/azure-cli | [MIT License](https://api.github.com/repos/azure/azure-cli/license) | +| azure-cli | 2.29.0 | https://github.com/Azure/azure-cli | [MIT License](https://api.github.com/repos/azure/azure-cli/license) | | azure-common | 1.1.27 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-core | 1.21.1 | https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core | MIT License | | azure-cosmos | 3.2.0 | https://github.com/Azure/azure-documentdb-python | [MIT License](https://api.github.com/repos/azure/azure-documentdb-python/license) | | azure-datalake-store | 0.0.52 | https://github.com/Azure/azure-data-lake-store-python | [Other](https://api.github.com/repos/azure/azure-data-lake-store-python/license) | +| azure-functions-devops-build | 0.0.22 | https://github.com/Azure/azure-functions-devops-build | [MIT License](https://api.github.com/repos/azure/azure-functions-devops-build/license) | | azure-graphrbac | 0.60.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-identity | 1.7.1 | https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity | MIT License | | azure-keyvault-administration | 4.0.0b3 | https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration | MIT License | -| azure-keyvault-keys | 4.5.0b5 | https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys | MIT License | +| azure-keyvault-keys | 4.4.0 | https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-keys | MIT License | | azure-keyvault | 1.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-loganalytics | 0.1.1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-advisor | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | @@ -90,31 +91,31 @@ Note that versions are default versions and can be changed in certain cases thro | azure-mgmt-billing | 6.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-botservice | 0.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-cdn | 11.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-cognitiveservices | 13.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-compute | 23.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-cognitiveservices | 12.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-compute | 23.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-consumption | 2.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-containerinstance | 9.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-containerregistry | 8.2.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-containerinstance | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-containerregistry | 8.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-containerservice | 16.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-core | 1.3.0 | https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-mgmt-core | MIT License | -| azure-mgmt-cosmosdb | 7.0.0b2 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-core | 1.2.2 | https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/core/azure-mgmt-core | MIT License | +| azure-mgmt-cosmosdb | 6.4.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-databoxedge | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-datalake-analytics | 0.2.1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-datalake-nspkg | 3.0.1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-datalake-store | 0.5.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-datamigration | 10.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-datamigration | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-deploymentmanager | 0.2.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-devtestlabs | 4.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-dns | 8.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-eventgrid | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-eventhub | 9.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-extendedlocation | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-hdinsight | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-hdinsight | 8.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-imagebuilder | 0.4.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-iotcentral | 9.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-iothub | 2.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-iothubprovisioningservices | 0.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-keyvault | 9.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-keyvault | 9.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-kusto | 0.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-loganalytics | 11.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-managedservices | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | @@ -124,37 +125,36 @@ Note that versions are default versions and can be changed in certain cases thro | azure-mgmt-media | 7.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-monitor | 2.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-msi | 0.2.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-netapp | 5.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-network | 19.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-netapp | 4.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-network | 19.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-nspkg | 3.0.2 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-policyinsights | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-privatedns | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-rdbms | 10.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-rdbms | 9.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-recoveryservices | 2.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-recoveryservicesbackup | 3.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-recoveryservicesbackup | 0.15.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-redhatopenshift | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-redis | 13.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-relay | 0.1.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-reservations | 0.6.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-resource | 20.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-resource | 19.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-search | 8.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-security | 2.0.0b1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-servicebus | 6.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-servicefabric | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-servicefabricmanagedclusters | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-servicelinker | 1.0.0b1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-signalr | 1.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-sql | 3.0.1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-sqlvirtualmachine | 1.0.0b1 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-storage | 19.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-mgmt-synapse | 2.1.0b3 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-mgmt-synapse | 2.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-trafficmanager | 0.51.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-mgmt-web | 4.0.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-multiapi-storage | 0.7.0 | https://github.com/Azure/azure-multiapi-storage-python | [MIT License](https://api.github.com/repos/azure/azure-multiapi-storage-python/license) | +| azure-multiapi-storage | 0.6.2 | https://github.com/Azure/azure-multiapi-storage-python | [MIT License](https://api.github.com/repos/azure/azure-multiapi-storage-python/license) | | azure-nspkg | 3.0.2 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-storage-common | 1.4.2 | https://github.com/Azure/azure-storage-python | [MIT License](https://api.github.com/repos/azure/azure-storage-python/license) | | azure-synapse-accesscontrol | 0.5.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | -| azure-synapse-artifacts | 0.9.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | +| azure-synapse-artifacts | 0.8.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-synapse-managedprivateendpoints | 0.3.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | azure-synapse-spark | 0.2.0 | https://github.com/Azure/azure-sdk-for-python | [MIT License](https://api.github.com/repos/azure/azure-sdk-for-python/license) | | bcrypt | 3.2.0 | https://github.com/pyca/bcrypt/ | [Apache License 2.0](https://api.github.com/repos/pyca/bcrypt/license) | @@ -163,14 +163,13 @@ Note that versions are default versions and can be changed in certain cases thro | certifi | 2021.10.8 | https://certifiio.readthedocs.io/en/latest/ | MPL-2.0 | | cffi | 1.15.0 | http://cffi.readthedocs.org | MIT | | chardet | 3.0.4 | https://github.com/chardet/chardet | [GNU Lesser General Public License v2.1](https://api.github.com/repos/chardet/chardet/license) | -| charset-normalizer | 2.0.9 | https://github.com/ousret/charset_normalizer | [MIT License](https://api.github.com/repos/ousret/charset_normalizer/license) | | colorama | 0.4.4 | https://github.com/tartley/colorama | [BSD 3-Clause "New" or "Revised" License](https://api.github.com/repos/tartley/colorama/license) | | cryptography | 3.3.2 | https://github.com/pyca/cryptography | [Other](https://api.github.com/repos/pyca/cryptography/license) | | Deprecated | 1.2.13 | https://github.com/tantale/deprecated | [MIT License](https://api.github.com/repos/tantale/deprecated/license) | | Antergos Linux | 2015.10 (ISO-Rolling) | https://github.com/python-distro/distro | [Apache License 2.0](https://api.github.com/repos/python-distro/distro/license) | | fabric | 2.6.0 | http://fabfile.org | BSD | -| humanfriendly | 10.0 | https://humanfriendly.readthedocs.io | MIT | -| idna | 3.3 | https://github.com/kjd/idna | [BSD 3-Clause "New" or "Revised" License](https://api.github.com/repos/kjd/idna/license) | +| humanfriendly | 9.2 | https://humanfriendly.readthedocs.io | MIT | +| idna | 2.10 | https://github.com/kjd/idna | [BSD 3-Clause "New" or "Revised" License](https://api.github.com/repos/kjd/idna/license) | | importlib-metadata | 1.7.0 | http://importlib-metadata.readthedocs.io/ | Apache Software License | | importlib-resources | 5.4.0 | https://github.com/python/importlib_resources | [Other](https://api.github.com/repos/python/importlib_resources/license) | | invoke | 1.6.0 | http://docs.pyinvoke.org | BSD | @@ -178,11 +177,11 @@ Note that versions are default versions and can be changed in certain cases thro | javaproperties | 0.5.2 | https://github.com/jwodder/javaproperties | [MIT License](https://api.github.com/repos/jwodder/javaproperties/license) | | Jinja2 | 3.0.3 | https://palletsprojects.com/p/jinja/ | BSD-3-Clause | | jmespath | 0.10.0 | https://github.com/jmespath/jmespath.py | [Other](https://api.github.com/repos/jmespath/jmespath.py/license) | -| jsondiff | 1.3.0 | https://github.com/ZoomerAnalytics/jsondiff | [MIT License](https://api.github.com/repos/zoomeranalytics/jsondiff/license) | +| jsondiff | 1.2.0 | https://github.com/ZoomerAnalytics/jsondiff | [MIT License](https://api.github.com/repos/zoomeranalytics/jsondiff/license) | | jsonschema | 4.2.1 | https://github.com/Julian/jsonschema | [MIT License](https://api.github.com/repos/julian/jsonschema/license) | -| knack | 0.9.0 | https://github.com/microsoft/knack | [MIT License](https://api.github.com/repos/microsoft/knack/license) | +| knack | 0.8.2 | https://github.com/microsoft/knack | [MIT License](https://api.github.com/repos/microsoft/knack/license) | | MarkupSafe | 2.0.1 | https://palletsprojects.com/p/markupsafe/ | BSD-3-Clause | -| msal-extensions | 0.3.0 | https://github.com/AzureAD/microsoft-authentication-extensions-for-python | [MIT License](https://github.com/AzureAD/ +| msal-extensions | 0.3.0 | https://github.com/AzureAD/microsoft-authentication-extensions-for-python | [MIT License](https://github.com/AzureAD/microsoft-authentication-extensions-for-python/LICENSE) | | msal | 1.16.0 | https://github.com/AzureAD/microsoft-authentication-library-for-python | [Other](https://api.github.com/repos/azuread/microsoft-authentication-library-for-python/license) | | msrest | 0.6.21 | https://github.com/Azure/msrest-for-python | [MIT License](https://api.github.com/repos/azure/msrest-for-python/license) | | msrestazure | 0.6.4 | https://github.com/Azure/msrestazure-for-python | [MIT License](https://api.github.com/repos/azure/msrestazure-for-python/license) | @@ -204,9 +203,10 @@ Note that versions are default versions and can be changed in certain cases thro | PySocks | 1.7.1 | https://github.com/Anorov/PySocks | [Other](https://api.github.com/repos/anorov/pysocks/license) | | python-dateutil | 2.8.2 | https://github.com/dateutil/dateutil | [Other](https://api.github.com/repos/dateutil/dateutil/license) | | python-json-logger | 2.0.2 | http://github.com/madzak/python-json-logger | [BSD 2-Clause "Simplified" License](https://api.github.com/repos/madzak/python-json-logger/license) | +| pytz | 2019.1 | http://pythonhosted.org/pytz | MIT | | PyYAML | 6.0 | https://pyyaml.org/ | MIT | | requests-oauthlib | 1.3.0 | https://github.com/requests/requests-oauthlib | [ISC License](https://api.github.com/repos/requests/requests-oauthlib/license) | -| requests | 2.26.0 | https://requests.readthedocs.io | Apache 2.0 | +| requests | 2.25.1 | https://requests.readthedocs.io | Apache 2.0 | | ruamel.yaml.clib | 0.2.6 | https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree | MIT | | ruamel.yaml | 0.17.17 | https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree | MIT license | | s3transfer | 0.5.0 | https://github.com/boto/s3transfer | [Apache License 2.0](https://api.github.com/repos/boto/s3transfer/license) | @@ -218,6 +218,7 @@ Note that versions are default versions and can be changed in certain cases thro | terraform-bin | 1.0.1 | https://github.com/epiphany-platform/terraform-bin | [Apache License 2.0](https://api.github.com/repos/epiphany-platform/terraform-bin/license) | | typing_extensions | 4.0.0 | https://github.com/python/typing/blob/master/typing_extensions | [Other](https://github.com/python/typing/blob/master/typing_extensions/LICENSE) | | urllib3 | 1.26.7 | https://urllib3.readthedocs.io/ | MIT | +| vsts | 0.1.25 | https://github.com/Microsoft/vsts-python-api | [MIT License](https://api.github.com/repos/microsoft/vsts-python-api/license) | | websocket-client | 0.56.0 | https://github.com/websocket-client/websocket-client.git | BSD | | wrapt | 1.13.3 | https://github.com/GrahamDumpleton/wrapt | [BSD 2-Clause "Simplified" License](https://api.github.com/repos/grahamdumpleton/wrapt/license) | | xmltodict | 0.12.0 | https://github.com/martinblech/xmltodict | [MIT License](https://api.github.com/repos/martinblech/xmltodict/license) |