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

Update CHANGELOG.md #290

Merged
merged 3 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
# Changelog

## [Unreleased]
## [2.19] - 2024-12-05

## [2.17] - 2024-4-29
### Changed

- WG-295: Improve error message when duplicate syncing project (#255)
- Remove temporary banner related to Tapis V3 migration (#287)

## [2.18] - 2024-08-07

### Changed

- WG-366, WG-227: Add support for Tapis V3 (#238, #232, #231, #220, #214, #217, #213)
- WG-268: Add authentification to backend (#244)
- Add DesignSafe project id to project listing (#241)
- WG-288: Improve configuration of DesignSafe url (#245)
- Add temporary banner for Tapis V3 migration (#249)

### Fixed

- WG-287: Fix infinite scroll when listing files and multiple '..' entries (#240)

## [2.17] - 2024-04-29

### Changed

- WG-212: use updated project create and project update routes (#199)
- WG-212: Use updated project create and project update routes (#199)

### Fixed
- WG-161: Update devops documentation (#221)
Expand Down Expand Up @@ -174,7 +193,10 @@ _No release_

## [2.1] - 2020-10-05

[unreleased]: https://github.com/TACC-Cloud/hazmapper/compare/v2.16...HEAD
[unreleased]: https://github.com/TACC-Cloud/hazmapper/compare/v2.19...HEAD
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we listing unreleased branches here? If it is an unreleased WIP, I don't see why it would be added to the change log. Am I missing something?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's an unused link. It previously was a link but I dropped the display of the link; it is useful to grab this URL when working updates for a new release.

[2.19]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.19
[2.18]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.18
[2.17]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.17
[2.16]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.16
[2.15]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.15
[2.14]: https://github.com/TACC-Cloud/hazmapper/releases/tag/v2.14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div id="welcome-information" class="grid-y">
<div id="welcome-logo">
<img src="assets/[email protected]" width="250px" />
<div style="margin-top: 10px" id="release-version">Version 2.17</div>
<div style="margin-top: 10px" id="release-version">Version 2.19</div>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion react/src/pages/MainMenu/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const MainMenu = () => {
src="./src/assets/[email protected]"
alt="Hazmapper Logo"
></img>
<div className={styles.version}>{'Version 2.17'}</div>
<div className={styles.version}>{'Version 2.19'}</div>
</div>
<ProjectListing />
<Button
Expand Down
Loading