Move deprecation of callback location to 0.9.2
0.10.x won't be coming for a while still and there are a few major features planned such as database migrations and recording module. We have some fixes to release until then and these will land in 0.9.2 so let's start the deprecation there. Change-Id: I6808ba989ce53098a01af6dbea6138925a8733a0
This commit is contained in:
@@ -16,7 +16,7 @@ from debtcollector import moves
|
||||
from ara.plugins.callbacks import log_ara
|
||||
|
||||
long_message = """[WARNING]
|
||||
ara.callback has been moved to ara.plugins.callbacks.
|
||||
ara.callback has been moved to ara.plugins.callbacks in ARA 0.9.2.
|
||||
Please update your Ansible Callback Plugins path to include
|
||||
<path>/ara/plugins/callbacks
|
||||
instead of:
|
||||
@@ -30,18 +30,18 @@ print(long_message)
|
||||
|
||||
CommitAfter = moves.moved_class(log_ara.CommitAfter, 'CommitAfter',
|
||||
'ara',
|
||||
version='0.10.0',
|
||||
version='0.9.2',
|
||||
removal_version='?',
|
||||
message=message)
|
||||
|
||||
IncludeResult = moves.moved_class(log_ara.IncludeResult, 'IncludeResult',
|
||||
'ara',
|
||||
version='0.10.0',
|
||||
version='0.9.2',
|
||||
removal_version='?',
|
||||
message=message)
|
||||
|
||||
CallbackModule = moves.moved_class(log_ara.CallbackModule, 'CallbackModule',
|
||||
'ara',
|
||||
version='0.10.0',
|
||||
version='0.9.2',
|
||||
removal_version='?',
|
||||
message=message)
|
||||
|
||||
Reference in New Issue
Block a user