Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Release 3.10.0
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
goosemania committed Feb 5, 2021
1 parent c8ee5d9 commit 7ecfe7a
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 16 deletions.
3 changes: 0 additions & 3 deletions CHANGES/8011.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/8210.misc

This file was deleted.

22 changes: 22 additions & 0 deletions docs/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ Changelog

<!-- TOWNCRIER -->


3.10.0 (2021-02-04)
===================


Features
--------

- Added support for upgrading to pulpcore 3.10.

The installer moves an existing 'artifact' directory inside the MEDIA_ROOT path.
[#8011](https://pulp.plan.io/issues/8011)


Misc
----

- [#8210](https://pulp.plan.io/issues/8210)

----


3.9.1-1 (2021-01-27)
====================

Expand Down
20 changes: 10 additions & 10 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ The Pulp 3 Ansible installer is a collection of Ansible roles that you can use t

Each Ansible role installs and configures a component of Pulp.

This version of the installer, 3.9.1-1, installs Pulp 3.9.1 specifically.
This version of the installer, 3.10.0, installs Pulp 3.10.0 specifically.

If run against an older version of Pulp 3, it will upgrade it to 3.9.1.
If run against an older version of Pulp 3, it will upgrade it to 3.10.0.

System Requirements
-------------------
Expand Down Expand Up @@ -90,18 +90,18 @@ Recommended Workflows for Pulpcore & Plugin Versioning
Initial installation:

1. Make sure you are running the latest version of the installer, which installs the latest version
of pulpcore (3.9.1).
of pulpcore (3.10.0).
1. Confirm that all the latest stable releases of your desired plugins are compatible with pulpcore
3.9.1, such as by reading the release announcement email thread for pulpcore 3.9.1, reading the
3.10.0, such as by reading the release announcement email thread for pulpcore 3.10.0, reading the
plugins README, or as a last resort, reading their `setup.py`.
1. Run `pulp_installer`.

Upgrading your installation:

1. Observe what is the latest version of `pulp_installer`, and what version of pulpcore it installed
(3.9.1).
(3.10.0).
1. Confirm that all the latest stable releases of **currently installed** plugins are compatible
with pulpcore 3.9.1, such as by reading the release announcement email thread for pulpcore 3.9.1,
with pulpcore 3.10.0, such as by reading the release announcement email thread for pulpcore 3.10.0,
reading the plugins README, or as a last resort, reading their setup.py.
1. If they are not all compatible yet, **wait** for the plugins to be updated for
compatibility.
Expand All @@ -113,9 +113,9 @@ reading the plugins README, or as a last resort, reading their setup.py.

Initial installation:

1. Observe the latest branch of `pulp_installer`, and what version of pulpcore it installs (3.9.1).
1. Observe the latest branch of `pulp_installer`, and what version of pulpcore it installs (3.10.0).
1. Confirm that all the latest stable releases of your desired plugins are compatible with pulpcore
3.9.1, such as by reading the release announcement email thread for pulpcore 3.9.1, reading the
3.10.0, such as by reading the release announcement email thread for pulpcore 3.10.0, reading the
plugins README, or as a last resort, reading their setup.py.
1. If they are not all compatible yet, try the last version of the installer that installs pulpcore
3.9.z . Then confirm that there exist stable releases of your desired plugins that are compatible
Expand All @@ -127,9 +127,9 @@ with pulpcore 3.9.z. If there are none, try pulpcore 3.8.z, and repeat.
Upgrading your install:

1. Observe what the latest version of `pulp_installer` is, and what version of pulpcore it installed
(3.9.1). (Even if there is no update, you can still upgrade your plugins.)
(3.10.0). (Even if there is no update, you can still upgrade your plugins.)
1. Confirm that all the latest stable releases of **currently installed** plugins are compatible
with pulpcore 3.9.1, such as by reading the release announcement email thread for pulpcore 3.9.1,
with pulpcore 3.10.0, such as by reading the release announcement email thread for pulpcore 3.10.0,
reading the plugins README, or as a last resort, reading their setup.py.
1. If they are not all compatible yet, try the last version of the installer that installs pulpcore
3.9.z . Then confirm that there exist stable releases of your desired plugins that are compatible
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace: pulp
name: pulp_installer

# The version of the collection. Must be compatible with semantic versioning
version: 3.9.1-1
version: 3.10.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion roles/pulp_common/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ __pulp_common_pulp_settings_fips_defaults:
- sha512
__pulp_common_merged_pulp_settings: "{{ __pulp_common_pulp_settings_defaults | combine(ansible_fips | ternary(__pulp_common_pulp_settings_fips_defaults, {}), pulp_settings, recursive=True) }}"

__pulp_version: '{{ pulpcore_version | default("3.9.1") }}'
__pulp_version: '{{ pulpcore_version | default("3.10.0") }}'

__pulp_old_artifact_dir: "{{ pulp_user_home | regex_replace('\\/$', '') }}/artifact"
__pulp_artifact_dir: "{{ pulp_media_root | regex_replace('\\/$', '') }}/artifact"
Expand Down

0 comments on commit 7ecfe7a

Please sign in to comment.