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

Release v4.1 #393

Merged
merged 8 commits into from
Oct 15, 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
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## Release 4.1 [unreleased]
Brief summary of what's in this release:
- Fixed an issue where the filters would not be applied when another user uploads a package

### Breaking changes

Breaking changes include any database updates needed, if we need to edit any files on system (like .env or certs, etc). Things that are outside of the code itself that need changed for the system to work.


### Non-breaking changes

Just a place to keep track of things that have changed in the code that we may want to pay special attention to when smoke testing, etc.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orion-web",
"version": "2.10.0",
"version": "4.1.0",
"private": true,
"devDependencies": {
"acorn": "7.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Packages/PackageList.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class PackageList extends Component {
}

else {
panels = this.state.packages.map((uploadPackage, index) => {
panels = applyFilters(this.props.filtering.filters, this.state.unfilteredPackages, this.props.filtering.packageTypes).map((uploadPackage, index) => {
return <PackagePanelContainer key={index} index={index} uploadPackage={uploadPackage}/>;
});
}
Expand Down
Loading