Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: entsoeapi
Type: Package
Title: Client for the 'ENTSO-E' Transparency Platform API
Version: 1.1.0
Version: 1.1.1
Authors@R: c(person("Kenneth", "Rose", role=c("aut", "cph"), email="kennethrose82@gmail.com"),
person("Sándor", "Budai", role=c("aut", "cre", "cph"), email="sbudai.ga@gmail.com"))
Description: Provides a standardized R client for the 'ENTSO-E' (European Network of
Expand Down
6 changes: 5 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ export(tie_line_eic)
export(total_commercial_sched)
export(total_nominated_capacity)
importFrom(cachem,cache_mem)
importFrom(checkmate,assert_character)
importFrom(checkmate,assert_choice)
importFrom(checkmate,assert_count)
importFrom(checkmate,assert_data_frame)
importFrom(checkmate,assert_flag)
importFrom(checkmate,assert_integerish)
importFrom(checkmate,assert_string)
importFrom(checkmate,test_string)
importFrom(cli,cli_abort)
importFrom(cli,cli_alert)
importFrom(cli,cli_alert_danger)
Expand Down Expand Up @@ -122,7 +124,6 @@ importFrom(dplyr,rename_with)
importFrom(dplyr,select)
importFrom(dplyr,ungroup)
importFrom(httr2,req_headers)
importFrom(httr2,req_method)
importFrom(httr2,req_perform)
importFrom(httr2,req_progress)
importFrom(httr2,req_retry)
Expand All @@ -142,6 +143,7 @@ importFrom(lubridate,days)
importFrom(lubridate,duration)
importFrom(lubridate,parse_date_time)
importFrom(lubridate,year)
importFrom(lubridate,years)
importFrom(lubridate,ymd)
importFrom(snakecase,to_snake_case)
importFrom(stats,runif)
Expand All @@ -151,12 +153,14 @@ importFrom(stringr,str_detect)
importFrom(stringr,str_extract)
importFrom(stringr,str_match)
importFrom(stringr,str_match_all)
importFrom(stringr,str_remove)
importFrom(stringr,str_remove_all)
importFrom(stringr,str_replace)
importFrom(stringr,str_replace_all)
importFrom(stringr,str_split_1)
importFrom(stringr,str_sub)
importFrom(stringr,str_subset)
importFrom(stringr,str_to_lower)
importFrom(tidyr,fill)
importFrom(tidyr,nest)
importFrom(tidyr,unite)
Expand Down
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# entsoeapi v1.1.1 (2026-04-08)

## New functionality

- None.

## Changes

- Some queries are allowed to capture 1 year of the data as a maximum time span. But the leap year handling had not been elaborated yet. From this version the leap year cases are going to be handled nicely.
- Typos have fixed in the documentations.
- The `ENTSOE_PAT` is going to be checked to be in UUID v4 format from now on.
- The vignettes have been slightly adjusted.

## Miscellaneous

- The code base and the unit tests have been adjusted in such a way which makes the whole project more maintainable.

# entsoeapi v1.1.0 (2026-03-31)

## New functionality
Expand Down
1 change: 1 addition & 0 deletions R/constants.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.pd_alloc_eic <- "cio-lio/xml/allocated-eic-codes.xml"
.pd_csv_eic <- "/cio-lio/csv/"
.feed_url <- "https://external-api.tp.entsoe.eu/news/feed"
.test_token <- "497dcba3-ecbf-4587-a2dd-5eb0665e6880"
possible_eic_chars <- stats::setNames(
object = 0L:36L,
nm = c(as.character(0:9), LETTERS, "-")
Expand Down
Loading
Loading