Skip to content

Commit

Permalink
Merge branch 'master' of github.com:openaddresses/batch-machine into …
Browse files Browse the repository at this point in the history
…internal-geojson
  • Loading branch information
ingalls committed Sep 19, 2023
2 parents 502b3aa + f4730bb commit add594d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@
- Rewrite confrom to natively output GeoJSON+LD
- Rewrite Preview module to expect GeoJSON+LD

2023-09-06 v8.3.0
- Update to next major alpine version
- Remove mock library in favour of unittest.mock
- Update all python deps to latest versions
2023-09-09 v8.3.1
- Use the file extension from the content-type header when it disagrees with content-disposition in https://github.com/openaddresses/batch-machine/pull/54

2023-09-05 v8.3.0
- Update Mapbox Vector Tile dependency in https://github.com/openaddresses/batch-machine/pull/52
- Make GeoJSON+LD output a default in https://github.com/openaddresses/batch-machine/pull/51
- Update TippeCanoe to latest version in https://github.com/openaddresses/batch-machine/pull/50

2023-09-05 v8.2.4
- Update TippeCanoe to latest version
- Make GeoJSON+LD output a default

2023-09-02 v8.2.3
- Fix properties in geojson-ld features in https://github.com/openaddresses/batch-machine/pull/49
- Remove extra whitespace in geojson-ld output in https://github.com/openaddresses/batch-machine/pull/48
Expand Down
7 changes: 5 additions & 2 deletions openaddr/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,11 @@ def guess_url_file_extension(url):
if path_ext == attachment_ext:
_L.debug('Content-Disposition agrees: "{}"'.format(match.group('filename')))
else:
_L.debug('Content-Disposition disagrees: "{}"'.format(match.group('filename')))
path_ext = False
_L.debug('Content-Disposition disagrees: "{}" says we should use "{}", using "{}" instead'.format(
match.group('filename'),
attachment_ext,
path_ext,
))

if not path_ext:
#
Expand Down

0 comments on commit add594d

Please sign in to comment.