Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Releases: 200Puls/darksky-forecast-api

2.1.0

25 Mar 06:06
Compare
Choose a tag to compare
  • Add new languages supported by Darksky
  • Upgrade Jackson
  • Fix decimal formatting on german system

2.0.2 Bugfix

04 Aug 08:55
89eac8c
Compare
Choose a tag to compare
  • fix issue 18 latitude and longitude sometimes appears in request URL in scientific notation resulting in a 400 response code

2.0.0 Java 9 modules

04 Aug 08:14
389ab5a
Compare
Choose a tag to compare
  • Support for java 9 modules
  • bugfix uvindexTime is Instant now
  • Added windGust to DataPoint
  • updates jackson dependency
  • bugfix latitude and longitude switched in main method of DarkSkyJacksonClient

1.3.1 Bugfix release

09 Jul 20:37
81569e9
Compare
Choose a tag to compare

This release contains just a single bugfix:

  • #12 Fixed deserialization of integer values for latitude and longitude

added fields

07 Mar 20:22
9dd5710
Compare
Choose a tag to compare

#11 Account for some changes in the darksky API:

Added fields:

daily data

  • temperatureHigh
  • temperatureHighTime
  • temperatureLow
  • temperatureLowTime
  • apparentTemperatureHigh
  • apparentTemperatureHighTime
  • apparentTemperatureLow
  • apparentTemperatureLowTime
  • windGust
  • windGustTime
  • uvIndex
  • uvIndexTime

hourly data

  • precipAccumulation

fields that were deprecated in darksky api are now marked deprecated:

daily data

  • temperatureMax
  • temperatureMaxTime
  • temperatureMin
  • temperatureMinTime
  • apparentTemperatureMax
  • apparentTemperatureMaxTime
  • apparentTemperatureMin
  • apparentTemperatureMinTime

fix java 8

30 Jan 21:28
88bbc28
Compare
Choose a tag to compare
  • Fix method being called that is only available in jdk9

configurable timeouts

29 Jan 22:19
Compare
Choose a tag to compare
  • Add support for configuring connect and read timeouts. Defaults remain at 6 seconds as before.

Usage in request:

    ForecastRequest request = new ForecastRequestBuilder()
	.timeouts(new Timeouts(Duration.ofMillis(1), Duration.ZERO))
	.....build();

Java 9 preparation

13 Jan 20:40
47b6276
Compare
Choose a tag to compare
  • Add AutomaticModuleName to manifest to ensure stable module names for Java 9 applications.
    Module names are tk.plogitech.darksky and tk.plogitech.darksky.jackson

1.0.0

11 Jan 21:21
8cf2e79
Compare
Choose a tag to compare
  • 1.0.0 stable release version
  • model classes are serializable
  • Upgrade Jackson to 2.9.3
  • move longitude / latitude classes to model package

darksky-forecast-api-0.10

07 Feb 20:15
Compare
Choose a tag to compare
  • fixed typo in API of ForecastRequestBuilder