diff --git a/changelog.md b/changelog.md new file mode 100644 index 00000000..eb343e4f --- /dev/null +++ b/changelog.md @@ -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. diff --git a/package.json b/package.json index 594292ef..31bc0aaa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orion-web", - "version": "2.10.0", + "version": "4.1.0", "private": true, "devDependencies": { "acorn": "7.2.0", diff --git a/src/components/Packages/PackageList.js b/src/components/Packages/PackageList.js index c9a088eb..214cc025 100755 --- a/src/components/Packages/PackageList.js +++ b/src/components/Packages/PackageList.js @@ -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 ; }); }