Skip to content

Commit

Permalink
changelog and fixes for packaging (#11355)
Browse files Browse the repository at this point in the history
  • Loading branch information
giohappy committed Aug 8, 2023
1 parent 77919a4 commit e2d1105
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [4.1.1](https://github.com/GeoNode/geonode/tree/4.1.0) (2023-06-05)
## Security and Bug Fixes
- Upgrade to Ubuntu 22.10
- Upgrade to Django 3.2.20
- Fixed direct download URL not working in some cases when local files are not available
- Fixed assignment of regions crossing the dateline
- Fixed harvesting of ArcGIS REST ImageServer services
- Fixed some italian translations
- Disabling of the (deprecated) Monitoring module
## [4.1.0](https://github.com/GeoNode/geonode/tree/4.1.0) (2023-06-05)
### New upload engine
GeoNode integrates a brand new importer module based on [GDAL/OGR](https://gdal.org/), which offers increased robustness and reliability to the upload UI and API services. GeoPackage (vector), GeoJSON, KML/KMZ formats and a new CSV handler have been implemented.
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ install_requires =
pinax-ratings==4.0.0

# GeoNode org maintained apps.
django-geonode-mapstore-client>=4.1.0
geonode-importer>=1.0.3
django-geonode-mapstore-client>=4.1.1
geonode-importer>=1.0.4
geonode-avatar==5.0.8
geonode-oauth-toolkit==2.2.2
geonode-user-messages==2.0.2
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@
setup(
version=__import__("geonode").get_version(),
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
package_data={
"": ["*.*"], # noqa
"": ["static/*.*"], # noqa
"static": ["*.*"],
"": ["templates/*.*"], # noqa
"templates": ["*.*"],
},
exclude_package_data={
"": ["uploaded/*.*"], # noqa
"uploaded": ["*.*"],
}
)

0 comments on commit e2d1105

Please sign in to comment.