-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from lsst/tickets/DM-36034
DM-36034: Add v24.0.0 (and older) release notes
- Loading branch information
Showing
6 changed files
with
154 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## Checklist | ||
|
||
- [ ] ran Jenkins | ||
- [ ] added a release note for user-visible changes to `doc/changes` |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Recording Changes | ||
================= | ||
|
||
This directory contains "news fragments" which are small files containing text that will be integrated into release notes. | ||
The files can be in restructured text format or plain text. | ||
|
||
Each file should be named like ``<JIRA TICKET>.<TYPE>`` with a file extension defining the markup format. | ||
The ``<TYPE>`` should be one of: | ||
|
||
* ``feature``: New feature | ||
* ``bugfix``: A bug fix. | ||
* ``api``: An API change. | ||
* ``perf``: A performance enhancement. | ||
* ``doc``: A documentation improvement. | ||
* ``removal``: An API removal or deprecation. | ||
* ``misc``: Changes that are of minor interest. | ||
|
||
An example file name would therefore look like ``DM-30291.misc.rst``. | ||
|
||
If the change concerns specifically the registry or a datastore the news fragment can be placed in the relevant subdirectory. | ||
|
||
You can test how the content will be integrated into the release notes by running ``towncrier build --draft --version=V.vv``. | ||
``towncrier`` can be installed from PyPI or conda-forge. |
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,72 @@ | ||
lsst-pex-config v24.0.0 (2022-08-30) | ||
==================================== | ||
|
||
New Features | ||
------------ | ||
|
||
* Add support for python typing of Fields. (DM-35312) | ||
* ``loadFromStream`` now accepts a file-like object. (DM-32733) | ||
|
||
Removals | ||
-------- | ||
|
||
* The old ``root`` name in configuration files has been removed. (DM-32759) | ||
* The Python2 iteration methods (``iterkeys``, etc) have been removed (DM-7148) | ||
|
||
Other Changes | ||
------------- | ||
|
||
* Attempting to pickle a proxy object now fails with a useful error message. (DM-33963) | ||
|
||
lsst-pex-config v23.0.0 (2021-12-21) | ||
==================================== | ||
|
||
Other Changes | ||
------------- | ||
|
||
* Internal data structures have been modified to aid Python reference counting. (DM-31507) | ||
|
||
lsst-pex-config v22.0.0 (2021-07-09) | ||
==================================== | ||
|
||
Other Changes | ||
------------- | ||
|
||
* Fix some issues with history handling. (DM-27519) | ||
|
||
lsst-pex-config v21.0.0 (2020-12-08) | ||
==================================== | ||
|
||
New Features | ||
------------ | ||
|
||
* Configuration objects can now be serialized to YAML. (DM-26008) | ||
|
||
lsst-pex-config v20.0.0 (2020-06-24) | ||
==================================== | ||
|
||
New Features | ||
------------ | ||
|
||
* ``__file__`` can now be accessed within a config file. | ||
This allow the config to acccess another config file relative to this one without having to use an environment variable or ``getPackageDir``. (DM-23359) | ||
|
||
Bug Fixes | ||
--------- | ||
|
||
* Freezing a config no longer affects other instances of that config. (DM-24435) | ||
|
||
Other Changes | ||
------------- | ||
|
||
* It is now possible to print a configuration without the associated imports. (DM-22301) | ||
|
||
lsst-pex-config v19.0.0 (2019-12-05) | ||
==================================== | ||
|
||
New Features | ||
------------ | ||
|
||
* Now released under a dual GPLv3 and 3-clause BSD license. | ||
* Add support for deprecating configuration fields. Such fields are not written out. (DM-20378) | ||
* ``pex_policy`` and ``daf_base`` are now optional dependencies, and the dependency on the LSST ``utils`` package in testing has been removed. (DM-21064) |
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