Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tycho-version from 2.7.3 to 4.0.7 #596

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 28, 2024

Bumps tycho-version from 2.7.3 to 4.0.7.
Updates org.eclipse.tycho:tycho-compiler-jdt from 2.7.3 to 4.0.7

Release notes

Sourced from org.eclipse.tycho:tycho-compiler-jdt's releases.

Tycho 4.0.7 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.7/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.7 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.7 🙏 contributors who contributed patches for this release:

  • Christoph Läubrich
  • dependabot[bot]
  • Ed Merks
  • Heiko Klare
  • Marco Lehmann-Mörz
  • Sebastian Ratz
  • Александър Куртаков

💰 we would like to also thank Sigasi for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work.

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-compiler-jdt's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

Support for CycloneDX Maven Plugin

The tycho-sbom plugin can be added as a dependency to the CycloneDX plugin, in order to handle the PURL creation of p2 artifacts:

<plugin>
	<groupId>org.cyclonedx</groupId>
	<artifactId>cyclonedx-maven-plugin</artifactId>
	<dependencies>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-sbom</artifactId>
			<version>${tycho-version}</version>
		</dependency>
	</dependencies>
</plugin>

Support for parallel execution of product assembly / archiving

The mojos materialize-products and archive-products now support a new <parallel> parameter that enables the parallel assembly / packaging of different product variants.

You can enable this for example like this:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-director-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<parallel>true</parallel>
	</configuration>
</plugin>

new repo-to-runnable mojo

This is a replacement for the Repo2Runnable ant task, example:

... (truncated)

Commits
  • 0dbf79b Perform 4.0.7 release
  • 96143c8 tycho-p2-director:director: Fix handling of destination on macOS
  • e21610e Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0
  • 8b42557 Bump asm.version from 9.6 to 9.7
  • 57a15e9 Check that the 34 test is seeing an older version
  • a11aa9b Update latest release to 2024-03
  • 1f0bb2a Add test case for PublishFeaturesAndBundlesMojo marking bundle unpacked
  • 8fa411b Prevent ConcurrentModificationException in PomInstallableUnitStore
  • d0f217f Add an option to enhance the compile log with baseline problems
  • 4fa783a Enforce UTC time for parsing qualifiers
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-maven-plugin from 2.7.3 to 4.0.7

Release notes

Sourced from org.eclipse.tycho:tycho-maven-plugin's releases.

Tycho 4.0.7 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.7/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.7 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.7 🙏 contributors who contributed patches for this release:

  • Christoph Läubrich
  • dependabot[bot]
  • Ed Merks
  • Heiko Klare
  • Marco Lehmann-Mörz
  • Sebastian Ratz
  • Александър Куртаков

💰 we would like to also thank Sigasi for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work.

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-maven-plugin's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

Support for CycloneDX Maven Plugin

The tycho-sbom plugin can be added as a dependency to the CycloneDX plugin, in order to handle the PURL creation of p2 artifacts:

<plugin>
	<groupId>org.cyclonedx</groupId>
	<artifactId>cyclonedx-maven-plugin</artifactId>
	<dependencies>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-sbom</artifactId>
			<version>${tycho-version}</version>
		</dependency>
	</dependencies>
</plugin>

Support for parallel execution of product assembly / archiving

The mojos materialize-products and archive-products now support a new <parallel> parameter that enables the parallel assembly / packaging of different product variants.

You can enable this for example like this:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-director-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<parallel>true</parallel>
	</configuration>
</plugin>

new repo-to-runnable mojo

This is a replacement for the Repo2Runnable ant task, example:

... (truncated)

Commits
  • 0dbf79b Perform 4.0.7 release
  • 96143c8 tycho-p2-director:director: Fix handling of destination on macOS
  • e21610e Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0
  • 8b42557 Bump asm.version from 9.6 to 9.7
  • 57a15e9 Check that the 34 test is seeing an older version
  • a11aa9b Update latest release to 2024-03
  • 1f0bb2a Add test case for PublishFeaturesAndBundlesMojo marking bundle unpacked
  • 8fa411b Prevent ConcurrentModificationException in PomInstallableUnitStore
  • d0f217f Add an option to enhance the compile log with baseline problems
  • 4fa783a Enforce UTC time for parsing qualifiers
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:target-platform-configuration from 2.7.3 to 4.0.7

Release notes

Sourced from org.eclipse.tycho:target-platform-configuration's releases.

Tycho 4.0.7 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.7/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.7 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.7 🙏 contributors who contributed patches for this release:

  • Christoph Läubrich
  • dependabot[bot]
  • Ed Merks
  • Heiko Klare
  • Marco Lehmann-Mörz
  • Sebastian Ratz
  • Александър Куртаков

💰 we would like to also thank Sigasi for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work.

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:target-platform-configuration's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

Support for CycloneDX Maven Plugin

The tycho-sbom plugin can be added as a dependency to the CycloneDX plugin, in order to handle the PURL creation of p2 artifacts:

<plugin>
	<groupId>org.cyclonedx</groupId>
	<artifactId>cyclonedx-maven-plugin</artifactId>
	<dependencies>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-sbom</artifactId>
			<version>${tycho-version}</version>
		</dependency>
	</dependencies>
</plugin>

Support for parallel execution of product assembly / archiving

The mojos materialize-products and archive-products now support a new <parallel> parameter that enables the parallel assembly / packaging of different product variants.

You can enable this for example like this:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-director-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<parallel>true</parallel>
	</configuration>
</plugin>

new repo-to-runnable mojo

This is a replacement for the Repo2Runnable ant task, example:

... (truncated)

Commits
  • 0dbf79b Perform 4.0.7 release
  • 96143c8 tycho-p2-director:director: Fix handling of destination on macOS
  • e21610e Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0
  • 8b42557 Bump asm.version from 9.6 to 9.7
  • 57a15e9 Check that the 34 test is seeing an older version
  • a11aa9b Update latest release to 2024-03
  • 1f0bb2a Add test case for PublishFeaturesAndBundlesMojo marking bundle unpacked
  • 8fa411b Prevent ConcurrentModificationException in PomInstallableUnitStore
  • d0f217f Add an option to enhance the compile log with baseline problems
  • 4fa783a Enforce UTC time for parsing qualifiers
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-compiler-plugin from 2.7.3 to 4.0.7

Release notes

Sourced from org.eclipse.tycho:tycho-compiler-plugin's releases.

Tycho 4.0.7 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.7/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.7 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.7 🙏 contributors who contributed patches for this release:

  • Christoph Läubrich
  • dependabot[bot]
  • Ed Merks
  • Heiko Klare
  • Marco Lehmann-Mörz
  • Sebastian Ratz
  • Александър Куртаков

💰 we would like to also thank Sigasi for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work.

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-compiler-plugin's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

Support for CycloneDX Maven Plugin

The tycho-sbom plugin can be added as a dependency to the CycloneDX plugin, in order to handle the PURL creation of p2 artifacts:

<plugin>
	<groupId>org.cyclonedx</groupId>
	<artifactId>cyclonedx-maven-plugin</artifactId>
	<dependencies>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-sbom</artifactId>
			<version>${tycho-version}</version>
		</dependency>
	</dependencies>
</plugin>

Support for parallel execution of product assembly / archiving

The mojos materialize-products and archive-products now support a new <parallel> parameter that enables the parallel assembly / packaging of different product variants.

You can enable this for example like this:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-director-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<parallel>true</parallel>
	</configuration>
</plugin>

new repo-to-runnable mojo

This is a replacement for the Repo2Runnable ant task, example:

... (truncated)

Commits
  • 0dbf79b Perform 4.0.7 release
  • 96143c8 tycho-p2-director:director: Fix handling of destination on macOS
  • e21610e Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0
  • 8b42557 Bump asm.version from 9.6 to 9.7
  • 57a15e9 Check that the 34 test is seeing an older version
  • a11aa9b Update latest release to 2024-03
  • 1f0bb2a Add test case for PublishFeaturesAndBundlesMojo marking bundle unpacked
  • 8fa411b Prevent ConcurrentModificationException in PomInstallableUnitStore
  • d0f217f Add an option to enhance the compile log with baseline problems
  • 4fa783a Enforce UTC time for parsing qualifiers
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-surefire-plugin from 2.7.3 to 4.0.7

Updates org.eclipse.tycho:tycho-p2-repository-plugin from 2.7.3 to 4.0.7

Release notes

Sourced from org.eclipse.tycho:tycho-p2-repository-plugin's releases.

Tycho 4.0.7 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.7/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.7 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.7 🙏 contributors who contributed patches for this release:

  • Christoph Läubrich
  • dependabot[bot]
  • Ed Merks
  • Heiko Klare
  • Marco Lehmann-Mörz
  • Sebastian Ratz
  • Александър Куртаков

💰 we would like to also thank Sigasi for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work.

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-p2-repository-plugin's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

Support for CycloneDX Maven Plugin

The tycho-sbom plugin can be added as a dependency to the CycloneDX plugin, in order to handle the PURL creation of p2 artifacts:

<plugin>
	<groupId>org.cyclonedx</groupId>
	<artifactId>cyclonedx-maven-plugin</artifactId>
	<dependencies>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-sbom</artifactId>
			<version>${tycho-version}</version>
		</dependency>
	</dependencies>
</plugin>

Support for parallel execution of product assembly / archiving

The mojos materialize-products and archive-products now support a new <parallel> parameter that enables the parallel assembly / packaging of different product variants.

You can enable this for example like this:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-director-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<parallel>true</parallel>
	</configuration>
</plugin>

new repo-to-runnable mojo

This is a replacement for the Repo2Runnable ant task, example:

... (truncated)

Commits
  • 0dbf79b Perform 4.0.7 release
  • 96143c8 tycho-p2-director:director: Fix handling of destination on macOS
  • e21610e Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0
  • 8b42557 Bump asm.version from 9.6 to 9.7
  • 57a15e9 Check that the 34 test is seeing an older version
  • a11aa9b Update latest release to 2024-03
  • 1f0bb2a Add test case for PublishFeaturesAndBundlesMojo marking bundle unpacked
  • 8fa411b Prevent ConcurrentModificationException in PomInstallableUnitStore
  • d0f217f Add an option to enhance the compile log with baseline problems
  • 4fa783a Enforce UTC time for parsing qualifiers
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps `tycho-version` from 2.7.3 to 4.0.7.

Updates `org.eclipse.tycho:tycho-compiler-jdt` from 2.7.3 to 4.0.7
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/main/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-2.7.3...tycho-4.0.7)

Updates `org.eclipse.tycho:tycho-maven-plugin` from 2.7.3 to 4.0.7
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/main/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-2.7.3...tycho-4.0.7)

Updates `org.eclipse.tycho:target-platform-configuration` from 2.7.3 to 4.0.7
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/main/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-2.7.3...tycho-4.0.7)

Updates `org.eclipse.tycho:tycho-compiler-plugin` from 2.7.3 to 4.0.7
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/main/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-2.7.3...tycho-4.0.7)

Updates `org.eclipse.tycho:tycho-surefire-plugin` from 2.7.3 to 4.0.7

Updates `org.eclipse.tycho:tycho-p2-repository-plugin` from 2.7.3 to 4.0.7
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/main/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-2.7.3...tycho-4.0.7)

---
updated-dependencies:
- dependency-name: org.eclipse.tycho:tycho-compiler-jdt
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.eclipse.tycho:tycho-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.eclipse.tycho:target-platform-configuration
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.eclipse.tycho:tycho-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.eclipse.tycho:tycho-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.eclipse.tycho:tycho-p2-repository-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants