NEWS


etn 3.0.0.9000

etn 3.0.0

Use etn on your computer 🎉

Credentials

::: {.callout-important} Breaking change! Action required :::

Your credentials (username and password) to connect to the ETN database are no longer passed via the connection argument. They are asked or retrieved from your .Renviron file every time you run a function.

Here is how you can migrate:

  1. Use the new ETN RStudio server (https://rstudio.europeantrackingnetwork.org). The LifeWatch RStudio server (https://rstudio.lifewatch.be) won't work with this version of etn and will be discontinued.

  2. Follow the steps in vignette("authentication") to look up and store your credentials.

  3. Update your scripts:

    # Good
    get_animals(animal_id = 305)
    
    # Bad
    connect_to_etn()
    get_animals(con, animal_id = 305)
    get_animals(connection = con, animal_id = 305)
    

Accessing data

Changes for developers

Miscellaneous

etn 2.2.2

Bug fixes

Miscellaneous

etn 2.2.1

etn 2.2.0

etn 2.1.0

etn 2.0.0

This releases updates the package to make use of the new model and scope of ETN. Have a look at this milestone for all issues that are included.