Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Mylyn/Porting Guide/3.x
Notable API changes and enhancements in Mylyn 3.1 and later. See Mylyn/Porting_Guide for other versions.
Contents
Notable API changes in 3.6
None.
Notable API changes in 3.5
None.
Notable API changes in 3.4
Tasks Framework
- bug 238006
TaskAttributeMapper.getDefaultOption()
has been deprecated since it is not used. - bug 216557
TaskAttachmentPage
supports an option for showing a "Replace existing attachment of the same name" checkbox. - bug 255003
AbstractRepositorySettingsPage
has an option to allow empty passwords. - bug 297254
AbstractRepositoryConnector
allows disabling of repository creation for a connector - bug 164221
AbstractRepositoryConnectorUi.findHyperlinks()
now has a task parameter. - bug 311634 Connectors can provide an alternate editor input by implementing
AbstractRepositoryConnectorUi.getEditorInput()
. - bug 296963 Connectors can specify a URL when tasks are opened or task details are copied to supply authentication details.
- bug 304086 The dependency from
org.eclpise.mylyn.tasks.ui
onorg.eclipse.search
has been extracted toorg.eclipse.mylyn.tasks.search
. - bug 302907 Connectors can specify categories for task repositories.
Commons
- bug 298156
WebUtils.releaseConnection()
can be used for canceling HTTP requests without blocking. - bug 304755 The
org.eclipse.mylyn.commons
feature provides allorg.eclipse.mylyn.commons.*
plug-ins. - bug 308737 The
org.eclipse.mylyn.xmlrpc
provides a generic XML-RPC transport layer.
Integrated Support
- bug 294957 The support extension is now public API.
Notable API changes in 3.3
Tasks Framework
- bug 268467 improve support for propagating sync status for connectors that support multi bug retrieval
- bug 284172 provide access to progress monitor to allow monitoring synchronization jobs in progress
- bug 207623 add support for deleting a task from repository
- bug 290599 support partial updating of repository configuration
Notable API changes in 3.2
Context Framework
- bug 274904
AbstractContextListener
uses a singlecontextChanged(ContextChangeEvent)
method instead of separate methods for each event type. The old notification methods have been deprecated.
Tasks Framework
- bug 269407
TaskDataModel.getChangedOldAttributes()
has been implemented and the list of changed attributes is now passed toAbstractTaskDataHandler.postTaskData()
to support incremental updates to tasks. - bug 278298 To make use of the private section in the editor
setNeedsPrivateSection(true)
needs to be invoked in the constructor of classes extendingAbstractTaskEditorPage
. To suppress the planning pageAbstractTaskEditorPageFactory.getConflictingIds()
needs to returnnew String[] { ITasksUiConstants.ID_PAGE_PLANNING }
. - bug 274790 To enable the submit button in the header toolbar of the Task Editor
setNeedsSubmitButton(true)
needs to be invoked in the constructor of classes extendingAbstractTaskEditorPage
. - bug 278708 Classes extending
AbstractTaskEditorPage
that do not support submission are encouraged to invokesetNeedsSubmit(false)
in their constructor. This flag may be used in the future to hide submit button contributions and to disable key-bindings for submitting. - bug 276651 Severity and version have been added to the common task schema. Connectors are encouraged to map
TaskAttribute.SEVERITY
andTaskAttribute.VERSION
inTaskAttributeMapper.mapToRepositoryKey()
.
Integrated Support
- bug 150278 The org.eclipse.mylyn.tasks.bugs plug-in specifies an extension point for contributing a mapping from plug-in ids to task repositories or custom support handlers.
WikiText 1.1
WikiText 1.1 was released as part of Mylyn 3.2. WikiText 1.1 has several new API additions which can be found in the source by searching for @since 1.1. All API additions are non-breaking changes unless your project subclasses WikiText classes. When porting to WikiText 1.1 care should be taken to review these additions where subclassing is used.
The following changes should be noted when porting, as they may cause warnings in your projects:
- Several methods in WikiText have been marked as @noreference. These methods were previously marked as Not API in the javadoc, however @noreference is more explicit and works well with the PDT API tools. More information about these changes can be found on bug 280614
-
org.eclipse.mylyn.wikitext.ui.viewer.HtmlViewer.getStylesheet()
-
org.eclipse.mylyn.wikitext.ui.viewer.HtmlViewer.setStylesheet(Stylesheet)
-
org.eclipse.mylyn.wikitext.ui.viewer.HtmlViewerConfiguration.createAnnotationHyperlinkDetector()
-
org.eclipse.mylyn.wikitext.tasks.ui.editor.MarkupTaskEditorExtension.TaskMarkupViewerConfiguration.createAnnotationHyperlinkDetector()
-
Notable API changes in 3.1
Commons
- bug 240446 To ensure proper closing of idle connection the use of the shared connection manager provided by
WebUtil.getConnectionManager()
is encouraged when creating instances ofHttpClient
.
Context Framework
- bug 250072
IUserAttentionListener.userAttentionGained()
is now only fired once when user activity has been detected.
Tasks Framework
- bug 167941 Implementations of
AbstractRepositoryConnectorUi.findHyperlinks()
should now return all detected hyperlinks to support proper highlighting in the Task Editor. This also applies to custom hyperlink detectors that are contributed to the Task Editor. It is recommended to extendAbstractTaskHyperlinkDetector
for that purpose. - bug 244653 Additional sections can now be contributed to
AbstractRepositorySettingsPage
through an extension point. -
AbstractRepositoryConnectorUi.getAddExistingTaskWizard()
now returns null. -
AbstractTaskEditorPage.getEditor()
now returnsTaskEditor
and should be used instead ofAbstractTaskEditorPage.getTaskEditor()
-
AttributeEditorFactory
needs to be constructed with an instance ofIServiceLocator<code> to enable the WikiText task editor extensions.
- If an association between a resource and repository is cleared <code>AbstractTaskRepositoryLinkProvider.setTaskRepository() is invoked with the repository set to
null
.
Breaking changes
- The label constants in
AbstractRepositorySettingsPage
have changed to support internationalization.