Skip to content

Releases: jirkapinkas/jsitemapgenerator

version 4.5

02 May 08:21
Compare
Choose a tag to compare

4.4

18 Dec 18:33
Compare
Choose a tag to compare
4.4
  • fixed new ping functionality

4.3

08 Dec 18:52
Compare
Choose a tag to compare
4.3
  • completely rewritten ping Google / Bing functionality

4.2

06 Dec 07:46
Compare
Choose a tag to compare
4.2
  • New methods: *Generator::toFile(String first, String ... more), *Generator::toFile(File parent, String child)

4.1

06 Dec 00:21
Compare
Choose a tag to compare
4.1
  • This release is so that it's easier to use jsitemapgenerator with AWS Lambda
  • Fix ping google / bing functionality so that OkHttp cleans up all resources after itself.
  • Generator::toFile, Generator::toString etc. now returns current Generator object so that it's possible to easily call pingGoogle() after sitemap generation
  • Several new useful methods on Generator classes: toString(Consumer), toPrettyString(indent, Consumer), toGzipByteArray(Consumer<byte[]>), toFile((Supplier) so that it's even more flexible to store data somewhere and then call for example pingGoogle()
  • New method: WebPage.of(String ... names)

4.0

09 Nov 19:48
Compare
Choose a tag to compare
4.0
  • This release is not backwards-compatible!!! In this release I removed long-time deprecated methods and classes. Before upgrading to this version upgrade first to 3.16, fix all deprecations (FYI: Javadocs will be very helpful) and then upgrade to 4.0
  • added toPrettyString(indent) method to sitemap generators
  • moved from JUnit 4 to JUnit 5
  • more test

3.16

08 Nov 22:03
Compare
Choose a tag to compare
  • Added base url for images and check for relative & absolute URLs #8
  • Fixed double dash in various places #14
  • XML escaping for image tags #12
  • Simplified toFile() so that it automatically calls mkdirs method to create necessary directories #13
  • Cleanup, better tests & documentation

version 3.14

23 Feb 18:58
Compare
Choose a tag to compare
  • fixed RssGenerator so that it correctly uses default dir & extension the same way as in SitemapGenerators

version 3.13

01 Feb 18:46
Compare
Choose a tag to compare

Added several useful methods in order to simplify creation of pages:

  • *Generator.addPage(String)
  • *Generator.addPage(Supplier)
  • *Generator.addPageNames(Collection, Function<T, String>)

version 3.12

31 Jan 15:52
Compare
Choose a tag to compare
  • API cleanup
  • enhanced sitemap index with default values
  • added more default values
  • added run() method to Generators, which can be used to set up some data before adding pages