-
Notifications
You must be signed in to change notification settings - Fork 281
/
RELEASE_NOTES.txt
1327 lines (954 loc) · 36.3 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.27.0(2025-03-18)
------------------------------
Stable release
Improvements:
+++++++++++++
- <New feature>
Fixes:
++++++
- <Bug fix>
GeoWebCache 1.26.0 (2024-09-18)
-------------------------------
Stable release
Improvements:
+++++++++++++
- Show vector tiles attributes on hover
Fixes:
++++++
- Fix Azure blobstore error instantiating AzureClient
- Support numeric grid names in vector tiles preview
Updates:
++++++++
- Upgrading to Imageio-EXT 1.4.13
- Upgrading JAI-EXT 1.1.27
- Upgrading GeoTools 32.0
- Upgrade Azure Blobstore fromi legacy azure-sdk (11.0) to latest (12.27.0)
- Update to JTS 1.20.0 release
- Upgrade Spring version from 5.3.34 to 5.3.39
- [GWC-1288] Upgrade guava from 33.2.0 to 33.2.1
- Update Jackson 2 libs from 2.17.1 to 2.17.2
- Updating to EasyMock 5.3
Internals:
++++++++++
- Upgrade easymock from 5.3.0 to 5.4.0
- Upgrade mockito from 5.6.0 to 5.12.0
- Upgrade git-commit-id-plugin to 4.9.0 and set useNativeGit to not fail on git worktrees
- [GWC-1290] Upgrade commons-codec from 1.17.0 to 1.17.1
- [GWC-1293] Upgrade junit from 4.12 to 4.13.2
- Upgrade hamcrest from 1.3 to 3.0
- Updating PMD to 7.2.0
GeoWebCache 1.25.2 (2024-06-15)
-------------------------------
Stable release of the 1.25.x series.
Improvements:
+++++++++++++
- Upgrading to Imageio-EXT 1.4.11
- [GWC-1266] Upgrade jackson from 2.15.2 to 2.17.1
- [GWC-1261] Upgrade commons-text from 1.4 to 1.12.0
- [GWC-1259] Upgrade PostgreSQL driver from 42.7.2 to 42.7.3
- [GWC-1263] Upgrade commons-codec from 1.10 to 1.17.0
- Upgrade ImageIO-EXT to 1.4.12
GeoWebCache 1.25.1 (2024-05-22)
-------------------------------
Stable release of the 1.25.x series.
Improvements:
+++++++++++++
- Align FileBlobStore with parameter handling practice of S3/Azure
- Bump guava from 32.0.0 to 33.2.0
- Bump httpclient from 4.5.13 to 4.5.14
- Bump commons-collections4 from 4.2 to 4.4
- Bump commons-io from 2.12.0 to 2.16.1
- Upgraded GeoTools dependencies to 31.1
- Updating imageio-ext to 1.4.10
GeoWebCache 1.25.0 (2024-03-19)
-------------------------------
First stable release of the 1.25.x series
Improvements:
+++++++++++++
- Upgraded GeoTools dependencies to 31.0
GeoWebCache 1.25-RC (2024-03-01)
--------------------------------
Release candidate for 1.25.x series.
Improvements:
+++++++++++++
- Updating Spring to 5.3.32
- Bump org.postgresql:postgresql from 42.4.3 to 42.7.2
- Bump org.springframework.security:spring-security-config 5.7.11
Fixes:
++++++
- [GWC-1210] Improve input validation in ByteStreamController (#1211)
Internals:
++++++++++
- Upgrade spotbugs-maven-plugin:4.7.3.4 -> 4.8.2.0
- Fix PMD errors in core when run with Java 21
- Allow building with QA on Java 17 and 21
GeoWebCache 1.24.5 (2024-08-21)
-------------------------------
Maintenance release of the 1.24.x series
Fixes:
++++++
- Fix Azure blobstore error instantiating AzureClient
GeoWebCache 1.24.4 (2024-06-16)
-------------------------------
Maintenance release of the 1.24.x series
Improvements:
+++++++++++++
- Align FileBlobStore with parameter handling practice of S3/Azure
- [GWC-1248] Upgrade guava from 32.0.0 to 33.2.0
- [GWC-1244] Upgrade commons-collections4 from 4.2 to 4.4
- [GWC-1245] Upgrade httpclient from 4.5.13 to 4.5.14
- [GWC-1261] Upgrade commons-text from 1.4 to 1.12.0
- [GWC-1259] Upgrade PostgreSQL driver from 42.7.2 to 42.7.3
- [GWC-1263] Upgrade commons-codec from 1.10 to 1.17.0
GeoWebCache 1.24.3 (2024-04-19)
-------------------------------
Maintenance release of the 1.24.x series
Improvements:
+++++++++++++
- Update Spring to version 5.3.32
- Bump org.postgresql:postgresql from 42.4.3 to 42.7.2
Fixes:
++++++
- Avoid infinite number of calls to listBlobs when doing prefix removals (e..g, gridset or layer removals)
GeoWebCache 1.24.2 (2024-01-23)
-------------------------------
Stable release for 1.24.x series.
Improvements:
+++++++++++++
- [GWC-1198] Upgrade Hazelcast from 5.3.1 to 5.3.6
- Bump com.google.guava:guava from 27.0-jre to 32.0.0-jre
GeoWebCache 1.24.1 (2023-11-23)
-------------------------------
Stable release for 1.24.x series.
Improvements:
+++++++++++++
- Improve handling special characters in the GWC Seed Form
- Improve handling special characters in the GWC Demos Page
- Bump org.json:json from 20230618 to 20231013
- Bump org.springframework.security:spring-security-config to 5.7.10
Fixes:
++++++
- Fix for S3BlobStore bulk delete (without listener
- Fix mime type text/javascript
GeoWebCache 1.24.0 (2023-10-13)
--------------------------------
Initial release for 1.24.x series.
Improvements:
+++++++++++++
* Update to org.json:json to 20230618
* Update to GeoTools 30.0
GeoWebCache 1.24-RC (2023-09-22)
--------------------------------
Release candidate for the 1.24.x series.
Improvements:
+++++++++++++
- Follow up on GeoTools "org.opengis" package removal (now "org.geotools.api")
- Updated Hazelcast to 5.3.1
- Updated Jackson to 2.15.2
- Bump aws-java-sdk-s3 from 1.11.371 to 1.12.261
- Add support for HSQL disk quota database, and make H2 1.x dependency optional
Fixes:
++++++
- Startup DiskQuotaMonitor on context init, rather than immediatley after bean properties are set
GeoWebCache 1.23.4 (2024-02-19)
-------------------------------
Maintenance release for the 1.23.x series.
Improvements:
+++++++++++++
- [GWC-1210] Improve input validation in ByteStreamController
- Bump org.springframework.security:spring-security-config in from 5.7.10 to 5.7.11
GeoWebCache 1.23.3 (2023-12-20)
-------------------------------
Stable release for the 1.23.x series
Improvements:
+++++++++++++
- Bump com.google.guava:guava from 27.0-jre to 32.0.0-jre in /geowebcache
- Bump org.springframework.security:spring-security-config in /geowebcache
- [GWC-1171] Improve handling special characters in the GWC Demos Page
Fixes:
++++++
- Fix typo in TextMime for text/javascript
GeoWebCache 1.23.2 (2023-10-30)
-------------------------------
Stable release for the 1.23.x series
Improvements:
+++++++++++++
- Bump org.json:json from 20230618 to 20231013
- [GWC-1172] Improve handling special characters in the GWC Seed Form
- Update to sphinx-build 7, fixing style error
Fixes:
++++++
- #1157: Fix for S3BlobStore bulk delete (without listeners)
GeoWebCache 1.23.1 (2023-07-20)
-------------------------------
Stable release for the 1.23.x series
Improvements:
+++++++++++++
- Add hsql to disk quota make H2 optional
GeoWebCache 1.23.0 (2023-04-03)
-------------------------------
Initial release for the 1.23 series
Improvements:
+++++++++++++
- Java 11 minimum
Fixes:
++++++
- Seeding GWC doesn't work for layers with a dot in the name (GEOS-10006)
GeoWebCache 1.23-RC1 (2023-03-09)
---------------------------------
Release candidate for the 1.23 series.
Improvements:
+++++++++++++
- Upgraded Spring to 5.3.25
- Upgraded Spring security to 5.7.6
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.21-RC (2022-05-05)
--------------------------------
Release candidate for 1.21.x series.
Improvements:
+++++++++++++
- Updated to imageio-ext-1.4.0 supporting GDAL 3
- 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.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.