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

changelog and fixes for packaging #11355

Merged
merged 1 commit into from
Aug 8, 2023
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
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": ["*.*"],
}
)