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

fix(deps): bump tycho.version from 4.0.2 to 4.0.3 #48

Merged
merged 1 commit into from
Oct 2, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 2, 2023

Bumps tycho.version from 4.0.2 to 4.0.3.
Updates org.eclipse.tycho:tycho-bnd-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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-bnd-plugin's changelog.

4.0.3

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location>%regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
	</configuration>
</plugin>
Commits
  • 88e4728 Prepare release
  • ca77cc2 Bump commons-io:commons-io from 2.13.0 to 2.14.0
  • 6aedcd2 Print added repository-references when assembly a p2-repository
  • 729c80f Suppress addition of unnecessary repo-refereces when assembling p2-repos
  • 0c3be9b Remove unused MavenBundlesArtifactRepository
  • ccd3e2a Return the maven location for missing junit bundles
  • 0c5e59f Introduce a public static constant for the current eclipse release
  • 242a2a8 Fix creation of output directory in packaging mojo
  • 2ee751b Assemble repository for all environments in one pass
  • b3f0eec Bump org.apache.maven.resolver:maven-resolver-util from 1.9.15 to 1.9.16
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-compiler-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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.

4.0.3

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location>%regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
	</configuration>
</plugin>
Commits
  • 88e4728 Prepare release
  • ca77cc2 Bump commons-io:commons-io from 2.13.0 to 2.14.0
  • 6aedcd2 Print added repository-references when assembly a p2-repository
  • 729c80f Suppress addition of unnecessary repo-refereces when assembling p2-repos
  • 0c3be9b Remove unused MavenBundlesArtifactRepository
  • ccd3e2a Return the maven location for missing junit bundles
  • 0c5e59f Introduce a public static constant for the current eclipse release
  • 242a2a8 Fix creation of output directory in packaging mojo
  • 2ee751b Assemble repository for all environments in one pass
  • b3f0eec Bump org.apache.maven.resolver:maven-resolver-util from 1.9.15 to 1.9.16
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-ds-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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-ds-plugin's changelog.

4.0.3

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location>%regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
	</configuration>
</plugin>
Commits
  • 88e4728 Prepare release
  • ca77cc2 Bump commons-io:commons-io from 2.13.0 to 2.14.0
  • 6aedcd2 Print added repository-references when assembly a p2-repository
  • 729c80f Suppress addition of unnecessary repo-refereces when assembling p2-repos
  • 0c3be9b Remove unused MavenBundlesArtifactRepository
  • ccd3e2a Return the maven location for missing junit bundles
  • 0c5e59f Introduce a public static constant for the current eclipse release
  • 242a2a8 Fix creation of output directory in packaging mojo
  • 2ee751b Assemble repository for all environments in one pass
  • b3f0eec Bump org.apache.maven.resolver:maven-resolver-util from 1.9.15 to 1.9.16
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-packaging-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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-packaging-plugin's changelog.

4.0.3

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location>%regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
	</configuration>
</plugin>
Commits
  • 88e4728 Prepare release
  • ca77cc2 Bump commons-io:commons-io from 2.13.0 to 2.14.0
  • 6aedcd2 Print added repository-references when assembly a p2-repository
  • 729c80f Suppress addition of unnecessary repo-refereces when assembling p2-repos
  • 0c3be9b Remove unused MavenBundlesArtifactRepository
  • ccd3e2a Return the maven location for missing junit bundles
  • 0c5e59f Introduce a public static constant for the current eclipse release
  • 242a2a8 Fix creation of output directory in packaging mojo
  • 2ee751b Assemble repository for all environments in one pass
  • b3f0eec Bump org.apache.maven.resolver:maven-resolver-util from 1.9.15 to 1.9.16
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-p2-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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-plugin's changelog.

4.0.3

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location>%regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
	</configuration>
</plugin>
Commits
  • 88e4728 Prepare release
  • ca77cc2 Bump commons-io:commons-io from 2.13.0 to 2.14.0
  • 6aedcd2 Print added repository-references when assembly a p2-repository
  • 729c80f Suppress addition of unnecessary repo-refereces when assembling p2-repos
  • 0c3be9b Remove unused MavenBundlesArtifactRepository
  • ccd3e2a Return the maven location for missing junit bundles
  • 0c5e59f Introduce a public static constant for the current eclipse release
  • 242a2a8 Fix creation of output directory in packaging mojo
  • 2ee751b Assemble repository for all environments in one pass
  • b3f0eec Bump org.apache.maven.resolver:maven-resolver-util from 1.9.15 to 1.9.16
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-surefire-plugin from 4.0.2 to 4.0.3

Updates org.eclipse.tycho:tycho-versions-plugin from 4.0.2 to 4.0.3

Release notes

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

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

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

  • Cédric Marin
  • Christoph Läubrich
  • dependabot[bot]
  • Hannes Wellmann
  • Jakub Stroleny

💰 we would like to also thank the Eclipse IDE Working Group for sponsoring the releng work in this release

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

Regards,

The Tycho Team

What's Changed

Bumps `tycho.version` from 4.0.2 to 4.0.3.

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

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

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

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

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

Updates `org.eclipse.tycho:tycho-surefire-plugin` from 4.0.2 to 4.0.3

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

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

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

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

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

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

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

---
updated-dependencies:
- dependency-name: org.eclipse.tycho:tycho-bnd-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-ds-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-packaging-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-versions-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-director-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-publisher-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-repository-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:target-platform-configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@sebthom sebthom merged commit d2f4831 into main Oct 2, 2023
2 checks passed
@sebthom sebthom deleted the dependabot/maven/tycho.version-4.0.3 branch October 2, 2023 11:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

1 participant