Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update snakeyaml to 1.25 #2987

Merged
merged 2 commits into from
Aug 16, 2019

Commits on Aug 14, 2019

  1. Configuration menu
    Copy the full SHA
    b1b4f6b View commit details
    Browse the repository at this point in the history
  2. Fix compile error when loading the build

    With the new version, the build fails to load with this error:
    ```
    [info] Compiling 2 Scala sources to /home/travis/build/typelevel/cats/project/target/scala-2.12/sbt-1.0/classes ...
    [info] Done compiling.
    /home/travis/build/typelevel/cats/build.sbt:43: error: value asScala is not a member of Nothing
          .collect { case map: java.util.Map[_, _] => map.asScala.toList }
                                                          ^
    [error] Type error in expression
    ```
    
    I've no idea why this happens, but this change fixes it. I've verified
    that `crossScalaVersions` still contains the versions from `.travis.yml`:
    
    ```
    sbt:cats> coreJVM/crossScalaVersions
    [info] * 2.11.12
    [info] * 2.12.9
    [info] * 2.13.0
    ```
    fthomas committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    7df6bf2 View commit details
    Browse the repository at this point in the history