-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
9 changed files
with
139 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-335-gdf91f79 | ||
2021.08.26-337-g7c7a09a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Changelog | ||
|
||
[//]: # (You should *NOT* be adding new change log entries to this file, this) | ||
[//]: # (file is managed by towncrier. You *may* edit previous change logs to) | ||
[//]: # (fix problems like typo corrections or such.) | ||
[//]: # (To add a new change log entry, please see the contributing docs.) | ||
[//]: # (WARNING: Don't drop the towncrier directive!) | ||
|
||
[//]: # (towncrier release notes start) | ||
|
||
## 0.2.0 (2023-08-15) {: #0.2.0 } | ||
|
||
### Features | ||
|
||
- Added support for gems with a platform that is not "ruby". | ||
[#130](https://github.com/pulp/pulp_gem/issues/130) | ||
|
||
### Bugfixes | ||
|
||
- Fixed the detection of prerelease versions. | ||
[#114](https://github.com/pulp/pulp_gem/issues/114) | ||
- Added a datarepair-gemspec-platform command to regenerate the gemspec artifacts and properly set the platform attribute on existing gems. | ||
[#130](https://github.com/pulp/pulp_gem/issues/130) | ||
- Fixed the generation of gemspec data. | ||
[#131](https://github.com/pulp/pulp_gem/issues/131) | ||
|
||
--- | ||
|
||
## 0.1.1 (2023-06-29) {: #0.1.1 } | ||
|
||
### Bugfixes | ||
|
||
- Fixed the detection of prerelease versions. | ||
[#114](https://github.com/pulp/pulp_gem/issues/114) | ||
|
||
--- | ||
|
||
## 0.1.0 (2023-06-26) {: #0.1.0 } | ||
|
||
### Features | ||
|
||
- Added support for pull-through caching. Add a remote to a distribution to enable this feature. | ||
[#94](https://github.com/pulp/pulp_gem/issues/94) | ||
- Implemented new synching and publishing the compact index format. | ||
Rubymarshal and quick index will still be generated when publishing, but synching is exclusive to the new format. | ||
Added checksum and dependency information to gem content. | ||
Added `prereleases` and `includes` / `excludes` filter to remotes. | ||
[#96](https://github.com/pulp/pulp_gem/issues/96) | ||
- Added compatibility for pulpcore 3.25, pulpcore support is now >=3.25,<3.40. | ||
[#99](https://github.com/pulp/pulp_gem/issues/99) | ||
- Added support to assign a remote to a repository. | ||
[#101](https://github.com/pulp/pulp_gem/issues/101) | ||
|
||
### Bugfixes | ||
|
||
- Optimized publish task to be significantly faster. | ||
[#93](https://github.com/pulp/pulp_gem/issues/93) | ||
|
||
### Improved Documentation | ||
|
||
- Added CLI commands to documented workflows. | ||
[#107](https://github.com/pulp/pulp_gem/issues/107) | ||
|
||
### Deprecations and Removals | ||
|
||
- Disabled synching without compact index format. | ||
Existing content will still be downloadable. | ||
There is a `pulpcore-manager datarepair-shallow-gems` command that will reindex content to the new format given their artifacts are persisted. | ||
[#96](https://github.com/pulp/pulp_gem/issues/96) | ||
|
||
--- | ||
|
||
## 0.0.1b3 (2022-03-01) | ||
|
||
### Misc | ||
|
||
- [#39](https://github.com/pulp/pulp_gem/issues/39) | ||
|
||
--- | ||
|
||
## 0.0.1b2 (2018-12-19) | ||
|
||
No significant changes. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{# TOWNCRIER TEMPLATE #} | ||
{% for section, _ in sections.items() %} | ||
{%- set section_slug = "-" + section|replace(" ", "-")|replace("_", "-")|lower %} | ||
{%- if section %} | ||
|
||
### {{section}} {: #{{versiondata.version}}{{section_slug}} } | ||
{% else %} | ||
{%- set section_slug = "" %} | ||
{% endif %} | ||
{% if sections[section] %} | ||
{% for category, val in definitions.items() if category in sections[section]%} | ||
|
||
#### {{ definitions[category]['name'] }} {: #{{versiondata.version}}{{section_slug}}-{{category}} } | ||
|
||
{% if definitions[category]['showcontent'] %} | ||
{% for text, values in sections[section][category].items() %} | ||
- {{ text }} | ||
{% if values %} | ||
{{ values|join(',\n ') }} | ||
{% endif %} | ||
{% endfor %} | ||
{% else %} | ||
- {{ sections[section][category]['']|join(', ') }} | ||
{% endif %} | ||
{% if sections[section][category]|length == 0 %} | ||
|
||
No significant changes. | ||
{% else %} | ||
{% endif %} | ||
{% endfor %} | ||
{% else %} | ||
|
||
No significant changes. | ||
{% endif %} | ||
{% endfor %} | ||
|
||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include CHANGES.rst | ||
include CHANGES.md | ||
include COMMITMENT | ||
include COPYRIGHT | ||
include README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
.. _pulp_gem-changes: | ||
Changes | ||
********* | ||
|
||
.. include:: ../CHANGES.rst | ||
|
||
.. include:: ../HISTORY.rst | ||
Removed due to docs migration process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-335-gdf91f79 | ||
2021.08.26-337-g7c7a09a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters