forked from GeoWebCache/geowebcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE_NOTES.txt
1134 lines (812 loc) · 31.2 KB
/
RELEASE_NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
GeoWebCache 1.22.2 (2023-05-04)
-------------------------------
Stable release for 1.22.x series.
Improvements:
+++++++++++++
- Bump commons-fileupload from 1.3.3 to 1.5
Fixes:
++++++
- Seeding GWC doesn't work for layers with a dot in the name
GeoWebCache 1.22.1 (2023-02-20)
-------------------------------
Stable release for 1.22.x series.
Fixes:
++++++
- GWC S3 Blobstore Parameters Get Converted back to plain text after GeoServer restart
- Return an empty response when no tile is found in MBTiles, with a 204 status, rather than an empty PNG
Internals:
++++++++++
- ant build for documentation with live preview
GeoWebCache 1.22.0 (2022-11-17)
-------------------------------
First stable release for the 1.22.x series.
Improvements
++++++++++++
Bump jackson-databind from 2.13.2.1 to 2.13.4.1
GeoWebCache 1.22-RC (2022-10-19)
--------------------------------
Release candidate for 1.22.x series.
Improvements:
+++++++++++++
- Update JAI-Ext 1.1.24
- Updated to imageio-ext-1.4.7
- Update PostgreSQL driver to 42.4.1
- Update to JTS 1.19.0
- GWC WMTS data security improvements
Fixes:
++++++
- Out of memory due to premature rendering surface creation
Internals:
++++++++++
- Review config, info, and warning logs during startup
- TiledLayerDispatcher.getLayerListFiltered() added to list layers available to user
GeoWebCache 1.21.1 (2022-07-27)
-------------------------------
Stable release.
Improvements:
+++++++++++++
- Update to imageio-ext 1.4.5
- Update to GeoTools 27.1
- Review startup warning, info and config logging
Fixes:
++++++
- WMS full does not correctly rescale when requested resolution is between tile values
GeoWebCache 1.21.0 (2022-05-20)
-------------------------------
Stable release for 1.21.x series.
Improvements:
+++++++++++++
- Update JAI-Ext 1.1.23
Fixes:
++++++
- Fix WMSHttpHelper NPE when requesting WMS
GeoWebCache 1.21-RC (2022-05-05)
--------------------------------
Release candidate for 1.21.x series.
Improvements:
+++++++++++++
- Updated to imageio-ext-1.4.4 supporting GDAL 3 and S3 Urls
- Log4j 2 logging now available
Internals:
++++++++++
- Change from commons logging to java util logging (with log4j 2 backend)
GeoWebCache 1.20.4 (2022-09-14)
-------------------------------
Maintenance release for the 1.20.x series
Improvements:
+++++++++++++
- Update PostgreSQL driver to 42.4.1
Fixes:
++++++
- Fix S3 blobstore geowebcache parameterization issue
GeoWebCache 1.20.3 (2022-06-30)
-------------------------------
Maintenance release for 1.20.x series
Improvements:
+++++++++++++
- Update JAI-EXT to 1.1.23
- Update imageio-ext to 1.3.13
GeoWebCache 1.20.2 (2022-04-11)
-------------------------------
Stable release for 1.20.x series.
Improvements:
+++++++++++++
- Update JAI-EXT to 1.1.22
- Update ImageIo-EXT to 1.3.12
- Update spring framework to 5.2.20.RELEASE
- Update to Jackson 2.13.2
Fixes:
++++++
- Use GeoTools to perform JNDI lookups
Internals:
++++++++++
- Switch formatting and check to Spotless
GeoWebCache 1.20.1 (2022-01-22)
-------------------------------
Stable release for 1.20.x series.
Improvements:
+++++++++++++
- Update JAI-EXT to 1.1.21
- TileSet collection in background
Fixes:
++++++
- Use custom log4j1 library that does not include remote appenders and does not include server socket related classes (closing door to remote code execution)
Internal:
+++++++++
- Repository includes .gitattributes file providing configuration for consistent line encoding
- Consistent line encoding for files in the repository
GeoWebCache 1.20.0 (2021-10-12)
-------------------------------
First stable release of the 1.20.x series.
Improvements:
+++++++++++++
- Upgraded GeoTools dependencies to 26.0
GeoWebCache 1.20-RC (2021-09-11)
--------------------------------
Release candidate for 1.20.x series.
Improvements:
+++++++++++++
- Adding OGC TileMatrixSet common gridsets (as well as x2 versions)
- Upgrade to GeoTools 26-RC
- Upgrade to JTS 1.18.2
- Upgrade to ImageIO-Ext 1.3.10
Fixes:
++++++
- Fix service metadata url when base URL already contains a query string parameters
Internal:
+++++++++
- Change default branch to main
- Consistent use of LF for XSD files
- Add PMD checks
GeoWebCache 1.19.1 (2021-05-21)
-------------------------------
Stable release of 1.19.1, with minor improvements.
Improvements:
+++++++++++++
- improve logging of if lock providers
Internal:
+++++++++
- automatic formatting of pom.xml with sortpom
GeoWebCache 1.19.0 (2021-03-18)
-------------------------------
Re-releasing 1.19-RC as 1.19.0, no new changes.
GeoWebCache 1.19-RC (2021-03-01)
--------------------------------
Release candidate for 1.19.x series.
Improvements:
+++++++++++++
- Introduce 512px tiles as possible alternative for the default gridsets
- Update to JTS 1.18.1
- Update JAIEXT 1.1.20
- Update Spring to v5.1.20.RELEASE and Spring security to 5.1.13.RELEASE
Internal:
+++++++++
- Enabled PMD checks on tests, Switch JUnit tests from v3 to v4
- Use geotools factory for http connections
- Cleaning up unnecessary casts
- Cleaning up unecessary type specifications
- Repalce iterator loops with enhanced for loops
- Use isEmpty instead of size() == 0
- Use try-with-resources replacing try/finally
- Replace use of Vector/Hashtable with ArrayList/HashMap
GeoWebCache 1.18.2 (2021-01-18)
-------------------------------
Stable release of the 1.18.x series
Improvements:
+++++++++++++
- In the seeding form, order threads count numerically instead of lexicographically
- Bounding box toString scales poorly due to internal synchornization of NumberFormat
- Creating a new UUID for each temp file scales poorly, reduce the calculation of those to a lower number, appending an atomic integer at the end
- Upgrading to jaiext 1.1.18, better BufferedImageAdapter (also improves scalability)
GeoWebCache 1.18.1 (2020-11-18)
-------------------------------
Stable release of the 1.18.x series
Improvements:
+++++++++++++
- Allow the S3 storage to work against Cohesity too, in addition to AWS S3 and Minio
GeoWebCache 1.18.0 (2020-09-21)
-------------------------------
First stable release of the 1.18.x series.
Fixes:
++++++
- Fixed documentation scripts branch reference
GeoWebCache 1.18.0
-------------------
Improvements:
+++++++++++++
- Use of repo.osgeo.org
GeoWebCache 1.18-RC (2020-09-01)
--------------------------------
Release candidate.
Improvements:
* Include the default ServiceInfo into the WMS & WMTS GetCapabilities document
* Use of JTS 1.17.1
GeoWebCache 1.17.4 (2020-12-20)
-------------------------------
Improvements:
+++++++++++++
- Allow the S3 storage to work against Cohesity too.
GeoWebCache 1.17.3 (2020-09-25)
-------------------------------
First maintenance release of the 1.17.x series
Improvements:
+++++++++++++
- Upgraded JTS to 1.17.0
- Upgraded JAI-EXT to 1.1.17
Fixes:
++++++
- Dispose image reader in MetaTile (improves stability downstreams in GeoServer, when using GDAL image readers)
GeoWebCache 1.17.2 (2020-07-19)
-------------------------------
Stable release of 1.17.x series.
Improvements:
+++++++++++++
- Upgrade to PostgreSQL driver 42.2.14
- Upgrade to jai-ext 1.1.15
- Upgrade to spring-framework to 5.1.16 and spring-security to 5.1.11
GeoWebCache 1.17.1 (2020-06-01)
-------------------------------
Stable release of 1.17.x series.
Improvements:
+++++++++++++
- Upgrade to GeoTools 23.1.
GeoWebCache 1.17.0 (2020-04-14)
-------------------------------
Initial release of 1.17.x series.
Improvements:
+++++++++++++
- Use of repo.osgeo.org
- Upgraded jai-ext to 1.1.14
GeoWebCache 1.17-RC (2020-03-11)
--------------------------------
Release candidate 1.17 branch.
New featuers:
+++++++++++++
- Mass truncate added support to clear entire GWC cache through REST and GUI
Improvements:
+++++++++++++
- Updated HTTPComponents to 4.5.11
- Upgrade Spring framework to 5.1.13.RELEASE
- Upgrade spring security to 5.1.8.RELEASE
Build improvements:
+++++++++++++++++++
- Use of https to resolve maven dependencies
- Use of maven checkstyle 3.1.1.
- Windows and macOS builds checked using github workflows
GeoWebCache 1.16.2 (2020-01-20)
-------------------------------
Third stable release of the 1.16.x series.
Improvements:
+++++++++++++
- Upgraded Jackson dependency to 2.10.1
- Make sure reference to Maven central use HTTPS in maven pom files
Fixes:
++++++
- GwC preview shows blurry tiles, #812
GeoWebCache 1.16.1 (2019-11-21)
-------------------------------
Stable release of the 1.16.x series.
Improvements:
+++++++++++++
- Upgrade to Jackson to 2.9.10
GeoWebCache 1.16.0 (2019-09-18)
-------------------------------
First stable release of the 1.16.x series. No changes since 1.16-RC
GeoWebCache 1.16-RC (2019-08-23)
--------------------------------
Release candidate for 1.6 series
Improvements:
+++++++++++++
- Runtime Parameterization of Azure Blobstore
- MapML support
- Faster 8 bit image quantization
- JAI-ext 1.1.12
- Jetty 9.4.18
- XStream 1.4.11.1
Fixes:
++++++
- Prevent focus stealing on MacOS
GeoWebCache 1.15.2 (2019-06-27)
-------------------------------
Stable release of 1.15 branch.
Improvements:
+++++++++++++
- Updated to imageio-ext-1.2.2
- Updated to Jackson 2.9.9
- Updated to commons-fileupload 1.3.3
- Updated to jai-ext 1.1.10
- HTML content-type header and encoding improvements
- Support TMS FlipY
GeoWebCache 1.15.1 (2019-04-25)
-------------------------------
Stable release of 1.15 branch.
Improvements:
+++++++++++++
- Upgrading to the jai-ext 1.1.9
GeoWebCache 1.15.0 (2019-02-26)
--------------------------------
First stable release of 1.15 branch
Improvements:
+++++++++++++
- WMTS REST integration followup - allow serving back requests with empty style
GeoWebCache 1.15-RC (2019-01-25)
--------------------------------
Release candidate for 1.15-RC
Improvements:
+++++++++++++
- Java 11 support
- PMD and ErrorProne integration and associated fixes
GeoWebCache 1.14.2 (2019-01-18)
-------------------------------
Stable release for 1.14 branch
Improvements:
+++++++++++++
- Update to jai-ext 1.1.6
- Update to imageio-ext 1.1.28
- WMTS REST integration updated and moved to /service/wmts/rest (previously /rest/wmts)
GeoWebCache 1.15-M0 (2018-12-31)
--------------------------------
Milestone release supporting Java 11.
Improvements:
+++++++++++++
- This release uses GeoTools 21-M0 which has been heavily repackaged for Java 11 support.
GeoWebCache 1.14.1 (2018-11-19)
-------------------------------
Stable release for 1.14 branch
Improvements:
+++++++++++++
- Update to jai-ext 1.1.3
- Update to imageio-ext 1.1.27
- Add support for modern application/vnd.mapbox-vector-tile mapbox vector tiles mime type
- Update demo page to use OpenLayers 5.3.0
GeoWebCache 1.14.0 (2018-09-21)
-------------------------------
First stable release of 1.14 branch
Improvements:
+++++++++++++
- Clean up of build dependencies
Fixes:
++++++
- Fix for downstream problem in GeoServer GEOS-8895
GeoWebCache 1.14-RC (2018-08-21)
--------------------------------
Release candidate for the 1.14 series
Improvements:
+++++++++++++
- Upgrade the Guava dependency to the latest version
- Updated commons-io to version 2.6
- Updated JTS to the 1.16 series (this includes a package name switch, from com.vividsolutions to org.locationtech)
- Fixes in the S3 support, espially work done to allow usage of S3-like storage (e.g. Minio)
Fixes:
++++++
- WMTS dimension identifiers now have the required OWS namespace
- Make the build pass on Windows again (still having intermittent failures, volunteer wanted to fix them)
- Prevent a blobstore from being created on top of an existing one and overwriting its contents
- Fixes in the seed UI, now kills the indicated thread
- Fixes and documentation for the new pluggable configuration API
GeoWebCache 1.12.5 (2018-08-20)
-------------------------------
Final maintenance release for 1.12.x branch
Fixes:
++++++
- Big bad reformat
- Enable formatting via coveo plugin
- Enable format checks in Travis
- Upgrade Guava to the latest version
- Resolves #665, Upgrade commons-io dependency to 2.6
GeoWebCache 1.13-beta (2018-02-20)
----------------------------------
Beta release for the 1.13 series
Improvements:
+++++++++++++
- Configuration subsystem overhaul
- Gridset management via REST
- Blob Store management via REST
- Global configuration management via REST
- ArcGISCache backed layers management via REST
GeoWebCache 1.12.2 (2018-01-22)
-------------------------------
Third stable release of 1.12 branch
Fixes:
++++++
- Mass truncate layer misleading 500 response when nothing is cached
- Fixes for downstream project GeoServer
GeoWebCache 1.12.1 (2017-11-21)
-------------------------------
Second stable release of 1.12 branch
Fixes:
++++++
- Blank page when submitting seed job
- Error when submitting seed job with default bounds
- Fix SeedController Post for embedded GWC
- Fix NPE when checking security of tile fuser requests
GeoWebCache 1.12.0 (2017-10-09)
-------------------------------
First stable release of 1.12 branch
Improvements:
+++++++++++++
- Imageio ext 1.1.18
Fixes:
++++++
- Fixed missing OpenLayers resources on Demo page
GeoWebCache 1.12-RC1 (2017-09-27)
---------------------------------
First candidate release for 1.12 series
Improvements:
+++++++++++++
- Update JAI-EXT to version 1.0.16
- Improved error reporting for integration tests
Fixes:
++++++
- Fixed bug affecting spring MVC controllers downstreeam in GeoServer.
GeoWebCache 1.12-beta (2017-09-13)
----------------------------------
Beta release for the 1.12 series.
Improvements:
+++++++++++++
- Update the Rest API to use Spring MVC
- Extension point for per tile security
Fixes:
++++++
- MemoryBlobStore fails to preserve the delegate store last modified date, breaking "If-Modified-Since"
- GWC_SEED_RETRY_WAIT not used correctly
GeoWebCache 1.11-beta (2017-02-21)
----------------------------------
Beta release for the 1.11 branch
Improvements:
+++++++++++++
- OpenLayers 3 based layer preview page with support for Vector Tiles
- Extension point for custom TMS capabilities documents
- Configurable schema for JDBC quota store
Fixes:
++++++
- Prevent negative quota being reccorded in JDBC qupta store
- Fixed misidentification of compatible tile formats
- Fixed error when caching 2 or 4 bit indexed PNGs
Updated Dependencies:
+++++++++++++++++++++
- GeoTools 17-beta
- jt-utilities 1.0.13
- imageio-ext 1.1.17
GeoWebCache 1.10-beta (2016-09-19)
----------------------------------
Beta release for 1.10 series.
Improvements:
+++++++++++++
- Custom WMTS operations
- MapBox PBF Vector tiles supported in MBTiles blob store
GeoWebCache 1.10-M0 (2016-08-12)
--------------------------------
Milestone release of development branch of GeoWebCache
Improvements:
+++++++++++++
- Framework for parameterization of certain configuration values.
- MBTiles blob store
- Extension points for WMTS GetCapabilities generation
- Support for JPEG/PNG dynamic image type caching
Fixes:
++++++
- Error when viewing runtime stats within a few seconds of startup
- Potential remote execution flaws in upstream dependencies
- MetaTile create tile operation should not perform a crop operation for BufferedImages
- Avoiding copying two times the blob data in MemoryBlobStore
GeoWebCache 1.9-beta2 (2016-04-18)
----------------------------------
Second Beta of 1.9
Improvements:
+++++++++++++
- Refactored S3 Store for easier testing
- Updated to Spring 4.2.5
- Updated from ACEGI Security to Spring Security 4.0.4
- Updated to Servlet 3.0.1 (note This means older application servers like Tomcat 6 are no longer supported)
- Updated to Commons Collections 3.2.2
- Extension point to allow plugins to reskin the UI
Fixes:
++++++
- Delete cached tiles when deleting a layer via rest
- Javascript fix on demo page
- Fixed Thread Exhaustion bug on repeated restarts
GeoWebCache 1.9-beta1 (2016-02-26)
----------------------------------
Beta of 1.9
Improvements:
+++++++++++++
- Build using Java 8
- Pinned joda-time dependency used by S3 Store
Fixes:
++++++
- Fixed typo in S3 Store pending deletes file
- Fixed REST DELETE with URL endoced names
- Fixed Oracle Diskquota init
- Fixed exception in disk-quota-config
GeoWebCache 1.9-M0 (2015-12-17)
-------------------------------
Tech Preview Milestone for 1.9.x
Improvements:
+++++++++++++
- Support for UTFGrid tiles
- Updated Postgres driver to 9.4
- Abstraction of configuration storage API
GeoWebCache 1.8-beta (2015-08-28)
----------------------------------
Beta release for 1.8.x
Improvements:
+++++++++++++
- Different strage back ends can be assigned to individual layers
- S3 storage back end
- WMTS capabilites includes a computer WGS84 bounding box for Google Mercator gridsets
- Support for reading ArcGIS 10.3 caches
- Allow applications embedding GWC to set the config directory
Fixes:
++++++
- Blocked remote code execution via REST.
GeoWebCache 1.8-M0 (2015-05-26)
----------------------------------
Tech Preview Milestone for 1.8.x
Improvements:
+++++++++++++
- StringParameterFilter and RegexParameterFilter support case normalization
- IntegerParameterFilter
- Additional configuration options for ArcGIS Cache
- TileObject API revised to remove unused properties
- Updated for GeoTools 14
Fixes:
++++++
- Fix for a issue in GS-GWC integrations's handling of DiskQuota
- Fixed missing assignment of TransientCache
- Doc Fixes
GeoWebCache 1.7.1 (2015-05-19)
----------------------------------
First maintenance release for the 1.7.x branch.
Improvements:
+++++++++++++
- Configure location of geowebcache.xml via property/environment variable
GeoWebCache 1.7.0 (2015-03-19)
----------------------------------
First stable relase of the 1.7 branch.
Fixes:
++++++
- Fixed errors in REST documentation
- Fixed typo with potential for infinite recursion
GeoWebCache 1.7.0-RC1 (2015-02-20)
----------------------------------
First release candidate for GeoWebCache 1.7.0.
Fixes:
++++++
- Bad string format for Time Remaining when seeding tiles
- HazelcastCacheProviderTest fails without multicast support
- Updated config schema for advertised and transient properties
GeoWebCache 1.7-beta (2015-01-19)
----------------------------------
Beta release for the 1.7.x branch
Improvements:
+++++++++++++
- Documentation Updates
- Mark layers as unadvertised to hide the from the capabilities documents
- Mark layers as transient so they are not persisted
- Clusterable in memory caching
- Prototype for OpenLayers 3 based layer preview
GeoWebCache 1.6.1 (2015-01-19)
----------------------------------
First maintenance release for the 1.6.x branch.
Improvements:
+++++++++++++
- Atomic File renaming on Windows.
Fixes:
++++++
- Correctly Initialize ImageIO SPIs
GeoWebCache 1.6.0 (2014-09-24)
----------------------------------
Final 1.6.0 version.
Improvements:
+++++++++++++
- GML3 MIME Type
Fixes:
++++++
- Fix double slashes in capabilities when gwc is deployed on root context '/'
- Transient Cache does not track removal of entries
- Transient Cache does not expire resources
- Parameters not passed down when running GetFeatureInfo
- Null checks on layer name when building conveyor
GeoWebCache 1.6.0-RC1 (2014-08-18)
----------------------------------
First release candidate for GeoWebCache 1.6.x.
Improvements:
+++++++++++++
- UTF-8 compiler setting
- Switch to new boundless maven repository
GeoWebCache 1.6.0-beta (2014-07-21)
------------------------------------
First beta release for GeoWebCache 1.6.x
Improvements:
+++++++++++++
- WMSTileFuser improvements
- Comprehensive proof reading of the docs
- Update to Java 7 (A Version 7 JRE is now required)
- Update to GeoTools 12
- Update to JTS 1.13
- Update to Guava 17
- Update to ImageIO-Ext 1.1.10
- Support for ArcGIS compact caches
Fixes:
++++++
- Fix ArcGISCompactCacheTest failure in path with spaces
- WMSTileFuser improvements
GeoWebCache 1.5.3 (2014-07-21)
------------------------------
Third maintenance release of GeoWebCache 1.5.x
Improvements:
+++++++++++++
- Increase Layer name field in DiscQuota DB to 128 chars
Fixes:
++++++
- NioLock can fail to release the memory lock going with it in some cases
- Fixed support for STYLE parameter in WMTS
- Fixed unescaped XML characters in capabilities documents
- Exception thrown when calling getCoverageIntersections on a GridSubset
- GeoWebCache complains about unrecognized element gwcConfig on startup
GeoWebCache 1.5.2 (2014-05-02)
------------------------------
Second maintenance release of GeoWebCache 1.5.x
Fixes:
++++++
- Fix a bug in FilePathFilter that prevented truncate tasks from running if the tile layer had a cache for more than one gridset
- Fixed a binary incompatible API change introduced in 1.5.1 by the additing of the abstract method TileLayer.getMetadataURLs(). Made it concrete and overridable by subclasses.
- Fixed config file schema version, was mistakenly set to 1.6.0 while it should be 1.5.0
GeoWebCache 1.5.1 (2014-01-19)
------------------------------
First maintenance release of GeoWebCache 1.5.x
Improvements:
+++++++++++++
* Add MetadataURL elements in WMS GetCapabilities if the information is present in the upstream
server
* Allow all layer types to cascade WMS requests other than GetMap/GetFeatureInfo
by implementing the ProxyLayer interface
* Initialize default values of TileLayers created by GetCapabilitiesConfiguration.
Fixes:
++++++
- Make sure the mandatory Style element is always present in the WMTS capabilities document
- BDB DiskQuota store does not create version.txt
GeoWebCache 1.5.0 (2013-08-18)
------------------------------
Final 1.5.0 version. (Same as beta)
GeoWebCache 1.5.0-beta (2013-07-17)
------------------------------
The begining of the first release cycle to be synchronized with GeoTools and GeoServer.
Improvements:
++++++++++++
- Configurable GetInfo MIME formats
- New ParameterFilter types can be added
- XStream configuration can be varied between REST and Config file contexts
- REST endpoint for mass truncating layers
Notable Bug Fixes:
+++++++++++++++++
- Code clean up, documentation, and revised dependencies
GeoWebCache 1.4.0 (2013-07-09)
------------------------------
After more than a year without a release and with GeoServer shipping with a
milestone of the GeoWebCache master, we've decided to synchronize releases with
GeoServer and GeoTools once every 6 months starting with GeoWebCache 1.5 to be
released in conjuntion with GeoServer 2.4. GeoWebCache 1.4 is based on the
milestone GeoServer was using and we are treating its use in GeoServer for
several months as being a successful release candidate.
Improvements:
++++++++++++
- Metastore removed
- Ability to create meaningful names for capabilities files
- Allow for new subtypes of ParameterFilter, and other ParameterFilter fixes
- Pluggable URL Mangling
- Disk quota over JDBC
- list layers through REST API
- Documentation improvements
Notable Bug Fixes:
+++++++++++++++++
- Fix an XSS vulnerability in OWSExceptions
- fix XSS vulnerability in ExceptionReport
- Force TileBreeder to drain currentPool.
- ArrayIndexOutOfBoundsException when producing WMTS capabilities with layers
that do cache grids
- Update global quota when a layer or a gridset is removed
- Fixed off by one error when converting between internal and WMTS coordinates
- Many other minor bug fixes
GeoWebCache 1.3-RC3 (2012-05-07)
--------------------------------
Improvements:
++++++++++++
- Added documentation on how to manage layers with the REST API.
- Added documentation on how to configure min/max cached zoom levels and pass-through to the backend WMS for the rest of the published zoom levels.
- Avoid reloading the whole configuration (twice) when a layer is added/changed through the REST API.
- Report back tile cache miss/hit, crs, gridset, and bounds as HTTP response headers. E.g.:
curl -v "http://localhost:8080/geowebcache/service/wms?LAYERS=.....
< HTTP/1.1 200 OK
< geowebcache-cache-result: HIT
< geowebcache-tile-index: [3, 5, 3]
< geowebcache-tile-bounds: -112.5,22.5,-90.0,45.0
< geowebcache-gridset: EPSG:4326
< geowebcache-crs: EPSG:4326
< Content-Type: image/gif
< Content-Length: 29083
- Various improvements to REST API to query and kill running tasks:
* Querying for the status of seed/truncate tasks returns an array sized by the actual number of submitted tasks instead of the thread pool capacity;
* Querying to /rest/seed.json returns the array of task status for all the layers, but querying to /rest/seed/.json returns only the submitted tasks for that specific layer;
* The returned array contains both running and pending tasks, with two extra bits of information: the task id and the status (pending, running, finished, or aborted);
* POST'ing to /rest/seed/ with the kill_all form parameter only kills tasks for that specific layer instead of for all layers;
* POST'ing to /rest/seed with the kill_all form parameter kills tasks for all layers;
* It is possible to specify whether to kill only the running tasks (previous behavior), pending tasks, or both running and pending.