Releases: TechnologyBrewery/orphedomos
0.10.1
Breaking Changes
None
Major Documentation Changes
- Revamped build and release process to make it easier and align with the pattern used by Habushu
What's Changed
- [ORPH-32] Add capability to pass any additional docker options to the… by @carter-cundiff in #33
- Release version 0.9.0 by @carter-cundiff in #34
- Added DockerCredentialExecutor to handle login and logout from docker… by @jacksondelametter in #35
- #36 - Adding the ability to retrieve cached wheel files from poetry cache by @JeffreyRoss in #37
- 36 - Add Retrieve Wheel configuration documentation to README by @JeffreyRoss in #38
- 0.10.0 release by @JeffreyRoss in #39
New Contributors
- @JeffreyRoss made their first contribution in #37
Full Changelog: orphedomos-parent-0.9.0...orphedomos-parent-0.10.1
0.10.0
Bad release, please use 0.10.1 instead
0.9.0
Breaking Changes
None
Issues
#27: Be able to deploy a single module's docker artifacts to an alternate repository
#29: Add the capability to deploy an entire projects Docker artifacts to a repository
#32: Add capability to pass any additional docker options to the docker build goals
What's Changed
- Modified README to contain information on the push-docker-image command by @jacksondelametter in #28
- Can deploy all docker images from a mono-repo by @jacksondelametter in #31
New Contributors
- @jacksondelametter made their first contribution in #28
Full Changelog: orphedomos-parent-0.8.2...orphedomos-parent-0.9.0
0.8.2
Breaking Changes
None
Issues
#25 : The build produces a large number of warnings about duplicate lifecycle events
What's Changed
- #25: Fixed lifecycle configuration by @ahartwellCpointe in #24
- #26: push up to latest version of parent for minor plugin upgrades
New Contributors
- @ahartwellCpointe made their first contribution in #24
Full Changelog: orphedomos-parent-0.8.1...orphedomos-parent-0.8.2
0.8.1
Breaking Changes
None
Issues
#19: Build fails if skip
is set to true
. Resolves a case where POM installation would not occur successfully.
What's Changed
- [ORPH-19] Fixed a bug where the maven-install-plugin would fail when … by @peter-mcclonski in #20
Full Changelog: orphedomos-parent-0.8.0...orphedomos-parent-0.8.1
0.8.0
Breaking Changes
Image aliases
will no longer automatically prepend the remote repo URL during the image push execution. This change was made in the interest of consistency and clarity. The repo URL will continue to be automatically prepended to the base image name.
Issue
- #14: Enabled publication of project POM and Dockerfile; Improves safety of dependency specification between modules
- #16: Bump versions up
- #18: Cut release 0.8.0
What's Changed
- Update README to include POM config intructions for multi platform build by @carter-cundiff in #13
- [ORPH-14] Enabled publication of project POM and Dockerfile by @peter-mcclonski in #15
- #16 ⬆️ update dependencies and plugins by @d-ryan-ashcraft in #17
New Contributors
- @carter-cundiff made their first contribution in #13
Full Changelog: orphedomos-parent-0.7.0...orphedomos-parent-0.8.0
0.7.0
Breaking Changes
Image aliases
will no longer automatically prepend the remote repo URL during the image push execution. This change was made in the interest of consistency and clarity. The repo URL will continue to be automatically prepended to the base image name.
Issue
0.6.0
Major Changes
- Added registry login capability during build phase (#4)
- Improved handling of invalid or missing server credentials (#7)
Upgrade Notes
Providing a repoId
in your configuration now attempts login during both the compile
and deploy
phases. To build anonymously, and login to your registry only during the deploy
phase, provide your repoId
in the configuration for only the default-push-docker-image
execution. For example:
<plugin>
<groupId>org.technologybrewery.orphedomos</groupId>
<artifactId>orphedomos-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>default-push-docker-image</id>
<configuration>
<repoId>docker-hub</repoId>
</configuration>
</execution>
</executions>
</plugin>
0.5.8
Initial open source codebase