├── tests ├── resources │ ├── File2.txt │ └── File.txt ├── jvm │ ├── FileReadText.sc │ ├── DirGetTotalSize.sc │ ├── RequestPost.sc │ ├── RequestGet.sc │ └── SimpleTest.test.scala ├── native │ ├── FileReadText.sc │ ├── DirGetTotalSize.sc │ ├── RequestPost.sc │ ├── SimpleTest.test.scala │ └── RequestGet.sc ├── shared │ ├── JsonWriting.sc │ └── JsonReading.sc ├── js │ ├── RequestPost.sc │ └── RequestGet.sc └── CrossPlatform.test.scala ├── examples ├── resources │ ├── File2.txt │ └── File.txt ├── FileReadText.sc ├── DirGetTotalSize.sc ├── RequestGet.sc ├── JsonWriting.sc ├── RequestPost.sc ├── JsonReading.sc └── SimpleTest.test.scala ├── .gitignore ├── changelog ├── exceptions.txt ├── project.scala ├── Utility.scala ├── Platform.scala ├── ChangelogException.scala ├── Config.scala ├── Changelog.scala ├── 0.6.0 │ ├── toolkit_0.6.0_3_changelog.md │ ├── toolkit_0.6.0_2.13_changelog.md │ ├── toolkit_0.6.0_sjs1_3_changelog.md │ ├── toolkit_0.6.0_native0.5_3_changelog.md │ ├── toolkit_0.6.0_sjs1_2.13_changelog.md │ ├── toolkit_0.6.0_native0.5_2.13_changelog.md │ ├── toolkit-test_0.6.0_3_changelog.md │ ├── toolkit-test_0.6.0_sjs1_3_changelog.md │ ├── toolkit-test_0.6.0_2.13_changelog.md │ ├── toolkit-test_0.6.0_native0.5_3_changelog.md │ ├── toolkit-test_0.6.0_sjs1_2.13_changelog.md │ └── toolkit-test_0.6.0_native0.5_2.13_changelog.md ├── 0.5.0 │ ├── toolkit_0.5.0_3_changelog.md │ ├── toolkit_0.5.0_2.13_changelog.md │ ├── toolkit_0.5.0_sjs1_3_changelog.md │ ├── toolkit_0.5.0_sjs1_2.13_changelog.md │ ├── toolkit_0.5.0_native0.5_3_changelog.md │ ├── toolkit_0.5.0_native0.5_2.13_changelog.md │ └── toolkit-test_0.5.0_sjs1_3_changelog.md ├── 0.4.0 │ ├── toolkit_0.4.0_native0.5_3_changelog.md │ ├── toolkit_0.4.0_native0.5_2.13_changelog.md │ ├── toolkit_0.4.0_3_changelog.md │ ├── toolkit_0.4.0_2.13_changelog.md │ ├── toolkit-test_0.4.0_native0.5_3_changelog.md │ ├── toolkit_0.4.0_sjs1_3_changelog.md │ ├── toolkit_0.4.0_sjs1_2.13_changelog.md │ └── toolkit-test_0.4.0_native0.5_2.13_changelog.md ├── 0.2.1 │ ├── toolkit_0.2.1_3_changelog.md │ ├── toolkit_0.2.1_2.13_changelog.md │ ├── toolkit_0.2.1_native0.4_3_changelog.md │ └── toolkit_0.2.1_native0.4_2.13_changelog.md ├── 0.8.0 │ ├── toolkit_0.8.0_3_changelog.md │ ├── toolkit_0.8.0_2.13_changelog.md │ ├── toolkit-test_0.8.0_3_changelog.md │ ├── toolkit_0.8.0_native0.5_3_changelog.md │ └── toolkit-test_0.8.0_2.13_changelog.md ├── 0.7.0 │ ├── toolkit_0.7.0_3_changelog.md │ ├── toolkit_0.7.0_2.13_changelog.md │ ├── toolkit_0.7.0_sjs1_3_changelog.md │ ├── toolkit_0.7.0_native0.5_3_changelog.md │ ├── toolkit_0.7.0_sjs1_2.13_changelog.md │ └── toolkit_0.7.0_native0.5_2.13_changelog.md ├── 0.2.0 │ ├── toolkit-test_0.2.0_3_changelog.md │ ├── toolkit-test_0.2.0_2.13_changelog.md │ └── toolkit-test_0.2.0_native0.4_3_changelog.md ├── 0.3.0 │ ├── toolkit_0.3.0_3_changelog.md │ └── toolkit_0.3.0_2.13_changelog.md └── ChangelogGeneration.scala ├── ToolkitTest.scala ├── Toolkit.js.scala ├── Toolkit.scala ├── .github └── workflows │ ├── cla.yml │ └── test.yaml ├── SECURITY.md ├── publish-conf.scala ├── README.md └── CONTRIBUTING.md /tests/resources/File2.txt: -------------------------------------------------------------------------------- 1 | Foo Foo -------------------------------------------------------------------------------- /examples/resources/File2.txt: -------------------------------------------------------------------------------- 1 | Foo Foo -------------------------------------------------------------------------------- /examples/resources/File.txt: -------------------------------------------------------------------------------- 1 | Test Test 2 | Foo Bar -------------------------------------------------------------------------------- /tests/resources/File.txt: -------------------------------------------------------------------------------- 1 | Test Test 2 | Foo Bar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .metals/ 2 | .scala-build/ 3 | .vscode/ 4 | .bsp/ 5 | *.asc 6 | *SECRET -------------------------------------------------------------------------------- /changelog/exceptions.txt: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | 0.3.0 3 | 0.4.0 4 | 0.5.0 5 | 0.6.0 6 | 0.7.0 7 | -------------------------------------------------------------------------------- /ToolkitTest.scala: -------------------------------------------------------------------------------- 1 | //> using scala 2.13, 3.3 2 | //> using publish.name toolkit-test 3 | //> using dep org.scalameta::munit::1.1.0 4 | -------------------------------------------------------------------------------- /changelog/project.scala: -------------------------------------------------------------------------------- 1 | //> using toolkit 0.6.0 2 | //> using dep io.get-coursier:coursier_2.13:2.1.14 3 | //> using scala 3.3 4 | -------------------------------------------------------------------------------- /examples/FileReadText.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit latest 2 | 3 | val text = os.read(os.pwd / "resources" / "File.txt") 4 | println(text) 5 | -------------------------------------------------------------------------------- /tests/jvm/FileReadText.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | val text = os.read(os.pwd / "tests" / "resources" / "File.txt") 4 | println(text) 5 | //$ Test Test 6 | //$ Foo Bar -------------------------------------------------------------------------------- /tests/native/FileReadText.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | val text = os.read(os.pwd / "tests" / "resources" / "File.txt") 4 | println(text) 5 | //$ Test Test 6 | //$ Foo Bar -------------------------------------------------------------------------------- /examples/DirGetTotalSize.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | val totalSize = os.walk.stream.attrs(os.pwd) 4 | .collect { case (path, attrs) if attrs.isFile => attrs.size } 5 | .sum 6 | 7 | println(totalSize) 8 | -------------------------------------------------------------------------------- /changelog/Utility.scala: -------------------------------------------------------------------------------- 1 | object Utility: 2 | def requireCmd(cmd: String): Unit = 3 | if os.proc("which", cmd).call(check = false).exitCode != 0 then 4 | println(s"Please install $cmd") 5 | sys.exit(1) 6 | -------------------------------------------------------------------------------- /examples/RequestGet.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import sttp.client4.quick.* 4 | 5 | val request = quickRequest.get(uri"https://httpbin.io/get") 6 | val response = request.send() 7 | 8 | println(response.body) 9 | 10 | -------------------------------------------------------------------------------- /tests/jvm/DirGetTotalSize.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | val totalSize = os.walk.stream.attrs(os.pwd / "tests" / "resources") 4 | .collect { case (path, attrs) if attrs.isFile => attrs.size } 5 | .sum 6 | 7 | println(totalSize) //$ 24 8 | -------------------------------------------------------------------------------- /tests/native/DirGetTotalSize.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | val totalSize = os.walk.stream.attrs(os.pwd / "tests" / "resources") 4 | .collect { case (path, attrs) if attrs.isFile => attrs.size } 5 | .sum 6 | 7 | println(totalSize) //$ 24 8 | -------------------------------------------------------------------------------- /Toolkit.js.scala: -------------------------------------------------------------------------------- 1 | //> using scala 2.13, 3.3 2 | //> using publish.name toolkit 3 | //> using dep com.softwaremill.sttp.client4::core::4.0.13 4 | //> using dep com.softwaremill.sttp.client4::upickle::4.0.13 5 | //> using dep com.lihaoyi::upickle::4.1.0 6 | -------------------------------------------------------------------------------- /tests/jvm/RequestPost.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import sttp.client4.quick.* 4 | 5 | val response = basicRequest 6 | .post(uri"https://example.com/") 7 | .body("Lorem ipsum") 8 | .send() 9 | 10 | println(response.code) 11 | //$ 403 12 | -------------------------------------------------------------------------------- /tests/native/RequestPost.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import sttp.client4.quick.* 4 | 5 | val response = basicRequest 6 | .post(uri"https://example.com/") 7 | .body("Lorem ipsum") 8 | .send() 9 | 10 | println(response.code) 11 | //$ 403 12 | -------------------------------------------------------------------------------- /examples/JsonWriting.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import upickle.default._ 4 | 5 | case class PetOwner(name: String, pet: String) derives ReadWriter 6 | val petOwner = PetOwner("Peter", "Toolkitty") 7 | val json = write(petOwner) 8 | 9 | println(json) 10 | -------------------------------------------------------------------------------- /examples/RequestPost.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import sttp.client4.quick.* 4 | import scala.util.Try 5 | 6 | val response = Try(quickRequest 7 | .post(uri"https://example.com/") 8 | .body("Lorem ipsum") 9 | .send() 10 | ) 11 | 12 | println(response) 13 | -------------------------------------------------------------------------------- /Toolkit.scala: -------------------------------------------------------------------------------- 1 | //> using scala 2.13, 3.3 2 | //> using publish.name toolkit 3 | //> using dep com.softwaremill.sttp.client4::core::4.0.13 4 | //> using dep com.softwaremill.sttp.client4::upickle::4.0.13 5 | //> using dep com.lihaoyi::upickle::4.4.1 6 | //> using dep com.lihaoyi::os-lib::0.11.3 7 | -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- 1 | name: "Check Scala CLA" 2 | on: 3 | pull_request: 4 | jobs: 5 | cla-check: 6 | runs-on: ubuntu-latest 7 | steps: 8 | - name: Verify CLA 9 | uses: scala/cla-checker@v1 10 | with: 11 | author: ${{ github.event.pull_request.user.login }} 12 | -------------------------------------------------------------------------------- /tests/shared/JsonWriting.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import upickle.default._ 4 | 5 | case class PetOwner(name: String, pet: String) derives ReadWriter 6 | val petOwner = PetOwner("Peter", "Toolkitty") 7 | val json = write(petOwner) 8 | 9 | println(json) 10 | //$ {"name":"Peter","pet":"Toolkitty"} -------------------------------------------------------------------------------- /examples/JsonReading.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import upickle.default._ 4 | 5 | case class PetOwner(name: String, pet: String) derives ReadWriter 6 | val jsonString = """{"name": "Peter", "pet": "Toolkitty"}""" 7 | val petOwner: PetOwner = read[PetOwner](jsonString) 8 | 9 | println(petOwner) 10 | -------------------------------------------------------------------------------- /tests/jvm/RequestGet.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import sttp.client4.quick.* 4 | 5 | val request = quickRequest.get(uri"https://httpbin.io/get") 6 | val response = request.send() 7 | 8 | val urlLine = response.body.linesIterator.find(_.contains("url")).get 9 | println(urlLine) //$ "url": "https://httpbin.io/get" -------------------------------------------------------------------------------- /tests/shared/JsonReading.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | import upickle.default._ 4 | 5 | case class PetOwner(name: String, pet: String) derives ReadWriter 6 | val jsonString = """{"name": "Peter", "pet": "Toolkitty"}""" 7 | val petOwner: PetOwner = read[PetOwner](jsonString) 8 | 9 | println(petOwner) 10 | //$ PetOwner(Peter,Toolkitty) -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | The details about the security policy of the Scala Programming Language organisation can be found in [https://scala-lang.org/security](https://scala-lang.org/security). 4 | 5 | For any additional information related to our security policy, please contact [security@scala-lang.org](mailto:security@scala-lang.org). 6 | -------------------------------------------------------------------------------- /changelog/Platform.scala: -------------------------------------------------------------------------------- 1 | enum Platform: 2 | case Jvm, Js, Native 3 | 4 | def scalaCliOptions: Seq[String] = this match 5 | case Jvm => Seq.empty 6 | case Js => Seq("--js") 7 | case Native => Seq("--native") 8 | 9 | def binarySuffix: String = this match 10 | case Jvm => "" 11 | case Js => "_sjs1" 12 | case Native => "_native0.5" 13 | -------------------------------------------------------------------------------- /examples/SimpleTest.test.scala: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | class MathSuite extends munit.FunSuite { 4 | test("addition") { 5 | assert(1 + 1 == 2) 6 | } 7 | 8 | test("read a missing file") { 9 | val missingFile = os.pwd / "missing.txt" 10 | intercept[java.nio.file.NoSuchFileException] { 11 | os.read(missingFile) 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/jvm/SimpleTest.test.scala: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | class MathSuite extends munit.FunSuite { 4 | test("addition") { 5 | assert(1 + 1 == 2) 6 | } 7 | 8 | test("read a missing file") { 9 | val missingFile = os.pwd / "missing.txt" 10 | intercept[java.nio.file.NoSuchFileException] { 11 | os.read(missingFile) 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/native/SimpleTest.test.scala: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | 3 | class MathSuite extends munit.FunSuite { 4 | test("addition") { 5 | assert(1 + 1 == 2) 6 | } 7 | 8 | test("read a missing file") { 9 | val missingFile = os.pwd / "missing.txt" 10 | intercept[java.nio.file.NoSuchFileException] { 11 | os.read(missingFile) 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/native/RequestGet.sc: -------------------------------------------------------------------------------- 1 | //> using dep com.softwaremill.sttp.client4::core::4.0.0-M14 2 | //> using platform native 3 | 4 | import sttp.client4.quick.* 5 | 6 | val request = quickRequest.get(uri"https://httpbin.io/get") 7 | val response = request.send() 8 | 9 | val urlLine = response.body.linesIterator.find(_.contains("url")).get 10 | println(urlLine) //$ "url": "https://httpbin.io/get" 11 | -------------------------------------------------------------------------------- /tests/js/RequestPost.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | //> using platform scala-js 3 | 4 | import scala.concurrent.ExecutionContext.Implicits.global 5 | 6 | import sttp.client4.* 7 | 8 | val backend = DefaultFutureBackend() 9 | val request = basicRequest 10 | .post(uri"https://example.com/") 11 | .body("Lorem ipsum") 12 | 13 | for response <- backend.send(request) do 14 | println(response.code) 15 | //$ 403 16 | -------------------------------------------------------------------------------- /changelog/ChangelogException.scala: -------------------------------------------------------------------------------- 1 | enum ChangelogException extends Exception: 2 | case AlreadyExists() 3 | case IllegalDiffs() 4 | case UserRejection() 5 | 6 | override def getMessage(): String = 7 | this match 8 | case AlreadyExists() => "Changelog file already exists. Please use --overwrite to overwrite it." 9 | case IllegalDiffs() => "Cannot generate changelog due to illegal diffs." 10 | case UserRejection() => "Rejected changes." 11 | -------------------------------------------------------------------------------- /tests/js/RequestGet.sc: -------------------------------------------------------------------------------- 1 | //> using toolkit default 2 | //> using platform scala-js 3 | 4 | import scala.concurrent.ExecutionContext.Implicits.global 5 | import scala.scalajs.js.timers 6 | 7 | import sttp.client4.quick.* 8 | 9 | val request = quickRequest.get(uri"https://httpbin.io/get") 10 | 11 | for response <- request.send() do 12 | val urlLine = response.body.linesIterator.find(_.contains("url")).get 13 | println(urlLine) //$ "url": "https://httpbin.io/get" 14 | -------------------------------------------------------------------------------- /publish-conf.scala: -------------------------------------------------------------------------------- 1 | //> using publish.organization org.scala-lang 2 | //> using publish.computeVersion git:tag 3 | //> using publish.url https://github.com/scala/toolkit 4 | //> using publish.vcs github:scala/toolkit 5 | //> using publish.license Apache-2.0 6 | //> using publish.repository central 7 | //> using publish.developer "szymon-rd|Simon R|https://github.com/szymon-rd" 8 | //> using publish.developer "adpi2|Adrien Piquerez|https://github.com/adpi2" 9 | //> using repository sonatype:public 10 | -------------------------------------------------------------------------------- /changelog/Config.scala: -------------------------------------------------------------------------------- 1 | import Dependencies.Version 2 | import scala.util.Properties 3 | 4 | case class Config(organization: String, outputDir: os.Path, releaseVersion: Version, developmentVersion: Version) 5 | 6 | object Config: 7 | def loadFromEnv: Config = 8 | val organization = Properties.envOrElse("TOOLKIT_ORG", "org.scala-lang") 9 | val outputDir = Properties.envOrNone("CHANGELOG_DIR").map(os.Path(_)).getOrElse(os.pwd / "changelog") 10 | val releaseVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_RELEASE", "0.7.0")) 11 | val developmentVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_DEVELOPMENT", "0.8.0")) 12 | Config(organization, outputDir, releaseVersion, developmentVersion) 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # The Scala Toolkit 2 | 3 | The batteries-included Scala. Read about the Scala Toolkit in [scala-lang tutorials](https://docs.scala-lang.org/toolkit/introduction.html). 4 | 5 | ## Using the Scala Toolkit 6 | 7 | You can already use it from [Scala CLI](https://scala-cli.virtuslab.org/): 8 | ```scala 9 | //> using toolkit default 10 | ``` 11 | 12 | Or by including the latest Toolkit artifact in your build file: `org.scala-lang::toolkit:0.2.0` 13 | 14 | ## Dependencies changelog 15 | In the `changelog` directory you can find a list of changes in the dependencies of the Scala Toolkit, including transitive ones. 16 | 17 | ## How to update the dependencies? How to release the toolkit? 18 | 19 | Check out the [Contributing Guide](CONTRIBUTING.md). 20 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- 1 | name: Tests 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | 8 | jobs: 9 | test: 10 | name: Tests 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Check out code 14 | uses: actions/checkout@v4 15 | with: 16 | fetch-depth: 0 17 | 18 | - uses: coursier/cache-action@v6.3 19 | 20 | - name: Setup Scala CLI 21 | uses: VirtusLab/scala-cli-setup@main 22 | 23 | - name: Run changelog tests 24 | run: scala-cli test changelog 25 | 26 | - name: Check changelog compliance 27 | run: scala-cli changelog 28 | 29 | - name: Install libidn2-dev libcurl3-dev for sttp on Native 30 | run: | 31 | sudo apt-get update 32 | sudo apt-get install libidn2-dev libcurl3-dev 33 | 34 | - name: Run cross-platform tests 35 | run: scala-cli test tests/CrossPlatform.test.scala 36 | 37 | - name: Compile and run examples 38 | run: | 39 | cd examples 40 | for file in *.sc 41 | do 42 | scala-cli "$file" 43 | done 44 | 45 | - name: Compile and test examples 46 | run: | 47 | cd examples 48 | for file in *.test.scala 49 | do 50 | scala-cli test "$file" 51 | done 52 | -------------------------------------------------------------------------------- /changelog/Changelog.scala: -------------------------------------------------------------------------------- 1 | import Dependencies.* 2 | 3 | @main 4 | def main(args: String*) = 5 | try 6 | Utility.requireCmd("scala-cli") 7 | val overwrite = args.contains("--overwrite") 8 | val yes = args.contains("--yes") 9 | val config = Config.loadFromEnv 10 | val exceptionsPath = os.pwd / "changelog" / "exceptions.txt" 11 | val exceptions = 12 | if os.exists(exceptionsPath) then 13 | os.read(exceptionsPath).split("\n").map(_.trim).filter(_.nonEmpty).toSeq 14 | else Seq.empty 15 | val changelogChecker = ChangelogChecker(Config.loadFromEnv, exceptions, overwrite, yes) 16 | changelogChecker.check(os.pwd / "Toolkit.scala", "toolkit", Platform.Jvm) 17 | changelogChecker.check(os.pwd / "Toolkit.scala", "toolkit", Platform.Native) 18 | changelogChecker.check(os.pwd / "Toolkit.js.scala", "toolkit", Platform.Js) 19 | val toolkitTestFile = addToolkitDependency(os.pwd / "ToolkitTest.scala", config.organization, config.developmentVersion) 20 | changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Jvm) 21 | changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Native) 22 | changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Js) 23 | catch 24 | case e: ChangelogException => 25 | Console.err.println("Exiting with failure status (1). " + e.getMessage) 26 | sys.exit(1) 27 | 28 | private def addToolkitDependency(file: os.Path, organization: String, version: Version): os.Path = 29 | val copy = os.temp(os.read(file), suffix = ".scala") 30 | val moduleDep = s"$organization::toolkit::$version" 31 | os.write.append(copy, s"\n//> using dep ${moduleDep}") 32 | copy 33 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guide 2 | 3 | ## Running the tests 4 | 5 | 1. Update to latest scala-cli: 6 | ``` 7 | $ scala-cli update 8 | ``` 9 | or, if installed with Coursier: 10 | ``` 11 | $ cs update scala-cli 12 | ``` 13 | 2. Run the tests: 14 | ``` 15 | $ scala-cli test tests/CrossPlatform.test.sscala 16 | ``` 17 | 18 | ## Updating dependencies 19 | 20 | 1. You can update the Toolkit dependencies in `Toolkit.scala`, `Toolkit.js.scala` and `ToolkitTest.scala`. The versions in `Toolkit.scala` and `Toolkit.js.scala` should be the same. 21 | 22 | 2. After changing the dependencies, you must generate the changelog: 23 | 24 | - Check that the config in `changelog/Config.scala` is up-to-date: `releaseVersion` should contain the latest released version and `developmentVersion` should contain the next version to release. 25 | - Run `scala-cli run changelog -- --overwrite` to generate the changelog 26 | - If the generation fails because of illegal version bumps, you can add the development version in `exceptions.txt` and run `scala-cli run changelog -- --overwrite` again. (This won't be permitted anymore after 1.0.0 which will be the first stable version) 27 | - Commit and push the changes in the changelog 28 | 29 | ## Releasing the Toolkit 30 | 31 | 1. [Create a new release](https://github.com/scala/toolkit/releases/new) in the Github repo 32 | 33 | 2. Create a new `0.x.y` tag in the `Choose a tag` dropdown list 34 | 35 | 3. Copy, paste the release description below, and update the versions: 36 | 37 | ```md 38 | ## Changes to direct dependencies for toolkit 39 | - Updated `com.lihaoyi:os-lib` from `0.10.0` to `0.10.3` 40 | - Updated `com.lihaoyi:upickle` from `3.3.0` to `3.3.1` 41 | - Updated `com.softwaremill.sttp.client4:core` from `4.0.0-M14` to `4.0.0-M16` 42 | - Updated `com.softwaremill.sttp.client4:upickle` from `4.0.0-M14` to `4.0.0-M16` 43 | 44 | ## Changes to direct dependencies for toolkit-test 45 | - Updated `org.scalameta:munit` from `1.0.0-M11` to `1.0.0` 46 | ``` 47 | 48 | 4. Validate by clicking the `Publish release` button. 49 | 50 | 5. Check that the `Publish toolkit` action starts, and runs successfully. The new version should appear on [Maven Central](https://repo1.maven.org/maven2/org/scala-lang/toolkit-test_3/) after some time. 51 | -------------------------------------------------------------------------------- /tests/CrossPlatform.test.scala: -------------------------------------------------------------------------------- 1 | //> using toolkit 0.6.0 2 | //> using scala 3.3 3 | 4 | import scala.util.Try 5 | import scala.Console.* 6 | import scala.concurrent.duration.Duration 7 | 8 | class CrossPlatformTests extends munit.FunSuite: 9 | requireCmd("scala-cli") 10 | test("jvm")(publishAndRun("jvm", "1.0.0-SNAPSHOT")) 11 | test("js")(publishAndRun("js", "1.0.0-SNAPSHOT", "--js")) 12 | test("native")(publishAndRun("native", "1.0.0-SNAPSHOT", "--native", "--native-version", "0.5.9")) 13 | 14 | override val munitTimeout = Duration(120, "s") 15 | 16 | private def publishAndRun(platform: String, version: String, extraOpts: String*): Unit = 17 | val toolkitFile = if platform == "js" then os.pwd / "Toolkit.js.scala" else os.pwd / "Toolkit.scala" 18 | val toolkitTestFile = os.pwd / "ToolkitTest.scala" 19 | publish(toolkitFile, version, extraOpts) 20 | publish(toolkitTestFile, version, extraOpts ++ Seq("--dependency", s"org.scala-lang::toolkit::$version")) 21 | (listTests("shared") ++ listTests(platform)).foreach(runTest(platform, _, version, extraOpts*)) 22 | 23 | private def publish(file: os.Path, version: String, extraOpts: Seq[String]): Unit = 24 | os.proc( 25 | Seq("scala-cli", "--power", "publish", "local", "--cross"), 26 | extraOpts, 27 | Seq("--organization", "org.scala-lang"), 28 | Seq("--project-version", version), 29 | file 30 | ).call(stderr = os.Pipe) // mute warnings 31 | 32 | private def listTests(folderName: String): Seq[os.Path] = 33 | os.list(os.pwd / "tests" / folderName).filter(_.ext == "sc") 34 | 35 | private def runTest(platform: String, testFile: os.Path, toolkitVersion: String, extraOpts: String*): Unit = 36 | val testName = s"$platform.${testFile.last}" 37 | val expectedOutput = getExpectedOutput(testFile) 38 | println(s"Running $testName") 39 | 40 | val testProcess = os.proc("scala-cli", "run", "--scala", "3.3", "--toolkit", toolkitVersion, extraOpts, testFile).call(check = false) 41 | val output = testProcess.out.lines().map(_.trim) 42 | 43 | if testProcess.exitCode != 0 then 44 | println(s"${RED}$testName failed$RESET") 45 | else if output != expectedOutput then 46 | println(s"${RED}$testName failed$RESET") 47 | println(s"${RED} Expected output: $expectedOutput$RESET") 48 | println(s"${RED} Output: ${output}$RESET") 49 | end runTest 50 | 51 | private def getExpectedOutput(test: os.Path): Seq[String] = 52 | val OutputLine = "(.*)//\\$ (.*)".r 53 | os.read(test).linesIterator.collect { case OutputLine(_, content) => content.trim }.toSeq 54 | 55 | private def requireCmd(cmd: String): Unit = 56 | if os.proc("which", cmd).call(check = false).exitCode != 0 then 57 | println(s"${RED}Please install $cmd$RESET") 58 | sys.exit(1) 59 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_3:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_3:0.6.0` 5 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.model:core_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 13 | - Updated `com.softwaremill.sttp.model:core_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_3:1.3.22` 14 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_3:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 17 | 18 | ## Full dependency tree 19 | 20 | - org.scala-lang:toolkit_3:0.6.0 21 | - com.lihaoyi:os-lib_3:0.11.3 22 | - com.lihaoyi:geny_3:1.1.1 23 | - com.lihaoyi:upickle_3:3.3.1 24 | - com.lihaoyi:ujson_3:3.3.1 25 | - com.lihaoyi:upickle-core_3:3.3.1 26 | - com.lihaoyi:geny_3:1.1.0 27 | - com.lihaoyi:upack_3:3.3.1 28 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 29 | - com.lihaoyi:upickle-implicits_3:3.3.1 30 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 31 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 32 | - com.softwaremill.sttp.model:core_3:1.7.11 33 | - com.softwaremill.sttp.shared:core_3:1.3.22 34 | - com.softwaremill.sttp.shared:ws_3:1.3.22 35 | - com.softwaremill.sttp.model:core_3:1.7.11 (already listed) 36 | - com.softwaremill.sttp.shared:core_3:1.3.22 (already listed) 37 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M19 38 | - com.lihaoyi:upickle_3:3.3.1 (already listed) 39 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 (already listed) 40 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M19 41 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 (already listed) 42 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_2.13:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_2.13:0.6.0` 5 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 13 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_2.13:1.3.22` 14 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_2.13:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 17 | 18 | ## Full dependency tree 19 | 20 | - org.scala-lang:toolkit_2.13:0.6.0 21 | - com.lihaoyi:os-lib_2.13:0.11.3 22 | - com.lihaoyi:geny_2.13:1.1.1 23 | - com.lihaoyi:upickle_2.13:3.3.1 24 | - com.lihaoyi:ujson_2.13:3.3.1 25 | - com.lihaoyi:upickle-core_2.13:3.3.1 26 | - com.lihaoyi:geny_2.13:1.1.0 27 | - com.lihaoyi:upack_2.13:3.3.1 28 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 29 | - com.lihaoyi:upickle-implicits_2.13:3.3.1 30 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 31 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 32 | - com.softwaremill.sttp.model:core_2.13:1.7.11 33 | - com.softwaremill.sttp.shared:core_2.13:1.3.22 34 | - com.softwaremill.sttp.shared:ws_2.13:1.3.22 35 | - com.softwaremill.sttp.model:core_2.13:1.7.11 (already listed) 36 | - com.softwaremill.sttp.shared:core_2.13:1.3.22 (already listed) 37 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19 38 | - com.lihaoyi:upickle_2.13:3.3.1 (already listed) 39 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 (already listed) 40 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M19 41 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 (already listed) 42 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 9 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 12 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22` 13 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 14 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22` 15 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 16 | 17 | ## Full dependency tree 18 | 19 | - org.scala-lang:toolkit_sjs1_3:0.6.0 20 | - com.lihaoyi:upickle_sjs1_3:3.3.1 21 | - com.lihaoyi:ujson_sjs1_3:3.3.1 22 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 23 | - com.lihaoyi:geny_sjs1_3:1.1.0 24 | - com.lihaoyi:upack_sjs1_3:3.3.1 25 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 26 | - com.lihaoyi:upickle-implicits_sjs1_3:3.3.1 27 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 28 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 29 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 30 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 31 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 32 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 33 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 34 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 35 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.22 36 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22 37 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 (already listed) 38 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.22 (already listed) 39 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19 40 | - com.lihaoyi:upickle_sjs1_3:3.3.1 (already listed) 41 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 (already listed) 42 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M19 43 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 (already listed) 44 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_native0.5_3:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_native0.5_3:0.6.0` 5 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 13 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22` 14 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 17 | 18 | ## Full dependency tree 19 | 20 | - org.scala-lang:toolkit_native0.5_3:0.6.0 21 | - com.lihaoyi:os-lib_native0.5_3:0.11.3 22 | - com.lihaoyi:geny_native0.5_3:1.1.1 23 | - com.lihaoyi:upickle_native0.5_3:3.3.1 24 | - com.lihaoyi:ujson_native0.5_3:3.3.1 25 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 26 | - com.lihaoyi:geny_native0.5_3:1.1.0 27 | - com.lihaoyi:upack_native0.5_3:3.3.1 28 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 29 | - com.lihaoyi:upickle-implicits_native0.5_3:3.3.1 30 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 31 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 32 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 33 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.22 34 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22 35 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 (already listed) 36 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.22 (already listed) 37 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19 38 | - com.lihaoyi:upickle_native0.5_3:3.3.1 (already listed) 39 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 (already listed) 40 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M19 41 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 (already listed) 42 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_sjs1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 9 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 12 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22` 13 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 14 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22` 15 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 16 | 17 | ## Full dependency tree 18 | 19 | - org.scala-lang:toolkit_sjs1_2.13:0.6.0 20 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 21 | - com.lihaoyi:ujson_sjs1_2.13:3.3.1 22 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 23 | - com.lihaoyi:geny_sjs1_2.13:1.1.0 24 | - com.lihaoyi:upack_sjs1_2.13:3.3.1 25 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 26 | - com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.1 27 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 28 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 29 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 30 | - io.github.cquiroz:scala-java-time_sjs1_2.13:2.5.0 31 | - io.github.cquiroz:scala-java-locales_sjs1_2.13:1.5.1 32 | - io.github.cquiroz:cldr-api_sjs1_2.13:4.0.0 33 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 34 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 35 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22 36 | - com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22 37 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 (already listed) 38 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22 (already listed) 39 | - com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19 40 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 (already listed) 41 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 (already listed) 42 | - com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M19 43 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 (already listed) 44 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit_0.6.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_native0.5_2.13:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` 5 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 13 | - Updated `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22` 14 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 17 | 18 | ## Full dependency tree 19 | 20 | - org.scala-lang:toolkit_native0.5_2.13:0.6.0 21 | - com.lihaoyi:os-lib_native0.5_2.13:0.11.3 22 | - com.lihaoyi:geny_native0.5_2.13:1.1.1 23 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 24 | - com.lihaoyi:ujson_native0.5_2.13:3.3.1 25 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 26 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 27 | - com.lihaoyi:upack_native0.5_2.13:3.3.1 28 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 29 | - com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.1 30 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 31 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 32 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 33 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22 34 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22 35 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 (already listed) 36 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22 (already listed) 37 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19 38 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 (already listed) 39 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 (already listed) 40 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M19 41 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 (already listed) 42 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_3:0.10.0` from `0.10.0` to `0.10.3` under `org.scala-lang:toolkit_3:0.5.0` 5 | - Updated `com.lihaoyi:upickle_3:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_3:0.5.0` 6 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_3:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:os-lib_3:0.10.3` 11 | - Updated `com.lihaoyi:ujson_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_3:3.3.1` 12 | - Updated `com.lihaoyi:upack_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_3:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_3:3.3.1` 14 | - Updated `com.lihaoyi:upickle-core_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_3:3.3.1` 15 | - Updated `com.lihaoyi:upickle-core_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_3:3.3.1` 16 | - Updated `com.lihaoyi:upickle-implicits_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_3:3.3.1` 17 | - Updated `com.lihaoyi:upickle_3:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M16` 18 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_3:4.0.0-M16` 22 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_3:1.3.19` 23 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_3:4.0.0-M16` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_3:0.5.0 28 | - com.lihaoyi:os-lib_3:0.10.3 29 | - com.lihaoyi:geny_3:1.1.1 30 | - com.lihaoyi:upickle_3:3.3.1 31 | - com.lihaoyi:ujson_3:3.3.1 32 | - com.lihaoyi:upickle-core_3:3.3.1 33 | - com.lihaoyi:geny_3:1.1.0 34 | - com.lihaoyi:upack_3:3.3.1 35 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 36 | - com.lihaoyi:upickle-implicits_3:3.3.1 37 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 38 | - com.softwaremill.sttp.client4:core_3:4.0.0-M16 39 | - com.softwaremill.sttp.model:core_3:1.7.10 40 | - com.softwaremill.sttp.shared:core_3:1.3.19 41 | - com.softwaremill.sttp.shared:ws_3:1.3.19 42 | - com.softwaremill.sttp.model:core_3:1.7.10 (already listed) 43 | - com.softwaremill.sttp.shared:core_3:1.3.19 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M16 45 | - com.lihaoyi:upickle_3:3.3.1 (already listed) 46 | - com.softwaremill.sttp.client4:core_3:4.0.0-M16 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M16 48 | - com.softwaremill.sttp.client4:core_3:4.0.0-M16 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_3:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_3:0.6.0` 5 | - Updated `org.scalameta:munit_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_3:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.lihaoyi:os-lib_3:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_3:0.6.0` 9 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.softwaremill.sttp.model:core_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.model:core_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_3:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 17 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_3:1.3.22` 18 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_3:4.0.0-M19` 19 | - Updated `org.scalameta:junit-interface:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_3:1.0.2` 20 | - Updated `org.scalameta:munit-diff_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_3:1.0.2` 21 | 22 | ## Full dependency tree 23 | 24 | - org.scala-lang:toolkit-test_3:0.6.0 25 | - org.scala-lang:toolkit_3:0.6.0 26 | - com.lihaoyi:os-lib_3:0.11.3 27 | - com.lihaoyi:geny_3:1.1.1 28 | - com.lihaoyi:upickle_3:3.3.1 29 | - com.lihaoyi:ujson_3:3.3.1 30 | - com.lihaoyi:upickle-core_3:3.3.1 31 | - com.lihaoyi:geny_3:1.1.0 32 | - com.lihaoyi:upack_3:3.3.1 33 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 34 | - com.lihaoyi:upickle-implicits_3:3.3.1 35 | - com.lihaoyi:upickle-core_3:3.3.1 (already listed) 36 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 37 | - com.softwaremill.sttp.model:core_3:1.7.11 38 | - com.softwaremill.sttp.shared:core_3:1.3.22 39 | - com.softwaremill.sttp.shared:ws_3:1.3.22 40 | - com.softwaremill.sttp.model:core_3:1.7.11 (already listed) 41 | - com.softwaremill.sttp.shared:core_3:1.3.22 (already listed) 42 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M19 43 | - com.lihaoyi:upickle_3:3.3.1 (already listed) 44 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 (already listed) 45 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M19 46 | - com.softwaremill.sttp.client4:core_3:4.0.0-M19 (already listed) 47 | - org.scalameta:munit_3:1.0.2 48 | - junit:junit:4.13.2 49 | - org.hamcrest:hamcrest-core:1.3.0 50 | - org.scalameta:junit-interface:1.0.2 51 | - junit:junit:4.13.2 (already listed) 52 | - org.scala-sbt:test-interface:1.0.0 53 | - org.scalameta:munit-diff_3:1.0.2 54 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to transitive dependencies 4 | - Added `com.lihaoyi:geny_native0.5_3:1.1.0` under `com.lihaoyi:os-lib_native0.5_3:0.10.0` 5 | - Added `com.lihaoyi:geny_native0.5_3:1.1.0` under `com.lihaoyi:upickle-core_native0.5_3:3.3.0` 6 | - Added `com.lihaoyi:os-lib_native0.5_3:0.10.0` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 7 | - Added `com.lihaoyi:ujson_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 8 | - Added `com.lihaoyi:upack_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 9 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:ujson_native0.5_3:3.3.0` 10 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:upack_native0.5_3:3.3.0` 11 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:upickle-implicits_native0.5_3:3.3.0` 12 | - Added `com.lihaoyi:upickle-implicits_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 13 | - Added `com.lihaoyi:upickle_native0.5_3:3.3.0` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 14 | - Added `com.lihaoyi:upickle_native0.5_3:3.3.0` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 15 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14` 16 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 17 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 18 | - Added `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 19 | - Added `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 20 | - Added `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 21 | - Added `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` 22 | - Added `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 23 | - Added `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` 24 | - Added `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 25 | 26 | ## Full dependency tree 27 | 28 | - org.scala-lang:toolkit_native0.5_3:0.4.0 29 | - com.lihaoyi:os-lib_native0.5_3:0.10.0 30 | - com.lihaoyi:geny_native0.5_3:1.1.0 31 | - com.lihaoyi:upickle_native0.5_3:3.3.0 32 | - com.lihaoyi:ujson_native0.5_3:3.3.0 33 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 34 | - com.lihaoyi:geny_native0.5_3:1.1.0 (already listed) 35 | - com.lihaoyi:upack_native0.5_3:3.3.0 36 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 (already listed) 37 | - com.lihaoyi:upickle-implicits_native0.5_3:3.3.0 38 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 (already listed) 39 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 40 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 41 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.18 42 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18 43 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 (already listed) 44 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.18 (already listed) 45 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14 46 | - com.lihaoyi:upickle_native0.5_3:3.3.0 (already listed) 47 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 (already listed) 48 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14 49 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 (already listed) 50 | -------------------------------------------------------------------------------- /changelog/0.2.1/toolkit_0.2.1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 0.2.1 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_3:3.1.0` from `3.1.0` to `3.1.3` under `org.scala-lang:toolkit_3:0.2.1` 5 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_3:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_3:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_3:3.1.3` 10 | - Updated `com.lihaoyi:upack_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_3:3.1.3` 11 | - Updated `com.lihaoyi:upickle-core_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:ujson_3:3.1.3` 12 | - Updated `com.lihaoyi:upickle-core_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upack_3:3.1.3` 13 | - Updated `com.lihaoyi:upickle-core_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle-implicits_3:3.1.3` 14 | - Updated `com.lihaoyi:upickle-implicits_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_3:3.1.3` 15 | - Updated `com.lihaoyi:upickle_3:3.0.0` from `3.0.0` to `3.1.3` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 16 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.model:core_3:1.5.5` from `1.5.5` to `1.6.0` under `com.softwaremill.sttp.shared:ws_3:1.3.16` ILLEGAL CHANGE (required at least: MinorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_3:1.5.5` from `1.5.5` to `1.7.2` under `com.softwaremill.sttp.client4:core_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_3:4.0.0-M6` 22 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.shared:ws_3:1.3.16` 23 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_3:4.0.0-M6` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_3:0.2.1 28 | - com.lihaoyi:os-lib_3:0.9.1 29 | - com.lihaoyi:geny_3:1.0.0 30 | - com.lihaoyi:upickle_3:3.1.3 31 | - com.lihaoyi:ujson_3:3.1.3 32 | - com.lihaoyi:upickle-core_3:3.1.3 33 | - com.lihaoyi:geny_3:1.0.0 (already listed) 34 | - com.lihaoyi:upack_3:3.1.3 35 | - com.lihaoyi:upickle-core_3:3.1.3 (already listed) 36 | - com.lihaoyi:upickle-implicits_3:3.1.3 37 | - com.lihaoyi:upickle-core_3:3.1.3 (already listed) 38 | - com.softwaremill.sttp.client4:core_3:4.0.0-M6 39 | - com.softwaremill.sttp.model:core_3:1.7.2 40 | - com.softwaremill.sttp.shared:core_3:1.3.16 41 | - com.softwaremill.sttp.shared:ws_3:1.3.16 42 | - com.softwaremill.sttp.model:core_3:1.6.0 43 | - com.softwaremill.sttp.shared:core_3:1.3.16 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M6 45 | - com.lihaoyi:upickle_3:3.1.3 (already listed) 46 | - com.softwaremill.sttp.client4:core_3:4.0.0-M6 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M6 48 | - com.softwaremill.sttp.client4:core_3:4.0.0-M6 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_2.13:0.10.0` from `0.10.0` to `0.10.3` under `org.scala-lang:toolkit_2.13:0.5.0` 5 | - Updated `com.lihaoyi:upickle_2.13:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_2.13:0.5.0` 6 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_2.13:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:os-lib_2.13:0.10.3` 11 | - Updated `com.lihaoyi:ujson_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_2.13:3.3.1` 12 | - Updated `com.lihaoyi:upack_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_2.13:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_2.13:3.3.1` 14 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_2.13:3.3.1` 15 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_2.13:3.3.1` 16 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_2.13:3.3.1` 17 | - Updated `com.lihaoyi:upickle_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16` 18 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` 22 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_2.13:1.3.19` 23 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_2.13:0.5.0 28 | - com.lihaoyi:os-lib_2.13:0.10.3 29 | - com.lihaoyi:geny_2.13:1.1.1 30 | - com.lihaoyi:upickle_2.13:3.3.1 31 | - com.lihaoyi:ujson_2.13:3.3.1 32 | - com.lihaoyi:upickle-core_2.13:3.3.1 33 | - com.lihaoyi:geny_2.13:1.1.0 34 | - com.lihaoyi:upack_2.13:3.3.1 35 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 36 | - com.lihaoyi:upickle-implicits_2.13:3.3.1 37 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 38 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M16 39 | - com.softwaremill.sttp.model:core_2.13:1.7.10 40 | - com.softwaremill.sttp.shared:core_2.13:1.3.19 41 | - com.softwaremill.sttp.shared:ws_2.13:1.3.19 42 | - com.softwaremill.sttp.model:core_2.13:1.7.10 (already listed) 43 | - com.softwaremill.sttp.shared:core_2.13:1.3.19 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16 45 | - com.lihaoyi:upickle_2.13:3.3.1 (already listed) 46 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M16 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M16 48 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M16 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_sjs1_3:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_sjs1_3:0.6.0` 5 | - Updated `org.scalameta:munit_sjs1_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_sjs1_3:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 9 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 14 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22` 15 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 16 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22` 17 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` 18 | - Updated `org.scalameta:munit-diff_sjs1_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_sjs1_3:1.0.2` 19 | 20 | ## Full dependency tree 21 | 22 | - org.scala-lang:toolkit-test_sjs1_3:0.6.0 23 | - org.scala-lang:toolkit_sjs1_3:0.6.0 24 | - com.lihaoyi:upickle_sjs1_3:3.3.1 25 | - com.lihaoyi:ujson_sjs1_3:3.3.1 26 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 27 | - com.lihaoyi:geny_sjs1_3:1.1.0 28 | - com.lihaoyi:upack_sjs1_3:3.3.1 29 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 30 | - com.lihaoyi:upickle-implicits_sjs1_3:3.3.1 31 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 32 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 33 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 34 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 35 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 36 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 37 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 38 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 39 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.22 40 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22 41 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.22 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19 44 | - com.lihaoyi:upickle_sjs1_3:3.3.1 (already listed) 45 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M19 47 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19 (already listed) 48 | - org.scalameta:munit_sjs1_3:1.0.2 49 | - org.scalameta:munit-diff_sjs1_3:1.0.2 50 | -------------------------------------------------------------------------------- /changelog/0.8.0/toolkit_0.8.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_3:4.1.0` from `4.1.0` to `4.4.1` under `org.scala-lang:toolkit_3:0.8.0` 5 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_3:0.8.0` 6 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_3:0.8.0` 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 10 | - Updated `com.lihaoyi:ujson_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 11 | - Updated `com.lihaoyi:upack_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 12 | - Updated `com.lihaoyi:upack_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 13 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:ujson_3:4.4.1` 14 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upack_3:4.4.1` 15 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle-implicits_3:4.4.1` 16 | - Updated `com.lihaoyi:upickle-implicits_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 17 | - Updated `com.lihaoyi:upickle-implicits_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 18 | - Updated `com.lihaoyi:upickle_3:4.1.0` from `4.1.0` to `4.4.0` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 19 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:json-common_3:4.0.13` 20 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 21 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 22 | - Updated `com.softwaremill.sttp.model:core_3:1.7.11` from `1.7.11` to `1.7.12` under `com.softwaremill.sttp.shared:ws_3:1.5.0` 23 | - Updated `com.softwaremill.sttp.model:core_3:1.7.11` from `1.7.11` to `1.7.17` under `com.softwaremill.sttp.client4:core_3:4.0.13` 24 | - Updated `com.softwaremill.sttp.shared:core_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_3:4.0.13` 25 | - Updated `com.softwaremill.sttp.shared:core_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.shared:ws_3:1.5.0` 26 | - Updated `com.softwaremill.sttp.shared:ws_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_3:4.0.13` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_3:0.8.0 31 | - com.lihaoyi:os-lib_3:0.11.3 32 | - com.lihaoyi:geny_3:1.1.1 33 | - com.lihaoyi:upickle_3:4.4.1 34 | - com.lihaoyi:ujson_3:4.4.1 35 | - com.lihaoyi:upickle-core_3:4.4.1 36 | - com.lihaoyi:geny_3:1.1.1 (already listed) 37 | - com.lihaoyi:upack_3:4.4.1 38 | - com.lihaoyi:upickle-core_3:4.4.1 (already listed) 39 | - com.lihaoyi:upickle-implicits_3:4.4.1 40 | - com.lihaoyi:upickle-core_3:4.4.1 (already listed) 41 | - com.softwaremill.sttp.client4:core_3:4.0.13 42 | - com.softwaremill.sttp.model:core_3:1.7.17 43 | - com.softwaremill.sttp.shared:core_3:1.5.0 44 | - com.softwaremill.sttp.shared:ws_3:1.5.0 45 | - com.softwaremill.sttp.model:core_3:1.7.12 46 | - com.softwaremill.sttp.shared:core_3:1.5.0 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_3:4.0.13 48 | - com.lihaoyi:upickle_3:4.4.0 49 | - com.lihaoyi:ujson_3:4.4.1 (already listed) 50 | - com.lihaoyi:upack_3:4.4.1 (already listed) 51 | - com.lihaoyi:upickle-implicits_3:4.4.1 (already listed) 52 | - com.softwaremill.sttp.client4:core_3:4.0.13 (already listed) 53 | - com.softwaremill.sttp.client4:json-common_3:4.0.13 54 | - com.softwaremill.sttp.client4:core_3:4.0.13 (already listed) 55 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_3:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_3:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_3:4.1.0` 10 | - Updated `com.lihaoyi:ujson_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_3:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_3:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_3:0.7.0 27 | - com.lihaoyi:os-lib_3:0.11.3 28 | - com.lihaoyi:geny_3:1.1.1 29 | - com.lihaoyi:upickle_3:4.1.0 30 | - com.lihaoyi:ujson_3:4.1.0 31 | - com.lihaoyi:upickle-core_3:4.1.0 32 | - com.lihaoyi:geny_3:1.1.1 (already listed) 33 | - com.lihaoyi:upack_3:4.1.0 34 | - com.lihaoyi:upickle-core_3:4.1.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_3:4.1.0 36 | - com.lihaoyi:upickle-core_3:4.1.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_3:4.0.0-RC1 38 | - com.softwaremill.sttp.model:core_3:1.7.11 39 | - com.softwaremill.sttp.shared:core_3:1.4.2 40 | - com.softwaremill.sttp.shared:ws_3:1.4.2 41 | - com.softwaremill.sttp.model:core_3:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_3:1.4.2 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1 44 | - com.lihaoyi:upickle_3:4.1.0 (already listed) 45 | - com.softwaremill.sttp.client4:core_3:4.0.0-RC1 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-RC1 47 | - com.softwaremill.sttp.client4:core_3:4.0.0-RC1 (already listed) 48 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_2.13:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_2.13:0.6.0` 5 | - Updated `org.scalameta:munit_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_2.13:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.lihaoyi:os-lib_2.13:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_2.13:0.6.0` 9 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_2.13:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 17 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_2.13:1.3.22` 18 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` 19 | - Updated `org.scalameta:junit-interface:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_2.13:1.0.2` 20 | - Updated `org.scalameta:munit-diff_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_2.13:1.0.2` 21 | 22 | ## Full dependency tree 23 | 24 | - org.scala-lang:toolkit-test_2.13:0.6.0 25 | - org.scala-lang:toolkit_2.13:0.6.0 26 | - com.lihaoyi:os-lib_2.13:0.11.3 27 | - com.lihaoyi:geny_2.13:1.1.1 28 | - com.lihaoyi:upickle_2.13:3.3.1 29 | - com.lihaoyi:ujson_2.13:3.3.1 30 | - com.lihaoyi:upickle-core_2.13:3.3.1 31 | - com.lihaoyi:geny_2.13:1.1.0 32 | - com.lihaoyi:upack_2.13:3.3.1 33 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 34 | - com.lihaoyi:upickle-implicits_2.13:3.3.1 35 | - com.lihaoyi:upickle-core_2.13:3.3.1 (already listed) 36 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 37 | - com.softwaremill.sttp.model:core_2.13:1.7.11 38 | - com.softwaremill.sttp.shared:core_2.13:1.3.22 39 | - com.softwaremill.sttp.shared:ws_2.13:1.3.22 40 | - com.softwaremill.sttp.model:core_2.13:1.7.11 (already listed) 41 | - com.softwaremill.sttp.shared:core_2.13:1.3.22 (already listed) 42 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19 43 | - com.lihaoyi:upickle_2.13:3.3.1 (already listed) 44 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 (already listed) 45 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M19 46 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M19 (already listed) 47 | - org.scalameta:munit_2.13:1.0.2 48 | - junit:junit:4.13.2 49 | - org.hamcrest:hamcrest-core:1.3.0 50 | - org.scalameta:junit-interface:1.0.2 51 | - junit:junit:4.13.2 (already listed) 52 | - org.scala-sbt:test-interface:1.0.0 53 | - org.scalameta:munit-diff_2.13:1.0.2 54 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_sjs1_3:0.5.0` 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 10 | - Updated `com.lihaoyi:upack_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 11 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_sjs1_3:3.3.1` 12 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_sjs1_3:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_sjs1_3:3.3.1` 14 | - Updated `com.lihaoyi:upickle-implicits_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 15 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` 16 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` 20 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19` 21 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` 22 | 23 | ## Full dependency tree 24 | 25 | - org.scala-lang:toolkit_sjs1_3:0.5.0 26 | - com.lihaoyi:upickle_sjs1_3:3.3.1 27 | - com.lihaoyi:ujson_sjs1_3:3.3.1 28 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 29 | - com.lihaoyi:geny_sjs1_3:1.1.0 30 | - com.lihaoyi:upack_sjs1_3:3.3.1 31 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 32 | - com.lihaoyi:upickle-implicits_sjs1_3:3.3.1 33 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 34 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 35 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 36 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 37 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 38 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 39 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 40 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 41 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.19 42 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19 43 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 (already listed) 44 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.19 (already listed) 45 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16 46 | - com.lihaoyi:upickle_sjs1_3:3.3.1 (already listed) 47 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 (already listed) 48 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16 49 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 (already listed) 50 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_native0.5_3:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_native0.5_3:0.6.0` 5 | - Updated `org.scalameta:munit_native0.5_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_native0.5_3:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.lihaoyi:os-lib_native0.5_3:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_native0.5_3:0.6.0` 9 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_3:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 17 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22` 18 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` 19 | - Updated `org.scalameta:munit-diff_native0.5_3:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_native0.5_3:1.0.2` 20 | 21 | ## Full dependency tree 22 | 23 | - org.scala-lang:toolkit-test_native0.5_3:0.6.0 24 | - org.scala-lang:toolkit_native0.5_3:0.6.0 25 | - com.lihaoyi:os-lib_native0.5_3:0.11.3 26 | - com.lihaoyi:geny_native0.5_3:1.1.1 27 | - com.lihaoyi:upickle_native0.5_3:3.3.1 28 | - com.lihaoyi:ujson_native0.5_3:3.3.1 29 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 30 | - com.lihaoyi:geny_native0.5_3:1.1.0 31 | - com.lihaoyi:upack_native0.5_3:3.3.1 32 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 33 | - com.lihaoyi:upickle-implicits_native0.5_3:3.3.1 34 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 35 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 36 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 37 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.22 38 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22 39 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 (already listed) 40 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.22 (already listed) 41 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19 42 | - com.lihaoyi:upickle_native0.5_3:3.3.1 (already listed) 43 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 (already listed) 44 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M19 45 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19 (already listed) 46 | - org.scalameta:munit_native0.5_3:1.0.2 47 | - org.scalameta:munit-diff_native0.5_3:1.0.2 48 | -------------------------------------------------------------------------------- /changelog/0.2.1/toolkit_0.2.1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 0.2.1 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_2.13:3.1.0` from `3.1.0` to `3.1.3` under `org.scala-lang:toolkit_2.13:0.2.1` 5 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_2.13:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_2.13:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_2.13:3.1.3` 10 | - Updated `com.lihaoyi:upack_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_2.13:3.1.3` 11 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:ujson_2.13:3.1.3` 12 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upack_2.13:3.1.3` 13 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle-implicits_2.13:3.1.3` 14 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_2.13:3.1.3` 15 | - Updated `com.lihaoyi:upickle_2.13:3.0.0` from `3.0.0` to `3.1.3` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 16 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.model:core_2.13:1.5.5` from `1.5.5` to `1.6.0` under `com.softwaremill.sttp.shared:ws_2.13:1.3.16` ILLEGAL CHANGE (required at least: MinorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_2.13:1.5.5` from `1.5.5` to `1.7.2` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` 22 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.shared:ws_2.13:1.3.16` 23 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_2.13:0.2.1 28 | - com.lihaoyi:os-lib_2.13:0.9.1 29 | - com.lihaoyi:geny_2.13:1.0.0 30 | - com.lihaoyi:upickle_2.13:3.1.3 31 | - com.lihaoyi:ujson_2.13:3.1.3 32 | - com.lihaoyi:upickle-core_2.13:3.1.3 33 | - com.lihaoyi:geny_2.13:1.0.0 (already listed) 34 | - com.lihaoyi:upack_2.13:3.1.3 35 | - com.lihaoyi:upickle-core_2.13:3.1.3 (already listed) 36 | - com.lihaoyi:upickle-implicits_2.13:3.1.3 37 | - com.lihaoyi:upickle-core_2.13:3.1.3 (already listed) 38 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M6 39 | - com.softwaremill.sttp.model:core_2.13:1.7.2 40 | - com.softwaremill.sttp.shared:core_2.13:1.3.16 41 | - com.softwaremill.sttp.shared:ws_2.13:1.3.16 42 | - com.softwaremill.sttp.model:core_2.13:1.6.0 43 | - com.softwaremill.sttp.shared:core_2.13:1.3.16 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M6 45 | - com.lihaoyi:upickle_2.13:3.1.3 (already listed) 46 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M6 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M6 48 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M6 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to transitive dependencies 4 | - Added `com.lihaoyi:geny_native0.5_2.13:1.1.0` under `com.lihaoyi:os-lib_native0.5_2.13:0.10.0` 5 | - Added `com.lihaoyi:geny_native0.5_2.13:1.1.0` under `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` 6 | - Added `com.lihaoyi:os-lib_native0.5_2.13:0.10.0` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 7 | - Added `com.lihaoyi:ujson_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 8 | - Added `com.lihaoyi:upack_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 9 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:ujson_native0.5_2.13:3.3.0` 10 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:upack_native0.5_2.13:3.3.0` 11 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0` 12 | - Added `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 13 | - Added `com.lihaoyi:upickle_native0.5_2.13:3.3.0` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 14 | - Added `com.lihaoyi:upickle_native0.5_2.13:3.3.0` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 15 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14` 16 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 17 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 18 | - Added `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 19 | - Added `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 20 | - Added `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 21 | - Added `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` 22 | - Added `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 23 | - Added `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` 24 | - Added `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 25 | 26 | ## Full dependency tree 27 | 28 | - org.scala-lang:toolkit_native0.5_2.13:0.4.0 29 | - com.lihaoyi:os-lib_native0.5_2.13:0.10.0 30 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 31 | - com.lihaoyi:upickle_native0.5_2.13:3.3.0 32 | - com.lihaoyi:ujson_native0.5_2.13:3.3.0 33 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 34 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 (already listed) 35 | - com.lihaoyi:upack_native0.5_2.13:3.3.0 36 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 (already listed) 37 | - com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0 38 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 (already listed) 39 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 40 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 41 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18 42 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18 43 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 (already listed) 44 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18 (already listed) 45 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14 46 | - com.lihaoyi:upickle_native0.5_2.13:3.3.0 (already listed) 47 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 (already listed) 48 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14 49 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 (already listed) 50 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_sjs1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_sjs1_2.13:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_sjs1_2.13:0.6.0` 5 | - Updated `org.scalameta:munit_sjs1_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_sjs1_2.13:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 9 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_sjs1_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 14 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22` 15 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 16 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22` 17 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` 18 | - Updated `org.scalameta:munit-diff_sjs1_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_sjs1_2.13:1.0.2` 19 | 20 | ## Full dependency tree 21 | 22 | - org.scala-lang:toolkit-test_sjs1_2.13:0.6.0 23 | - org.scala-lang:toolkit_sjs1_2.13:0.6.0 24 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 25 | - com.lihaoyi:ujson_sjs1_2.13:3.3.1 26 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 27 | - com.lihaoyi:geny_sjs1_2.13:1.1.0 28 | - com.lihaoyi:upack_sjs1_2.13:3.3.1 29 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 30 | - com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.1 31 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 32 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 33 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 34 | - io.github.cquiroz:scala-java-time_sjs1_2.13:2.5.0 35 | - io.github.cquiroz:scala-java-locales_sjs1_2.13:1.5.1 36 | - io.github.cquiroz:cldr-api_sjs1_2.13:4.0.0 37 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 38 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 39 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22 40 | - com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22 41 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19 44 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 (already listed) 45 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M19 47 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19 (already listed) 48 | - org.scalameta:munit_sjs1_2.13:1.0.2 49 | - org.scalameta:munit-diff_sjs1_2.13:1.0.2 50 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_3:0.9.3` from `0.9.3` to `0.10.0` under `org.scala-lang:toolkit_3:0.4.0` 5 | - Updated `com.lihaoyi:upickle_3:3.2.0` from `3.2.0` to `3.3.0` under `org.scala-lang:toolkit_3:0.4.0` 6 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_3:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_3:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_3:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:os-lib_3:0.10.0` 11 | - Updated `com.lihaoyi:geny_3:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:upickle-core_3:3.3.0` 12 | - Updated `com.lihaoyi:ujson_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_3:3.3.0` 13 | - Updated `com.lihaoyi:upack_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_3:3.3.0` 14 | - Updated `com.lihaoyi:upickle-core_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:ujson_3:3.3.0` 15 | - Updated `com.lihaoyi:upickle-core_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upack_3:3.3.0` 16 | - Updated `com.lihaoyi:upickle-core_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle-implicits_3:3.3.0` 17 | - Updated `com.lihaoyi:upickle-implicits_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_3:3.3.0` 18 | - Updated `com.lihaoyi:upickle_3:3.1.4` from `3.1.4` to `3.3.0` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M14` 19 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 22 | - Updated `com.softwaremill.sttp.model:core_3:1.6.0` from `1.6.0` to `1.7.10` under `com.softwaremill.sttp.shared:ws_3:1.3.18` 23 | - Updated `com.softwaremill.sttp.model:core_3:1.7.9` from `1.7.9` to `1.7.10` under `com.softwaremill.sttp.client4:core_3:4.0.0-M14` 24 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_3:4.0.0-M14` 25 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.shared:ws_3:1.3.18` 26 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_3:4.0.0-M14` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_3:0.4.0 31 | - com.lihaoyi:os-lib_3:0.10.0 32 | - com.lihaoyi:geny_3:1.1.0 33 | - com.lihaoyi:upickle_3:3.3.0 34 | - com.lihaoyi:ujson_3:3.3.0 35 | - com.lihaoyi:upickle-core_3:3.3.0 36 | - com.lihaoyi:geny_3:1.1.0 (already listed) 37 | - com.lihaoyi:upack_3:3.3.0 38 | - com.lihaoyi:upickle-core_3:3.3.0 (already listed) 39 | - com.lihaoyi:upickle-implicits_3:3.3.0 40 | - com.lihaoyi:upickle-core_3:3.3.0 (already listed) 41 | - com.softwaremill.sttp.client4:core_3:4.0.0-M14 42 | - com.softwaremill.sttp.model:core_3:1.7.10 43 | - com.softwaremill.sttp.shared:core_3:1.3.18 44 | - com.softwaremill.sttp.shared:ws_3:1.3.18 45 | - com.softwaremill.sttp.model:core_3:1.7.10 (already listed) 46 | - com.softwaremill.sttp.shared:core_3:1.3.18 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M14 48 | - com.lihaoyi:upickle_3:3.3.0 (already listed) 49 | - com.softwaremill.sttp.client4:core_3:4.0.0-M14 (already listed) 50 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M14 51 | - com.softwaremill.sttp.client4:core_3:4.0.0-M14 (already listed) 52 | -------------------------------------------------------------------------------- /changelog/0.8.0/toolkit_0.8.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_2.13:4.1.0` from `4.1.0` to `4.4.1` under `org.scala-lang:toolkit_2.13:0.8.0` 5 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_2.13:0.8.0` 6 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_2.13:0.8.0` 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 10 | - Updated `com.lihaoyi:ujson_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 11 | - Updated `com.lihaoyi:upack_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 12 | - Updated `com.lihaoyi:upack_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 13 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:ujson_2.13:4.4.1` 14 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upack_2.13:4.4.1` 15 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle-implicits_2.13:4.4.1` 16 | - Updated `com.lihaoyi:upickle-implicits_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 17 | - Updated `com.lihaoyi:upickle-implicits_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 18 | - Updated `com.lihaoyi:upickle_2.13:4.1.0` from `4.1.0` to `4.4.0` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 19 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.13` 20 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 21 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 22 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.11` from `1.7.11` to `1.7.12` under `com.softwaremill.sttp.shared:ws_2.13:1.5.0` 23 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.11` from `1.7.11` to `1.7.17` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 24 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 25 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.shared:ws_2.13:1.5.0` 26 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_2.13:0.8.0 31 | - com.lihaoyi:os-lib_2.13:0.11.3 32 | - com.lihaoyi:geny_2.13:1.1.1 33 | - com.lihaoyi:upickle_2.13:4.4.1 34 | - com.lihaoyi:ujson_2.13:4.4.1 35 | - com.lihaoyi:upickle-core_2.13:4.4.1 36 | - com.lihaoyi:geny_2.13:1.1.1 (already listed) 37 | - com.lihaoyi:upack_2.13:4.4.1 38 | - com.lihaoyi:upickle-core_2.13:4.4.1 (already listed) 39 | - com.lihaoyi:upickle-implicits_2.13:4.4.1 40 | - com.lihaoyi:upickle-core_2.13:4.4.1 (already listed) 41 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 42 | - com.softwaremill.sttp.model:core_2.13:1.7.17 43 | - com.softwaremill.sttp.shared:core_2.13:1.5.0 44 | - com.softwaremill.sttp.shared:ws_2.13:1.5.0 45 | - com.softwaremill.sttp.model:core_2.13:1.7.12 46 | - com.softwaremill.sttp.shared:core_2.13:1.5.0 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.13 48 | - com.lihaoyi:upickle_2.13:4.4.0 49 | - com.lihaoyi:ujson_2.13:4.4.1 (already listed) 50 | - com.lihaoyi:upack_2.13:4.4.1 (already listed) 51 | - com.lihaoyi:upickle-implicits_2.13:4.4.1 (already listed) 52 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 (already listed) 53 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.13 54 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 (already listed) 55 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_2.13:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_2.13:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_2.13:4.1.0` 10 | - Updated `com.lihaoyi:ujson_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_2.13:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_2.13:0.7.0 27 | - com.lihaoyi:os-lib_2.13:0.11.3 28 | - com.lihaoyi:geny_2.13:1.1.1 29 | - com.lihaoyi:upickle_2.13:4.1.0 30 | - com.lihaoyi:ujson_2.13:4.1.0 31 | - com.lihaoyi:upickle-core_2.13:4.1.0 32 | - com.lihaoyi:geny_2.13:1.1.1 (already listed) 33 | - com.lihaoyi:upack_2.13:4.1.0 34 | - com.lihaoyi:upickle-core_2.13:4.1.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_2.13:4.1.0 36 | - com.lihaoyi:upickle-core_2.13:4.1.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1 38 | - com.softwaremill.sttp.model:core_2.13:1.7.11 39 | - com.softwaremill.sttp.shared:core_2.13:1.4.2 40 | - com.softwaremill.sttp.shared:ws_2.13:1.4.2 41 | - com.softwaremill.sttp.model:core_2.13:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_2.13:1.4.2 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1 44 | - com.lihaoyi:upickle_2.13:4.1.0 (already listed) 45 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-RC1 47 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1 (already listed) 48 | -------------------------------------------------------------------------------- /changelog/0.2.0/toolkit-test_0.2.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 0.2.0 2 | 3 | ## Changes to direct dependencies 4 | - Added `org.scala-lang:toolkit_3:0.2.0` under `org.scala-lang:toolkit-test_3:0.2.0` 5 | 6 | ## Changes to transitive dependencies 7 | - Added `com.lihaoyi:geny_3:1.0.0` under `com.lihaoyi:os-lib_3:0.9.1` 8 | - Added `com.lihaoyi:geny_3:1.0.0` under `com.lihaoyi:upickle-core_3:3.1.0` 9 | - Added `com.lihaoyi:os-lib_3:0.9.1` under `org.scala-lang:toolkit_3:0.2.0` 10 | - Added `com.lihaoyi:ujson_3:3.1.0` under `com.lihaoyi:upickle_3:3.0.0` 11 | - Added `com.lihaoyi:ujson_3:3.1.0` under `com.lihaoyi:upickle_3:3.1.0` 12 | - Added `com.lihaoyi:upack_3:3.1.0` under `com.lihaoyi:upickle_3:3.0.0` 13 | - Added `com.lihaoyi:upack_3:3.1.0` under `com.lihaoyi:upickle_3:3.1.0` 14 | - Added `com.lihaoyi:upickle-core_3:3.1.0` under `com.lihaoyi:ujson_3:3.1.0` 15 | - Added `com.lihaoyi:upickle-core_3:3.1.0` under `com.lihaoyi:upack_3:3.1.0` 16 | - Added `com.lihaoyi:upickle-core_3:3.1.0` under `com.lihaoyi:upickle-implicits_3:3.1.0` 17 | - Added `com.lihaoyi:upickle-implicits_3:3.1.0` under `com.lihaoyi:upickle_3:3.0.0` 18 | - Added `com.lihaoyi:upickle-implicits_3:3.1.0` under `com.lihaoyi:upickle_3:3.1.0` 19 | - Added `com.lihaoyi:upickle_3:3.0.0` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M1` 20 | - Added `com.lihaoyi:upickle_3:3.1.0` under `org.scala-lang:toolkit_3:0.2.0` 21 | - Added `com.softwaremill.sttp.client4:core_3:4.0.0-M1` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M1` 22 | - Added `com.softwaremill.sttp.client4:core_3:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M1` 23 | - Added `com.softwaremill.sttp.client4:core_3:4.0.0-M1` under `org.scala-lang:toolkit_3:0.2.0` 24 | - Added `com.softwaremill.sttp.client4:json-common_3:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M1` 25 | - Added `com.softwaremill.sttp.client4:upickle_3:4.0.0-M1` under `org.scala-lang:toolkit_3:0.2.0` 26 | - Added `com.softwaremill.sttp.model:core_3:1.5.5` under `com.softwaremill.sttp.client4:core_3:4.0.0-M1` 27 | - Added `com.softwaremill.sttp.model:core_3:1.5.5` under `com.softwaremill.sttp.shared:ws_3:1.3.13` 28 | - Added `com.softwaremill.sttp.shared:core_3:1.3.13` under `com.softwaremill.sttp.client4:core_3:4.0.0-M1` 29 | - Added `com.softwaremill.sttp.shared:core_3:1.3.13` under `com.softwaremill.sttp.shared:ws_3:1.3.13` 30 | - Added `com.softwaremill.sttp.shared:ws_3:1.3.13` under `com.softwaremill.sttp.client4:core_3:4.0.0-M1` 31 | 32 | ## Full dependency tree 33 | 34 | - org.scala-lang:toolkit-test_3:0.2.0 35 | - org.scala-lang:toolkit_3:0.2.0 36 | - com.lihaoyi:os-lib_3:0.9.1 37 | - com.lihaoyi:geny_3:1.0.0 38 | - com.lihaoyi:upickle_3:3.1.0 39 | - com.lihaoyi:ujson_3:3.1.0 40 | - com.lihaoyi:upickle-core_3:3.1.0 41 | - com.lihaoyi:geny_3:1.0.0 (already listed) 42 | - com.lihaoyi:upack_3:3.1.0 43 | - com.lihaoyi:upickle-core_3:3.1.0 (already listed) 44 | - com.lihaoyi:upickle-implicits_3:3.1.0 45 | - com.lihaoyi:upickle-core_3:3.1.0 (already listed) 46 | - com.softwaremill.sttp.client4:core_3:4.0.0-M1 47 | - com.softwaremill.sttp.model:core_3:1.5.5 48 | - com.softwaremill.sttp.shared:core_3:1.3.13 49 | - com.softwaremill.sttp.shared:ws_3:1.3.13 50 | - com.softwaremill.sttp.model:core_3:1.5.5 (already listed) 51 | - com.softwaremill.sttp.shared:core_3:1.3.13 (already listed) 52 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M1 53 | - com.lihaoyi:upickle_3:3.0.0 54 | - com.lihaoyi:ujson_3:3.1.0 (already listed) 55 | - com.lihaoyi:upack_3:3.1.0 (already listed) 56 | - com.lihaoyi:upickle-implicits_3:3.1.0 (already listed) 57 | - com.softwaremill.sttp.client4:core_3:4.0.0-M1 (already listed) 58 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M1 59 | - com.softwaremill.sttp.client4:core_3:4.0.0-M1 (already listed) 60 | - org.scalameta:munit_3:1.0.0-M7 61 | - junit:junit:4.13.1 62 | - org.hamcrest:hamcrest-core:1.3.0 63 | - org.scalameta:junit-interface:1.0.0-M7 64 | - junit:junit:4.13.2 65 | - org.hamcrest:hamcrest-core:1.3.0 (already listed) 66 | - org.scala-sbt:test-interface:1.0.0 67 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_sjs1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_sjs1_2.13:0.5.0` 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_2.13:3.3.1` 10 | - Updated `com.lihaoyi:upack_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_2.13:3.3.1` 11 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_sjs1_2.13:3.3.1` 12 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_sjs1_2.13:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.1` 14 | - Updated `com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_2.13:3.3.1` 15 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16` 16 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` 20 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.19` 21 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16` 22 | 23 | ## Full dependency tree 24 | 25 | - org.scala-lang:toolkit_sjs1_2.13:0.5.0 26 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 27 | - com.lihaoyi:ujson_sjs1_2.13:3.3.1 28 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 29 | - com.lihaoyi:geny_sjs1_2.13:1.1.0 30 | - com.lihaoyi:upack_sjs1_2.13:3.3.1 31 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 32 | - com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.1 33 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.1 (already listed) 34 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16 35 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10 36 | - io.github.cquiroz:scala-java-time_sjs1_2.13:2.5.0 37 | - io.github.cquiroz:scala-java-locales_sjs1_2.13:1.5.1 38 | - io.github.cquiroz:cldr-api_sjs1_2.13:4.0.0 39 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 40 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 41 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19 42 | - com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.19 43 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10 (already listed) 44 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.19 (already listed) 45 | - com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M16 46 | - com.lihaoyi:upickle_sjs1_2.13:3.3.1 (already listed) 47 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16 (already listed) 48 | - com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M16 49 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M16 (already listed) 50 | -------------------------------------------------------------------------------- /changelog/0.6.0/toolkit-test_0.6.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_native0.5_2.13:0.5.0` from `0.5.0` to `0.6.0` under `org.scala-lang:toolkit-test_native0.5_2.13:0.6.0` 5 | - Updated `org.scalameta:munit_native0.5_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scala-lang:toolkit-test_native0.5_2.13:0.6.0` 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.lihaoyi:os-lib_native0.5_2.13:0.10.3` from `0.10.3` to `0.11.3` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` 9 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 10 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16` from `4.0.0-M16` to `4.0.0-M19` under `org.scala-lang:toolkit_native0.5_2.13:0.6.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 15 | - Updated `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` from `1.7.10` to `1.7.11` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22` 16 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 17 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22` 18 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.19` from `1.3.19` to `1.3.22` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` 19 | - Updated `org.scalameta:munit-diff_native0.5_2.13:1.0.0` from `1.0.0` to `1.0.2` under `org.scalameta:munit_native0.5_2.13:1.0.2` 20 | 21 | ## Full dependency tree 22 | 23 | - org.scala-lang:toolkit-test_native0.5_2.13:0.6.0 24 | - org.scala-lang:toolkit_native0.5_2.13:0.6.0 25 | - com.lihaoyi:os-lib_native0.5_2.13:0.11.3 26 | - com.lihaoyi:geny_native0.5_2.13:1.1.1 27 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 28 | - com.lihaoyi:ujson_native0.5_2.13:3.3.1 29 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 30 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 31 | - com.lihaoyi:upack_native0.5_2.13:3.3.1 32 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 33 | - com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.1 34 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 35 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 36 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 37 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22 38 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22 39 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 (already listed) 40 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22 (already listed) 41 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19 42 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 (already listed) 43 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 (already listed) 44 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M19 45 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19 (already listed) 46 | - org.scalameta:munit_native0.5_2.13:1.0.2 47 | - org.scalameta:munit-diff_native0.5_2.13:1.0.2 48 | -------------------------------------------------------------------------------- /changelog/0.3.0/toolkit_0.3.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_3:0.9.1` from `0.9.1` to `0.9.3` under `org.scala-lang:toolkit_3:0.3.0` 5 | - Updated `com.lihaoyi:upickle_3:3.1.3` from `3.1.3` to `3.2.0` under `org.scala-lang:toolkit_3:0.3.0` 6 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `org.scala-lang:toolkit_3:0.3.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `org.scala-lang:toolkit_3:0.3.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:ujson_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.1.4` 11 | - Updated `com.lihaoyi:ujson_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.2.0` 12 | - Updated `com.lihaoyi:upack_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.1.4` 13 | - Updated `com.lihaoyi:upack_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.2.0` 14 | - Updated `com.lihaoyi:upickle-core_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:ujson_3:3.2.0` 15 | - Updated `com.lihaoyi:upickle-core_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upack_3:3.2.0` 16 | - Updated `com.lihaoyi:upickle-core_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle-implicits_3:3.2.0` 17 | - Updated `com.lihaoyi:upickle-implicits_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.1.4` 18 | - Updated `com.lihaoyi:upickle-implicits_3:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_3:3.2.0` 19 | - Updated `com.lihaoyi:upickle_3:3.1.3` from `3.1.3` to `3.1.4` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M12` 20 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:json-common_3:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 22 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:upickle_3:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 23 | - Updated `com.softwaremill.sttp.model:core_3:1.7.2` from `1.7.2` to `1.7.9` under `com.softwaremill.sttp.client4:core_3:4.0.0-M12` 24 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.client4:core_3:4.0.0-M12` 25 | - Updated `com.softwaremill.sttp.shared:core_3:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.shared:ws_3:1.3.17` 26 | - Updated `com.softwaremill.sttp.shared:ws_3:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.client4:core_3:4.0.0-M12` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_3:0.3.0 31 | - com.lihaoyi:os-lib_3:0.9.3 32 | - com.lihaoyi:geny_3:1.0.0 33 | - com.lihaoyi:upickle_3:3.2.0 34 | - com.lihaoyi:ujson_3:3.2.0 35 | - com.lihaoyi:upickle-core_3:3.2.0 36 | - com.lihaoyi:geny_3:1.0.0 (already listed) 37 | - com.lihaoyi:upack_3:3.2.0 38 | - com.lihaoyi:upickle-core_3:3.2.0 (already listed) 39 | - com.lihaoyi:upickle-implicits_3:3.2.0 40 | - com.lihaoyi:upickle-core_3:3.2.0 (already listed) 41 | - com.softwaremill.sttp.client4:core_3:4.0.0-M12 42 | - com.softwaremill.sttp.model:core_3:1.7.9 43 | - com.softwaremill.sttp.shared:core_3:1.3.17 44 | - com.softwaremill.sttp.shared:ws_3:1.3.17 45 | - com.softwaremill.sttp.model:core_3:1.6.0 46 | - com.softwaremill.sttp.shared:core_3:1.3.17 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_3:4.0.0-M12 48 | - com.lihaoyi:upickle_3:3.1.4 49 | - com.lihaoyi:ujson_3:3.2.0 (already listed) 50 | - com.lihaoyi:upack_3:3.2.0 (already listed) 51 | - com.lihaoyi:upickle-implicits_3:3.2.0 (already listed) 52 | - com.softwaremill.sttp.client4:core_3:4.0.0-M12 (already listed) 53 | - com.softwaremill.sttp.client4:json-common_3:4.0.0-M12 54 | - com.softwaremill.sttp.client4:core_3:4.0.0-M12 (already listed) 55 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_2.13:0.9.3` from `0.9.3` to `0.10.0` under `org.scala-lang:toolkit_2.13:0.4.0` 5 | - Updated `com.lihaoyi:upickle_2.13:3.2.0` from `3.2.0` to `3.3.0` under `org.scala-lang:toolkit_2.13:0.4.0` 6 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_2.13:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_2.13:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_2.13:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:os-lib_2.13:0.10.0` 11 | - Updated `com.lihaoyi:geny_2.13:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:upickle-core_2.13:3.3.0` 12 | - Updated `com.lihaoyi:ujson_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_2.13:3.3.0` 13 | - Updated `com.lihaoyi:upack_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_2.13:3.3.0` 14 | - Updated `com.lihaoyi:upickle-core_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:ujson_2.13:3.3.0` 15 | - Updated `com.lihaoyi:upickle-core_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upack_2.13:3.3.0` 16 | - Updated `com.lihaoyi:upickle-core_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle-implicits_2.13:3.3.0` 17 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_2.13:3.3.0` 18 | - Updated `com.lihaoyi:upickle_2.13:3.1.4` from `3.1.4` to `3.3.0` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M14` 19 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 22 | - Updated `com.softwaremill.sttp.model:core_2.13:1.6.0` from `1.6.0` to `1.7.10` under `com.softwaremill.sttp.shared:ws_2.13:1.3.18` 23 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.9` from `1.7.9` to `1.7.10` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` 24 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` 25 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.shared:ws_2.13:1.3.18` 26 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M14` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_2.13:0.4.0 31 | - com.lihaoyi:os-lib_2.13:0.10.0 32 | - com.lihaoyi:geny_2.13:1.1.0 33 | - com.lihaoyi:upickle_2.13:3.3.0 34 | - com.lihaoyi:ujson_2.13:3.3.0 35 | - com.lihaoyi:upickle-core_2.13:3.3.0 36 | - com.lihaoyi:geny_2.13:1.1.0 (already listed) 37 | - com.lihaoyi:upack_2.13:3.3.0 38 | - com.lihaoyi:upickle-core_2.13:3.3.0 (already listed) 39 | - com.lihaoyi:upickle-implicits_2.13:3.3.0 40 | - com.lihaoyi:upickle-core_2.13:3.3.0 (already listed) 41 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M14 42 | - com.softwaremill.sttp.model:core_2.13:1.7.10 43 | - com.softwaremill.sttp.shared:core_2.13:1.3.18 44 | - com.softwaremill.sttp.shared:ws_2.13:1.3.18 45 | - com.softwaremill.sttp.model:core_2.13:1.7.10 (already listed) 46 | - com.softwaremill.sttp.shared:core_2.13:1.3.18 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M14 48 | - com.lihaoyi:upickle_2.13:3.3.0 (already listed) 49 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M14 (already listed) 50 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M14 51 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M14 (already listed) 52 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_native0.5_3:0.10.0` from `0.10.0` to `0.10.3` under `org.scala-lang:toolkit_native0.5_3:0.5.0` 5 | - Updated `com.lihaoyi:upickle_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_native0.5_3:0.5.0` 6 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_native0.5_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_native0.5_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_native0.5_3:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:os-lib_native0.5_3:0.10.3` 11 | - Updated `com.lihaoyi:ujson_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_3:3.3.1` 12 | - Updated `com.lihaoyi:upack_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_3:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_native0.5_3:3.3.1` 14 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_native0.5_3:3.3.1` 15 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_native0.5_3:3.3.1` 16 | - Updated `com.lihaoyi:upickle-implicits_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_3:3.3.1` 17 | - Updated `com.lihaoyi:upickle_native0.5_3:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16` 18 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` 22 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.19` 23 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_native0.5_3:0.5.0 28 | - com.lihaoyi:os-lib_native0.5_3:0.10.3 29 | - com.lihaoyi:geny_native0.5_3:1.1.1 30 | - com.lihaoyi:upickle_native0.5_3:3.3.1 31 | - com.lihaoyi:ujson_native0.5_3:3.3.1 32 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 33 | - com.lihaoyi:geny_native0.5_3:1.1.0 34 | - com.lihaoyi:upack_native0.5_3:3.3.1 35 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 36 | - com.lihaoyi:upickle-implicits_native0.5_3:3.3.1 37 | - com.lihaoyi:upickle-core_native0.5_3:3.3.1 (already listed) 38 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16 39 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 40 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.19 41 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.3.19 42 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 (already listed) 43 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.19 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M16 45 | - com.lihaoyi:upickle_native0.5_3:3.3.1 (already listed) 46 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M16 48 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M16 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.2.0/toolkit-test_0.2.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 0.2.0 2 | 3 | ## Changes to direct dependencies 4 | - Added `org.scala-lang:toolkit_2.13:0.2.0` under `org.scala-lang:toolkit-test_2.13:0.2.0` 5 | 6 | ## Changes to transitive dependencies 7 | - Added `com.lihaoyi:geny_2.13:1.0.0` under `com.lihaoyi:os-lib_2.13:0.9.1` 8 | - Added `com.lihaoyi:geny_2.13:1.0.0` under `com.lihaoyi:upickle-core_2.13:3.1.0` 9 | - Added `com.lihaoyi:os-lib_2.13:0.9.1` under `org.scala-lang:toolkit_2.13:0.2.0` 10 | - Added `com.lihaoyi:ujson_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.0.0` 11 | - Added `com.lihaoyi:ujson_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.1.0` 12 | - Added `com.lihaoyi:upack_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.0.0` 13 | - Added `com.lihaoyi:upack_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.1.0` 14 | - Added `com.lihaoyi:upickle-core_2.13:3.1.0` under `com.lihaoyi:ujson_2.13:3.1.0` 15 | - Added `com.lihaoyi:upickle-core_2.13:3.1.0` under `com.lihaoyi:upack_2.13:3.1.0` 16 | - Added `com.lihaoyi:upickle-core_2.13:3.1.0` under `com.lihaoyi:upickle-implicits_2.13:3.1.0` 17 | - Added `com.lihaoyi:upickle-implicits_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.0.0` 18 | - Added `com.lihaoyi:upickle-implicits_2.13:3.1.0` under `com.lihaoyi:upickle_2.13:3.1.0` 19 | - Added `com.lihaoyi:upickle_2.13:3.0.0` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1` 20 | - Added `com.lihaoyi:upickle_2.13:3.1.0` under `org.scala-lang:toolkit_2.13:0.2.0` 21 | - Added `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M1` 22 | - Added `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1` 23 | - Added `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` under `org.scala-lang:toolkit_2.13:0.2.0` 24 | - Added `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1` 25 | - Added `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1` under `org.scala-lang:toolkit_2.13:0.2.0` 26 | - Added `com.softwaremill.sttp.model:core_2.13:1.5.5` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` 27 | - Added `com.softwaremill.sttp.model:core_2.13:1.5.5` under `com.softwaremill.sttp.shared:ws_2.13:1.3.13` 28 | - Added `com.softwaremill.sttp.shared:core_2.13:1.3.13` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` 29 | - Added `com.softwaremill.sttp.shared:core_2.13:1.3.13` under `com.softwaremill.sttp.shared:ws_2.13:1.3.13` 30 | - Added `com.softwaremill.sttp.shared:ws_2.13:1.3.13` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M1` 31 | 32 | ## Full dependency tree 33 | 34 | - org.scala-lang:toolkit-test_2.13:0.2.0 35 | - org.scala-lang:toolkit_2.13:0.2.0 36 | - com.lihaoyi:os-lib_2.13:0.9.1 37 | - com.lihaoyi:geny_2.13:1.0.0 38 | - com.lihaoyi:upickle_2.13:3.1.0 39 | - com.lihaoyi:ujson_2.13:3.1.0 40 | - com.lihaoyi:upickle-core_2.13:3.1.0 41 | - com.lihaoyi:geny_2.13:1.0.0 (already listed) 42 | - com.lihaoyi:upack_2.13:3.1.0 43 | - com.lihaoyi:upickle-core_2.13:3.1.0 (already listed) 44 | - com.lihaoyi:upickle-implicits_2.13:3.1.0 45 | - com.lihaoyi:upickle-core_2.13:3.1.0 (already listed) 46 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M1 47 | - com.softwaremill.sttp.model:core_2.13:1.5.5 48 | - com.softwaremill.sttp.shared:core_2.13:1.3.13 49 | - com.softwaremill.sttp.shared:ws_2.13:1.3.13 50 | - com.softwaremill.sttp.model:core_2.13:1.5.5 (already listed) 51 | - com.softwaremill.sttp.shared:core_2.13:1.3.13 (already listed) 52 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M1 53 | - com.lihaoyi:upickle_2.13:3.0.0 54 | - com.lihaoyi:ujson_2.13:3.1.0 (already listed) 55 | - com.lihaoyi:upack_2.13:3.1.0 (already listed) 56 | - com.lihaoyi:upickle-implicits_2.13:3.1.0 (already listed) 57 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M1 (already listed) 58 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M1 59 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M1 (already listed) 60 | - org.scalameta:munit_2.13:1.0.0-M7 61 | - junit:junit:4.13.1 62 | - org.hamcrest:hamcrest-core:1.3.0 63 | - org.scalameta:junit-interface:1.0.0-M7 64 | - junit:junit:4.13.2 65 | - org.hamcrest:hamcrest-core:1.3.0 (already listed) 66 | - org.scala-sbt:test-interface:1.0.0 67 | -------------------------------------------------------------------------------- /changelog/ChangelogGeneration.scala: -------------------------------------------------------------------------------- 1 | import scala.util.Try 2 | import scala.util.matching.Regex 3 | import upickle.default.* 4 | import coursier.graph.DependencyTree 5 | import Dependencies.* 6 | import coursier.* 7 | 8 | case class DiffSummary(updateType: VersionDiff, diffs: List[Diff], illegalDiffs: List[IllegalDiff]) 9 | sealed trait Diff derives ReadWriter: 10 | def under: Option[Dep] 11 | case class Added(newDep: Dep, under: Option[Dep]) extends Diff: 12 | override def toString: String = s"Added `$newDep` ${under.fold("")(u => s"under `$u`")}" 13 | case class Removed(oldDep: Dep, under: Option[Dep]) extends Diff: 14 | override def toString: String = s"Removed `$oldDep` ${under.fold("")(u => s"under `$u`")}" 15 | case class DepUpdated(oldDep: Dep, newDep: Dep, under: Option[Dep]) extends Diff: 16 | override def toString: String = 17 | s"Updated `$oldDep` from `${oldDep.version}` to `${newDep.version}` ${under.fold("")(u => s"under `$u`")}" 18 | 19 | object Diff: 20 | def getOldDep(diff: Diff) = diff match 21 | case Added(newDep, _) => None 22 | case Removed(oldDep, _) => Some(oldDep) 23 | case DepUpdated(oldDep, _, _) => Some(oldDep) 24 | 25 | case class IllegalDiff(diff: Diff, leastOrderLegalUpdate: VersionDiff): 26 | override def toString: String = s"$diff (required at least: $leastOrderLegalUpdate)" 27 | 28 | 29 | case class Changelog(moduleName: String, directChanges: Set[Diff], indirectChanges: Set[Diff], illegalDiffs: Map[Diff, VersionDiff] = Map.empty) derives ReadWriter: 30 | 31 | def diff(other: Changelog): Option[String] = 32 | if other == this then 33 | None 34 | else 35 | val directAdded = directChanges.filterNot(other.directChanges.contains).map(toString) 36 | val directRemoved = other.directChanges.filterNot(directChanges.contains).map(toString) 37 | val indirectAdded = indirectChanges.filterNot(other.indirectChanges.contains).map(toString) 38 | val indirectRemoved = other.indirectChanges.filterNot(indirectChanges.contains).map(toString) 39 | val directAddedString = if directAdded.isEmpty then "" else s" - Direct changes added:\n${directAdded.mkString(" - ", "\n - ", "")}\n" 40 | val directRemovedString = if directRemoved.isEmpty then "" else s" - Direct changes removed:\n${directRemoved.mkString(" - ", "\n - ", "")}\n" 41 | val indirectAddedString = if indirectAdded.isEmpty then "" else s" - Indirect changes added:\n${indirectAdded.mkString(" - ", "\n - ", "")}\n" 42 | val indirectRemovedString = if indirectRemoved.isEmpty then "" else s" - Indirect changes removed:\n${indirectRemoved.mkString(" - ", "\n - ", "")}\n" 43 | Some(directAddedString + directRemovedString + indirectAddedString + indirectRemovedString) 44 | 45 | def toMd: String = 46 | val directChangesSection = if directChanges.isEmpty then "" else 47 | val directChangesHeader = "\n## Changes to direct dependencies" 48 | val directChangesList = directChanges.map(diff => s" - ${toString(diff)}").toList.sorted 49 | (directChangesHeader :: directChangesList).mkString("\n") + "\n" 50 | val indirectChangesSection = if indirectChanges.isEmpty then "" else 51 | val indirectChangesHeader = "\n## Changes to transitive dependencies" 52 | val indirectChangesList = indirectChanges.map(diff => s" - ${toString(diff)}").toList.sorted 53 | (indirectChangesHeader :: indirectChangesList).mkString("\n") + "\n" 54 | val header = s"# Changelog for $moduleName" 55 | header + "\n" + directChangesSection + indirectChangesSection 56 | 57 | private def toString(diff: Diff): String = 58 | illegalDiffs.get(diff) match 59 | case Some(versionDiff) => s"${diff.toString} ILLEGAL CHANGE (required at least: $versionDiff)" 60 | case None => diff.toString 61 | 62 | object Changelog: 63 | def generate(moduleName: String, summary: DiffSummary): Changelog = 64 | val diffs = summary.diffs 65 | val illegalDiffs = summary.illegalDiffs 66 | val parentDiff = diffs.find(_.under.isEmpty).getOrElse(throw new Exception("No parent diff found")) 67 | val parentId = Diff.getOldDep(parentDiff).getOrElse(throw new Exception(s"Illegal parent diff: ${parentDiff}")).id 68 | val (directChanges, indirectChanges) = diffs.partition(_.under.exists(_.id == parentId)) 69 | val illegalDiffsToVersionDiff = illegalDiffs.map({ case IllegalDiff(diff, required) => (diff, required) }).toMap 70 | Changelog(moduleName, directChanges.toSet, indirectChanges.toSet - parentDiff, illegalDiffsToVersionDiff) 71 | -------------------------------------------------------------------------------- /changelog/0.3.0/toolkit_0.3.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_2.13:0.9.1` from `0.9.1` to `0.9.3` under `org.scala-lang:toolkit_2.13:0.3.0` 5 | - Updated `com.lihaoyi:upickle_2.13:3.1.3` from `3.1.3` to `3.2.0` under `org.scala-lang:toolkit_2.13:0.3.0` 6 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `org.scala-lang:toolkit_2.13:0.3.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `org.scala-lang:toolkit_2.13:0.3.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:ujson_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.1.4` 11 | - Updated `com.lihaoyi:ujson_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.2.0` 12 | - Updated `com.lihaoyi:upack_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.1.4` 13 | - Updated `com.lihaoyi:upack_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.2.0` 14 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:ujson_2.13:3.2.0` 15 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upack_2.13:3.2.0` 16 | - Updated `com.lihaoyi:upickle-core_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle-implicits_2.13:3.2.0` 17 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.1.4` 18 | - Updated `com.lihaoyi:upickle-implicits_2.13:3.1.3` from `3.1.3` to `3.2.0` under `com.lihaoyi:upickle_2.13:3.2.0` 19 | - Updated `com.lihaoyi:upickle_2.13:3.1.3` from `3.1.3` to `3.1.4` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M12` 20 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 22 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M6` from `4.0.0-M6` to `4.0.0-M12` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M12` ILLEGAL CHANGE (required at least: MajorUpdate) 23 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.2` from `1.7.2` to `1.7.9` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` 24 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` 25 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.shared:ws_2.13:1.3.17` 26 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.3.16` from `1.3.16` to `1.3.17` under `com.softwaremill.sttp.client4:core_2.13:4.0.0-M12` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_2.13:0.3.0 31 | - com.lihaoyi:os-lib_2.13:0.9.3 32 | - com.lihaoyi:geny_2.13:1.0.0 33 | - com.lihaoyi:upickle_2.13:3.2.0 34 | - com.lihaoyi:ujson_2.13:3.2.0 35 | - com.lihaoyi:upickle-core_2.13:3.2.0 36 | - com.lihaoyi:geny_2.13:1.0.0 (already listed) 37 | - com.lihaoyi:upack_2.13:3.2.0 38 | - com.lihaoyi:upickle-core_2.13:3.2.0 (already listed) 39 | - com.lihaoyi:upickle-implicits_2.13:3.2.0 40 | - com.lihaoyi:upickle-core_2.13:3.2.0 (already listed) 41 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M12 42 | - com.softwaremill.sttp.model:core_2.13:1.7.9 43 | - com.softwaremill.sttp.shared:core_2.13:1.3.17 44 | - com.softwaremill.sttp.shared:ws_2.13:1.3.17 45 | - com.softwaremill.sttp.model:core_2.13:1.6.0 46 | - com.softwaremill.sttp.shared:core_2.13:1.3.17 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.0-M12 48 | - com.lihaoyi:upickle_2.13:3.1.4 49 | - com.lihaoyi:ujson_2.13:3.2.0 (already listed) 50 | - com.lihaoyi:upack_2.13:3.2.0 (already listed) 51 | - com.lihaoyi:upickle-implicits_2.13:3.2.0 (already listed) 52 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M12 (already listed) 53 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.0-M12 54 | - com.softwaremill.sttp.client4:core_2.13:4.0.0-M12 (already listed) 55 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit-test_0.4.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to transitive dependencies 4 | - Added `com.lihaoyi:geny_native0.5_3:1.1.0` under `com.lihaoyi:os-lib_native0.5_3:0.10.0` 5 | - Added `com.lihaoyi:geny_native0.5_3:1.1.0` under `com.lihaoyi:upickle-core_native0.5_3:3.3.0` 6 | - Added `com.lihaoyi:os-lib_native0.5_3:0.10.0` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 7 | - Added `com.lihaoyi:ujson_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 8 | - Added `com.lihaoyi:upack_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 9 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:ujson_native0.5_3:3.3.0` 10 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:upack_native0.5_3:3.3.0` 11 | - Added `com.lihaoyi:upickle-core_native0.5_3:3.3.0` under `com.lihaoyi:upickle-implicits_native0.5_3:3.3.0` 12 | - Added `com.lihaoyi:upickle-implicits_native0.5_3:3.3.0` under `com.lihaoyi:upickle_native0.5_3:3.3.0` 13 | - Added `com.lihaoyi:upickle_native0.5_3:3.3.0` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 14 | - Added `com.lihaoyi:upickle_native0.5_3:3.3.0` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 15 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14` 16 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 17 | - Added `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 18 | - Added `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` 19 | - Added `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_3:0.4.0` 20 | - Added `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 21 | - Added `com.softwaremill.sttp.model:core_native0.5_3:1.7.10` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` 22 | - Added `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 23 | - Added `com.softwaremill.sttp.shared:core_native0.5_3:1.3.18` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` 24 | - Added `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14` 25 | - Added `org.scala-lang:toolkit_native0.5_3:0.4.0` under `org.scala-lang:toolkit-test_native0.5_3:0.4.0` 26 | - Added `org.scalameta:munit-diff_native0.5_3:1.0.0-RC1` under `org.scalameta:munit_native0.5_3:1.0.0-RC1` 27 | - Added `org.scalameta:munit_native0.5_3:1.0.0-RC1` under `org.scala-lang:toolkit-test_native0.5_3:0.4.0` 28 | 29 | ## Full dependency tree 30 | 31 | - org.scala-lang:toolkit-test_native0.5_3:0.4.0 32 | - org.scala-lang:toolkit_native0.5_3:0.4.0 33 | - com.lihaoyi:os-lib_native0.5_3:0.10.0 34 | - com.lihaoyi:geny_native0.5_3:1.1.0 35 | - com.lihaoyi:upickle_native0.5_3:3.3.0 36 | - com.lihaoyi:ujson_native0.5_3:3.3.0 37 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 38 | - com.lihaoyi:geny_native0.5_3:1.1.0 (already listed) 39 | - com.lihaoyi:upack_native0.5_3:3.3.0 40 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 (already listed) 41 | - com.lihaoyi:upickle-implicits_native0.5_3:3.3.0 42 | - com.lihaoyi:upickle-core_native0.5_3:3.3.0 (already listed) 43 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 44 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 45 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.18 46 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.3.18 47 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.10 (already listed) 48 | - com.softwaremill.sttp.shared:core_native0.5_3:1.3.18 (already listed) 49 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M14 50 | - com.lihaoyi:upickle_native0.5_3:3.3.0 (already listed) 51 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 (already listed) 52 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M14 53 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M14 (already listed) 54 | - org.scalameta:munit_native0.5_3:1.0.0-RC1 55 | - org.scalameta:munit-diff_native0.5_3:1.0.0-RC1 56 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `org.scala-lang:toolkit_sjs1_3:0.4.0` 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_sjs1_3:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_sjs1_3:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_sjs1_3:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:upickle-core_sjs1_3:3.3.0` 10 | - Updated `com.lihaoyi:ujson_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_3:3.3.0` 11 | - Updated `com.lihaoyi:upack_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_3:3.3.0` 12 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:ujson_sjs1_3:3.3.0` 13 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upack_sjs1_3:3.3.0` 14 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle-implicits_sjs1_3:3.3.0` 15 | - Updated `com.lihaoyi:upickle-implicits_sjs1_3:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_3:3.3.0` 16 | - Updated `com.lihaoyi:upickle_sjs1_3:3.1.4` from `3.1.4` to `3.3.0` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14` 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.6.0` from `1.6.0` to `1.7.10` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.18` 21 | - Updated `com.softwaremill.sttp.model:core_sjs1_3:1.7.9` from `1.7.9` to `1.7.10` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` 22 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` 23 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.18` 24 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` 25 | 26 | ## Full dependency tree 27 | 28 | - org.scala-lang:toolkit_sjs1_3:0.4.0 29 | - com.lihaoyi:upickle_sjs1_3:3.3.0 30 | - com.lihaoyi:ujson_sjs1_3:3.3.0 31 | - com.lihaoyi:upickle-core_sjs1_3:3.3.0 32 | - com.lihaoyi:geny_sjs1_3:1.1.0 33 | - com.lihaoyi:upack_sjs1_3:3.3.0 34 | - com.lihaoyi:upickle-core_sjs1_3:3.3.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_sjs1_3:3.3.0 36 | - com.lihaoyi:upickle-core_sjs1_3:3.3.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14 38 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 39 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 40 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 41 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 42 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 43 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 44 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.18 45 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.3.18 46 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 (already listed) 47 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.18 (already listed) 48 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14 49 | - com.lihaoyi:upickle_sjs1_3:3.3.0 (already listed) 50 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14 (already listed) 51 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M14 52 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14 (already listed) 53 | -------------------------------------------------------------------------------- /changelog/0.2.1/toolkit_0.2.1_native0.4_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 0.2.1 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `org.scala-lang:toolkit_native0.4_3:0.2.1` 5 | - Updated `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_native0.4_3:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_native0.4_3:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_3:3.1.3` 10 | - Updated `com.lihaoyi:upack_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_3:3.1.3` 11 | - Updated `com.lihaoyi:upickle-core_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:ujson_native0.4_3:3.1.3` 12 | - Updated `com.lihaoyi:upickle-core_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upack_native0.4_3:3.1.3` 13 | - Updated `com.lihaoyi:upickle-core_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle-implicits_native0.4_3:3.1.3` 14 | - Updated `com.lihaoyi:upickle-implicits_native0.4_3:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_3:3.1.3` 15 | - Updated `com.lihaoyi:upickle_native0.4_3:3.0.0` from `3.0.0` to `3.1.3` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 16 | - Updated `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.model:core_native0.4_3:1.5.5` from `1.5.5` to `1.6.0` under `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.16` ILLEGAL CHANGE (required at least: MinorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_native0.4_3:1.5.5` from `1.5.5` to `1.7.2` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_native0.4_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6` 22 | - Updated `com.softwaremill.sttp.shared:core_native0.4_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.16` 23 | - Updated `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_native0.4_3:0.2.1 28 | - com.lihaoyi:os-lib_native0.4_3:0.9.1 29 | - com.lihaoyi:geny_native0.4_3:1.0.0 30 | - com.lihaoyi:upickle_native0.4_3:3.1.3 31 | - com.lihaoyi:ujson_native0.4_3:3.1.3 32 | - com.lihaoyi:upickle-core_native0.4_3:3.1.3 33 | - com.lihaoyi:geny_native0.4_3:1.0.0 (already listed) 34 | - com.lihaoyi:upack_native0.4_3:3.1.3 35 | - com.lihaoyi:upickle-core_native0.4_3:3.1.3 (already listed) 36 | - com.lihaoyi:upickle-implicits_native0.4_3:3.1.3 37 | - com.lihaoyi:upickle-core_native0.4_3:3.1.3 (already listed) 38 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6 39 | - com.softwaremill.sttp.model:core_native0.4_3:1.7.2 40 | - com.softwaremill.sttp.shared:core_native0.4_3:1.3.16 41 | - com.softwaremill.sttp.shared:ws_native0.4_3:1.3.16 42 | - com.softwaremill.sttp.model:core_native0.4_3:1.6.0 43 | - com.softwaremill.sttp.shared:core_native0.4_3:1.3.16 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M6 45 | - com.lihaoyi:upickle_native0.4_3:3.1.3 (already listed) 46 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M6 48 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M6 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit_0.5.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:os-lib_native0.5_2.13:0.10.0` from `0.10.0` to `0.10.3` under `org.scala-lang:toolkit_native0.5_2.13:0.5.0` 5 | - Updated `com.lihaoyi:upickle_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_native0.5_2.13:0.5.0` 6 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_native0.5_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_native0.5_2.13:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 8 | 9 | ## Changes to transitive dependencies 10 | - Updated `com.lihaoyi:geny_native0.5_2.13:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:os-lib_native0.5_2.13:0.10.3` 11 | - Updated `com.lihaoyi:ujson_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_2.13:3.3.1` 12 | - Updated `com.lihaoyi:upack_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_2.13:3.3.1` 13 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_native0.5_2.13:3.3.1` 14 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_native0.5_2.13:3.3.1` 15 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.1` 16 | - Updated `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_native0.5_2.13:3.3.1` 17 | - Updated `com.lihaoyi:upickle_native0.5_2.13:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16` 18 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` 22 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.19` 23 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_native0.5_2.13:0.5.0 28 | - com.lihaoyi:os-lib_native0.5_2.13:0.10.3 29 | - com.lihaoyi:geny_native0.5_2.13:1.1.1 30 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 31 | - com.lihaoyi:ujson_native0.5_2.13:3.3.1 32 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 33 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 34 | - com.lihaoyi:upack_native0.5_2.13:3.3.1 35 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 36 | - com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.1 37 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.1 (already listed) 38 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16 39 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 40 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19 41 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.19 42 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 (already listed) 43 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.19 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M16 45 | - com.lihaoyi:upickle_native0.5_2.13:3.3.1 (already listed) 46 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M16 48 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M16 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.8.0/toolkit-test_0.8.0_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_3:0.7.0` from `0.7.0` to `0.8.0` under `org.scala-lang:toolkit-test_3:0.8.0` 5 | 6 | ## Changes to transitive dependencies 7 | - Updated `com.lihaoyi:ujson_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 8 | - Updated `com.lihaoyi:ujson_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 9 | - Updated `com.lihaoyi:upack_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 10 | - Updated `com.lihaoyi:upack_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 11 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:ujson_3:4.4.1` 12 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upack_3:4.4.1` 13 | - Updated `com.lihaoyi:upickle-core_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle-implicits_3:4.4.1` 14 | - Updated `com.lihaoyi:upickle-implicits_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.0` 15 | - Updated `com.lihaoyi:upickle-implicits_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_3:4.4.1` 16 | - Updated `com.lihaoyi:upickle_3:4.1.0` from `4.1.0` to `4.4.0` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 17 | - Updated `com.lihaoyi:upickle_3:4.1.0` from `4.1.0` to `4.4.1` under `org.scala-lang:toolkit_3:0.8.0` 18 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:json-common_3:4.0.13` 19 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 20 | - Updated `com.softwaremill.sttp.client4:core_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_3:0.8.0` 21 | - Updated `com.softwaremill.sttp.client4:json-common_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_3:4.0.13` 22 | - Updated `com.softwaremill.sttp.client4:upickle_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_3:0.8.0` 23 | - Updated `com.softwaremill.sttp.model:core_3:1.7.11` from `1.7.11` to `1.7.12` under `com.softwaremill.sttp.shared:ws_3:1.5.0` 24 | - Updated `com.softwaremill.sttp.model:core_3:1.7.11` from `1.7.11` to `1.7.17` under `com.softwaremill.sttp.client4:core_3:4.0.13` 25 | - Updated `com.softwaremill.sttp.shared:core_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_3:4.0.13` 26 | - Updated `com.softwaremill.sttp.shared:core_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.shared:ws_3:1.5.0` 27 | - Updated `com.softwaremill.sttp.shared:ws_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_3:4.0.13` 28 | 29 | ## Full dependency tree 30 | 31 | - org.scala-lang:toolkit-test_3:0.8.0 32 | - org.scala-lang:toolkit_3:0.8.0 33 | - com.lihaoyi:os-lib_3:0.11.3 34 | - com.lihaoyi:geny_3:1.1.1 35 | - com.lihaoyi:upickle_3:4.4.1 36 | - com.lihaoyi:ujson_3:4.4.1 37 | - com.lihaoyi:upickle-core_3:4.4.1 38 | - com.lihaoyi:geny_3:1.1.1 (already listed) 39 | - com.lihaoyi:upack_3:4.4.1 40 | - com.lihaoyi:upickle-core_3:4.4.1 (already listed) 41 | - com.lihaoyi:upickle-implicits_3:4.4.1 42 | - com.lihaoyi:upickle-core_3:4.4.1 (already listed) 43 | - com.softwaremill.sttp.client4:core_3:4.0.13 44 | - com.softwaremill.sttp.model:core_3:1.7.17 45 | - com.softwaremill.sttp.shared:core_3:1.5.0 46 | - com.softwaremill.sttp.shared:ws_3:1.5.0 47 | - com.softwaremill.sttp.model:core_3:1.7.12 48 | - com.softwaremill.sttp.shared:core_3:1.5.0 (already listed) 49 | - com.softwaremill.sttp.client4:upickle_3:4.0.13 50 | - com.lihaoyi:upickle_3:4.4.0 51 | - com.lihaoyi:ujson_3:4.4.1 (already listed) 52 | - com.lihaoyi:upack_3:4.4.1 (already listed) 53 | - com.lihaoyi:upickle-implicits_3:4.4.1 (already listed) 54 | - com.softwaremill.sttp.client4:core_3:4.0.13 (already listed) 55 | - com.softwaremill.sttp.client4:json-common_3:4.0.13 56 | - com.softwaremill.sttp.client4:core_3:4.0.13 (already listed) 57 | - org.scalameta:munit_3:1.1.0 58 | - junit:junit:4.13.2 59 | - org.hamcrest:hamcrest-core:1.3.0 60 | - org.scalameta:junit-interface:1.1.0 61 | - junit:junit:4.13.2 (already listed) 62 | - org.scala-sbt:test-interface:1.0.0 63 | - org.scalameta:munit-diff_3:1.1.0 64 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_sjs1_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_sjs1_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_sjs1_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_sjs1_3:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_sjs1_3:4.1.0` 10 | - Updated `com.lihaoyi:ujson_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_sjs1_3:0.7.0 27 | - com.lihaoyi:upickle_sjs1_3:4.1.0 28 | - com.lihaoyi:ujson_sjs1_3:4.1.0 29 | - com.lihaoyi:upickle-core_sjs1_3:4.1.0 30 | - com.lihaoyi:geny_sjs1_3:1.1.1 31 | - com.lihaoyi:upack_sjs1_3:4.1.0 32 | - com.lihaoyi:upickle-core_sjs1_3:4.1.0 (already listed) 33 | - com.lihaoyi:upickle-implicits_sjs1_3:4.1.0 34 | - com.lihaoyi:upickle-core_sjs1_3:4.1.0 (already listed) 35 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-RC1 36 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 37 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 38 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 39 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 40 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 41 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 42 | - com.softwaremill.sttp.shared:core_sjs1_3:1.4.2 43 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.4.2 44 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.11 (already listed) 45 | - com.softwaremill.sttp.shared:core_sjs1_3:1.4.2 (already listed) 46 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-RC1 47 | - com.lihaoyi:upickle_sjs1_3:4.1.0 (already listed) 48 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-RC1 (already listed) 49 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-RC1 50 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-RC1 (already listed) 51 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_native0.5_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_native0.5_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_native0.5_3:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_native0.5_3:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_native0.5_3:4.1.0` 10 | - Updated `com.lihaoyi:ujson_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_3:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_native0.5_3:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_3:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_native0.5_3:0.7.0 27 | - com.lihaoyi:os-lib_native0.5_3:0.11.3 28 | - com.lihaoyi:geny_native0.5_3:1.1.1 29 | - com.lihaoyi:upickle_native0.5_3:4.1.0 30 | - com.lihaoyi:ujson_native0.5_3:4.1.0 31 | - com.lihaoyi:upickle-core_native0.5_3:4.1.0 32 | - com.lihaoyi:geny_native0.5_3:1.1.1 (already listed) 33 | - com.lihaoyi:upack_native0.5_3:4.1.0 34 | - com.lihaoyi:upickle-core_native0.5_3:4.1.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_native0.5_3:4.1.0 36 | - com.lihaoyi:upickle-core_native0.5_3:4.1.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1 38 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 39 | - com.softwaremill.sttp.shared:core_native0.5_3:1.4.2 40 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.4.2 41 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_native0.5_3:1.4.2 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-RC1 44 | - com.lihaoyi:upickle_native0.5_3:4.1.0 (already listed) 45 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-RC1 47 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1 (already listed) 48 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit_0.4.0_sjs1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `org.scala-lang:toolkit_sjs1_2.13:0.4.0` 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_sjs1_2.13:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `org.scala-lang:toolkit_sjs1_2.13:0.4.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_sjs1_2.13:1.0.0` from `1.0.0` to `1.1.0` under `com.lihaoyi:upickle-core_sjs1_2.13:3.3.0` 10 | - Updated `com.lihaoyi:ujson_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_2.13:3.3.0` 11 | - Updated `com.lihaoyi:upack_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_2.13:3.3.0` 12 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:ujson_sjs1_2.13:3.3.0` 13 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upack_sjs1_2.13:3.3.0` 14 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.0` 15 | - Updated `com.lihaoyi:upickle-implicits_sjs1_2.13:3.2.0` from `3.2.0` to `3.3.0` under `com.lihaoyi:upickle_sjs1_2.13:3.3.0` 16 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.1.4` from `3.1.4` to `3.3.0` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M14` 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M12` from `4.0.0-M12` to `4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M14` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.6.0` from `1.6.0` to `1.7.10` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.18` 21 | - Updated `com.softwaremill.sttp.model:core_sjs1_2.13:1.7.9` from `1.7.9` to `1.7.10` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` 22 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` 23 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.18` 24 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.17` from `1.3.17` to `1.3.18` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14` 25 | 26 | ## Full dependency tree 27 | 28 | - org.scala-lang:toolkit_sjs1_2.13:0.4.0 29 | - com.lihaoyi:upickle_sjs1_2.13:3.3.0 30 | - com.lihaoyi:ujson_sjs1_2.13:3.3.0 31 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.0 32 | - com.lihaoyi:geny_sjs1_2.13:1.1.0 33 | - com.lihaoyi:upack_sjs1_2.13:3.3.0 34 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.0 36 | - com.lihaoyi:upickle-core_sjs1_2.13:3.3.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14 38 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10 39 | - io.github.cquiroz:scala-java-time_sjs1_2.13:2.5.0 40 | - io.github.cquiroz:scala-java-locales_sjs1_2.13:1.5.1 41 | - io.github.cquiroz:cldr-api_sjs1_2.13:4.0.0 42 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 43 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 44 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.18 45 | - com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.18 46 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.10 (already listed) 47 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.18 (already listed) 48 | - com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M14 49 | - com.lihaoyi:upickle_sjs1_2.13:3.3.0 (already listed) 50 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14 (already listed) 51 | - com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M14 52 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M14 (already listed) 53 | -------------------------------------------------------------------------------- /changelog/0.8.0/toolkit_0.8.0_native0.5_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `org.scala-lang:toolkit_native0.5_3:0.8.0` 5 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_native0.5_3:0.8.0` 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_native0.5_3:0.8.0` 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.0` 10 | - Updated `com.lihaoyi:ujson_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.1` 11 | - Updated `com.lihaoyi:upack_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.0` 12 | - Updated `com.lihaoyi:upack_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.1` 13 | - Updated `com.lihaoyi:upickle-core_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:ujson_native0.5_3:4.4.1` 14 | - Updated `com.lihaoyi:upickle-core_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upack_native0.5_3:4.4.1` 15 | - Updated `com.lihaoyi:upickle-core_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle-implicits_native0.5_3:4.4.1` 16 | - Updated `com.lihaoyi:upickle-implicits_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.0` 17 | - Updated `com.lihaoyi:upickle-implicits_native0.5_3:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_native0.5_3:4.4.1` 18 | - Updated `com.lihaoyi:upickle_native0.5_3:4.1.0` from `4.1.0` to `4.4.0` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.13` 19 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.13` 20 | - Updated `com.softwaremill.sttp.client4:core_native0.5_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.13` 21 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.13` 22 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.11` from `1.7.11` to `1.7.12` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.5.0` 23 | - Updated `com.softwaremill.sttp.model:core_native0.5_3:1.7.11` from `1.7.11` to `1.7.17` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.13` 24 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.13` 25 | - Updated `com.softwaremill.sttp.shared:core_native0.5_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.shared:ws_native0.5_3:1.5.0` 26 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_3:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_native0.5_3:4.0.13` 27 | 28 | ## Full dependency tree 29 | 30 | - org.scala-lang:toolkit_native0.5_3:0.8.0 31 | - com.lihaoyi:os-lib_native0.5_3:0.11.3 32 | - com.lihaoyi:geny_native0.5_3:1.1.1 33 | - com.lihaoyi:upickle_native0.5_3:4.4.1 34 | - com.lihaoyi:ujson_native0.5_3:4.4.1 35 | - com.lihaoyi:upickle-core_native0.5_3:4.4.1 36 | - com.lihaoyi:geny_native0.5_3:1.1.1 (already listed) 37 | - com.lihaoyi:upack_native0.5_3:4.4.1 38 | - com.lihaoyi:upickle-core_native0.5_3:4.4.1 (already listed) 39 | - com.lihaoyi:upickle-implicits_native0.5_3:4.4.1 40 | - com.lihaoyi:upickle-core_native0.5_3:4.4.1 (already listed) 41 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.13 42 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.17 43 | - com.softwaremill.sttp.shared:core_native0.5_3:1.5.0 44 | - com.softwaremill.sttp.shared:ws_native0.5_3:1.5.0 45 | - com.softwaremill.sttp.model:core_native0.5_3:1.7.12 46 | - com.softwaremill.sttp.shared:core_native0.5_3:1.5.0 (already listed) 47 | - com.softwaremill.sttp.client4:upickle_native0.5_3:4.0.13 48 | - com.lihaoyi:upickle_native0.5_3:4.4.0 49 | - com.lihaoyi:ujson_native0.5_3:4.4.1 (already listed) 50 | - com.lihaoyi:upack_native0.5_3:4.4.1 (already listed) 51 | - com.lihaoyi:upickle-implicits_native0.5_3:4.4.1 (already listed) 52 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.13 (already listed) 53 | - com.softwaremill.sttp.client4:json-common_native0.5_3:4.0.13 54 | - com.softwaremill.sttp.client4:core_native0.5_3:4.0.13 (already listed) 55 | -------------------------------------------------------------------------------- /changelog/0.2.1/toolkit_0.2.1_native0.4_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 0.2.1 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `org.scala-lang:toolkit_native0.4_2.13:0.2.1` 5 | - Updated `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_native0.4_2.13:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.4_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `org.scala-lang:toolkit_native0.4_2.13:0.2.1` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:ujson_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_2.13:3.1.3` 10 | - Updated `com.lihaoyi:upack_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_2.13:3.1.3` 11 | - Updated `com.lihaoyi:upickle-core_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:ujson_native0.4_2.13:3.1.3` 12 | - Updated `com.lihaoyi:upickle-core_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upack_native0.4_2.13:3.1.3` 13 | - Updated `com.lihaoyi:upickle-core_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle-implicits_native0.4_2.13:3.1.3` 14 | - Updated `com.lihaoyi:upickle-implicits_native0.4_2.13:3.1.0` from `3.1.0` to `3.1.3` under `com.lihaoyi:upickle_native0.4_2.13:3.1.3` 15 | - Updated `com.lihaoyi:upickle_native0.4_2.13:3.0.0` from `3.0.0` to `3.1.3` under `com.softwaremill.sttp.client4:upickle_native0.4_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 16 | - Updated `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:json-common_native0.4_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_native0.4_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:json-common_native0.4_2.13:4.0.0-M1` from `4.0.0-M1` to `4.0.0-M6` under `com.softwaremill.sttp.client4:upickle_native0.4_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.model:core_native0.4_2.13:1.5.5` from `1.5.5` to `1.6.0` under `com.softwaremill.sttp.shared:ws_native0.4_2.13:1.3.16` ILLEGAL CHANGE (required at least: MinorUpdate) 20 | - Updated `com.softwaremill.sttp.model:core_native0.4_2.13:1.5.5` from `1.5.5` to `1.7.2` under `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6` ILLEGAL CHANGE (required at least: MinorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_native0.4_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6` 22 | - Updated `com.softwaremill.sttp.shared:core_native0.4_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.shared:ws_native0.4_2.13:1.3.16` 23 | - Updated `com.softwaremill.sttp.shared:ws_native0.4_2.13:1.3.13` from `1.3.13` to `1.3.16` under `com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6` 24 | 25 | ## Full dependency tree 26 | 27 | - org.scala-lang:toolkit_native0.4_2.13:0.2.1 28 | - com.lihaoyi:os-lib_native0.4_2.13:0.9.1 29 | - com.lihaoyi:geny_native0.4_2.13:1.0.0 30 | - com.lihaoyi:upickle_native0.4_2.13:3.1.3 31 | - com.lihaoyi:ujson_native0.4_2.13:3.1.3 32 | - com.lihaoyi:upickle-core_native0.4_2.13:3.1.3 33 | - com.lihaoyi:geny_native0.4_2.13:1.0.0 (already listed) 34 | - com.lihaoyi:upack_native0.4_2.13:3.1.3 35 | - com.lihaoyi:upickle-core_native0.4_2.13:3.1.3 (already listed) 36 | - com.lihaoyi:upickle-implicits_native0.4_2.13:3.1.3 37 | - com.lihaoyi:upickle-core_native0.4_2.13:3.1.3 (already listed) 38 | - com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6 39 | - com.softwaremill.sttp.model:core_native0.4_2.13:1.7.2 40 | - com.softwaremill.sttp.shared:core_native0.4_2.13:1.3.16 41 | - com.softwaremill.sttp.shared:ws_native0.4_2.13:1.3.16 42 | - com.softwaremill.sttp.model:core_native0.4_2.13:1.6.0 43 | - com.softwaremill.sttp.shared:core_native0.4_2.13:1.3.16 (already listed) 44 | - com.softwaremill.sttp.client4:upickle_native0.4_2.13:4.0.0-M6 45 | - com.lihaoyi:upickle_native0.4_2.13:3.1.3 (already listed) 46 | - com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6 (already listed) 47 | - com.softwaremill.sttp.client4:json-common_native0.4_2.13:4.0.0-M6 48 | - com.softwaremill.sttp.client4:core_native0.4_2.13:4.0.0-M6 (already listed) 49 | -------------------------------------------------------------------------------- /changelog/0.4.0/toolkit-test_0.4.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to transitive dependencies 4 | - Added `com.lihaoyi:geny_native0.5_2.13:1.1.0` under `com.lihaoyi:os-lib_native0.5_2.13:0.10.0` 5 | - Added `com.lihaoyi:geny_native0.5_2.13:1.1.0` under `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` 6 | - Added `com.lihaoyi:os-lib_native0.5_2.13:0.10.0` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 7 | - Added `com.lihaoyi:ujson_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 8 | - Added `com.lihaoyi:upack_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 9 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:ujson_native0.5_2.13:3.3.0` 10 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:upack_native0.5_2.13:3.3.0` 11 | - Added `com.lihaoyi:upickle-core_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0` 12 | - Added `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0` under `com.lihaoyi:upickle_native0.5_2.13:3.3.0` 13 | - Added `com.lihaoyi:upickle_native0.5_2.13:3.3.0` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 14 | - Added `com.lihaoyi:upickle_native0.5_2.13:3.3.0` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 15 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14` 16 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 17 | - Added `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 18 | - Added `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` 19 | - Added `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14` under `org.scala-lang:toolkit_native0.5_2.13:0.4.0` 20 | - Added `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 21 | - Added `com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` 22 | - Added `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 23 | - Added `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` 24 | - Added `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14` 25 | - Added `org.scala-lang:toolkit_native0.5_2.13:0.4.0` under `org.scala-lang:toolkit-test_native0.5_2.13:0.4.0` 26 | - Added `org.scalameta:munit-diff_native0.5_2.13:1.0.0-RC1` under `org.scalameta:munit_native0.5_2.13:1.0.0-RC1` 27 | - Added `org.scalameta:munit_native0.5_2.13:1.0.0-RC1` under `org.scala-lang:toolkit-test_native0.5_2.13:0.4.0` 28 | 29 | ## Full dependency tree 30 | 31 | - org.scala-lang:toolkit-test_native0.5_2.13:0.4.0 32 | - org.scala-lang:toolkit_native0.5_2.13:0.4.0 33 | - com.lihaoyi:os-lib_native0.5_2.13:0.10.0 34 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 35 | - com.lihaoyi:upickle_native0.5_2.13:3.3.0 36 | - com.lihaoyi:ujson_native0.5_2.13:3.3.0 37 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 38 | - com.lihaoyi:geny_native0.5_2.13:1.1.0 (already listed) 39 | - com.lihaoyi:upack_native0.5_2.13:3.3.0 40 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 (already listed) 41 | - com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.0 42 | - com.lihaoyi:upickle-core_native0.5_2.13:3.3.0 (already listed) 43 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 44 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 45 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18 46 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.18 47 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.10 (already listed) 48 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.18 (already listed) 49 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M14 50 | - com.lihaoyi:upickle_native0.5_2.13:3.3.0 (already listed) 51 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 (already listed) 52 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M14 53 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M14 (already listed) 54 | - org.scalameta:munit_native0.5_2.13:1.0.0-RC1 55 | - org.scalameta:munit-diff_native0.5_2.13:1.0.0-RC1 56 | -------------------------------------------------------------------------------- /changelog/0.2.0/toolkit-test_0.2.0_native0.4_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 0.2.0 2 | 3 | ## Changes to direct dependencies 4 | - Added `org.scala-lang:toolkit_native0.4_3:0.2.0` under `org.scala-lang:toolkit-test_native0.4_3:0.2.0` 5 | 6 | ## Changes to transitive dependencies 7 | - Added `com.lihaoyi:geny_native0.4_3:1.0.0` under `com.lihaoyi:os-lib_native0.4_3:0.9.1` 8 | - Added `com.lihaoyi:geny_native0.4_3:1.0.0` under `com.lihaoyi:upickle-core_native0.4_3:3.1.0` 9 | - Added `com.lihaoyi:os-lib_native0.4_3:0.9.1` under `org.scala-lang:toolkit_native0.4_3:0.2.0` 10 | - Added `com.lihaoyi:ujson_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.0.0` 11 | - Added `com.lihaoyi:ujson_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.1.0` 12 | - Added `com.lihaoyi:upack_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.0.0` 13 | - Added `com.lihaoyi:upack_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.1.0` 14 | - Added `com.lihaoyi:upickle-core_native0.4_3:3.1.0` under `com.lihaoyi:ujson_native0.4_3:3.1.0` 15 | - Added `com.lihaoyi:upickle-core_native0.4_3:3.1.0` under `com.lihaoyi:upack_native0.4_3:3.1.0` 16 | - Added `com.lihaoyi:upickle-core_native0.4_3:3.1.0` under `com.lihaoyi:upickle-implicits_native0.4_3:3.1.0` 17 | - Added `com.lihaoyi:upickle-implicits_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.0.0` 18 | - Added `com.lihaoyi:upickle-implicits_native0.4_3:3.1.0` under `com.lihaoyi:upickle_native0.4_3:3.1.0` 19 | - Added `com.lihaoyi:upickle_native0.4_3:3.0.0` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1` 20 | - Added `com.lihaoyi:upickle_native0.4_3:3.1.0` under `org.scala-lang:toolkit_native0.4_3:0.2.0` 21 | - Added `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` under `com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M1` 22 | - Added `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1` 23 | - Added `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` under `org.scala-lang:toolkit_native0.4_3:0.2.0` 24 | - Added `com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M1` under `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1` 25 | - Added `com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1` under `org.scala-lang:toolkit_native0.4_3:0.2.0` 26 | - Added `com.softwaremill.sttp.model:core_native0.4_3:1.5.5` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` 27 | - Added `com.softwaremill.sttp.model:core_native0.4_3:1.5.5` under `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.13` 28 | - Added `com.softwaremill.sttp.shared:core_native0.4_3:1.3.13` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` 29 | - Added `com.softwaremill.sttp.shared:core_native0.4_3:1.3.13` under `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.13` 30 | - Added `com.softwaremill.sttp.shared:ws_native0.4_3:1.3.13` under `com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1` 31 | 32 | ## Full dependency tree 33 | 34 | - org.scala-lang:toolkit-test_native0.4_3:0.2.0 35 | - org.scala-lang:toolkit_native0.4_3:0.2.0 36 | - com.lihaoyi:os-lib_native0.4_3:0.9.1 37 | - com.lihaoyi:geny_native0.4_3:1.0.0 38 | - com.lihaoyi:upickle_native0.4_3:3.1.0 39 | - com.lihaoyi:ujson_native0.4_3:3.1.0 40 | - com.lihaoyi:upickle-core_native0.4_3:3.1.0 41 | - com.lihaoyi:geny_native0.4_3:1.0.0 (already listed) 42 | - com.lihaoyi:upack_native0.4_3:3.1.0 43 | - com.lihaoyi:upickle-core_native0.4_3:3.1.0 (already listed) 44 | - com.lihaoyi:upickle-implicits_native0.4_3:3.1.0 45 | - com.lihaoyi:upickle-core_native0.4_3:3.1.0 (already listed) 46 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1 47 | - com.softwaremill.sttp.model:core_native0.4_3:1.5.5 48 | - com.softwaremill.sttp.shared:core_native0.4_3:1.3.13 49 | - com.softwaremill.sttp.shared:ws_native0.4_3:1.3.13 50 | - com.softwaremill.sttp.model:core_native0.4_3:1.5.5 (already listed) 51 | - com.softwaremill.sttp.shared:core_native0.4_3:1.3.13 (already listed) 52 | - com.softwaremill.sttp.client4:upickle_native0.4_3:4.0.0-M1 53 | - com.lihaoyi:upickle_native0.4_3:3.0.0 54 | - com.lihaoyi:ujson_native0.4_3:3.1.0 (already listed) 55 | - com.lihaoyi:upack_native0.4_3:3.1.0 (already listed) 56 | - com.lihaoyi:upickle-implicits_native0.4_3:3.1.0 (already listed) 57 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1 (already listed) 58 | - com.softwaremill.sttp.client4:json-common_native0.4_3:4.0.0-M1 59 | - com.softwaremill.sttp.client4:core_native0.4_3:4.0.0-M1 (already listed) 60 | - org.scalameta:munit_native0.4_3:1.0.0-M7 61 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_sjs1_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_sjs1_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_sjs1_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_sjs1_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_sjs1_2.13:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_sjs1_2.13:4.1.0` 10 | - Updated `com.lihaoyi:ujson_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_sjs1_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_sjs1_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_sjs1_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_sjs1_2.13:0.7.0 27 | - com.lihaoyi:upickle_sjs1_2.13:4.1.0 28 | - com.lihaoyi:ujson_sjs1_2.13:4.1.0 29 | - com.lihaoyi:upickle-core_sjs1_2.13:4.1.0 30 | - com.lihaoyi:geny_sjs1_2.13:1.1.1 31 | - com.lihaoyi:upack_sjs1_2.13:4.1.0 32 | - com.lihaoyi:upickle-core_sjs1_2.13:4.1.0 (already listed) 33 | - com.lihaoyi:upickle-implicits_sjs1_2.13:4.1.0 34 | - com.lihaoyi:upickle-core_sjs1_2.13:4.1.0 (already listed) 35 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-RC1 36 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 37 | - io.github.cquiroz:scala-java-time_sjs1_2.13:2.5.0 38 | - io.github.cquiroz:scala-java-locales_sjs1_2.13:1.5.1 39 | - io.github.cquiroz:cldr-api_sjs1_2.13:4.0.0 40 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 41 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 42 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.4.2 43 | - com.softwaremill.sttp.shared:ws_sjs1_2.13:1.4.2 44 | - com.softwaremill.sttp.model:core_sjs1_2.13:1.7.11 (already listed) 45 | - com.softwaremill.sttp.shared:core_sjs1_2.13:1.4.2 (already listed) 46 | - com.softwaremill.sttp.client4:upickle_sjs1_2.13:4.0.0-RC1 47 | - com.lihaoyi:upickle_sjs1_2.13:4.1.0 (already listed) 48 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-RC1 (already listed) 49 | - com.softwaremill.sttp.client4:json-common_sjs1_2.13:4.0.0-RC1 50 | - com.softwaremill.sttp.client4:core_sjs1_2.13:4.0.0-RC1 (already listed) 51 | -------------------------------------------------------------------------------- /changelog/0.8.0/toolkit-test_0.8.0_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_2.13:0.7.0` from `0.7.0` to `0.8.0` under `org.scala-lang:toolkit-test_2.13:0.8.0` 5 | 6 | ## Changes to transitive dependencies 7 | - Updated `com.lihaoyi:ujson_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 8 | - Updated `com.lihaoyi:ujson_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 9 | - Updated `com.lihaoyi:upack_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 10 | - Updated `com.lihaoyi:upack_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 11 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:ujson_2.13:4.4.1` 12 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upack_2.13:4.4.1` 13 | - Updated `com.lihaoyi:upickle-core_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle-implicits_2.13:4.4.1` 14 | - Updated `com.lihaoyi:upickle-implicits_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.0` 15 | - Updated `com.lihaoyi:upickle-implicits_2.13:4.1.0` from `4.1.0` to `4.4.1` under `com.lihaoyi:upickle_2.13:4.4.1` 16 | - Updated `com.lihaoyi:upickle_2.13:4.1.0` from `4.1.0` to `4.4.0` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 17 | - Updated `com.lihaoyi:upickle_2.13:4.1.0` from `4.1.0` to `4.4.1` under `org.scala-lang:toolkit_2.13:0.8.0` 18 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:json-common_2.13:4.0.13` 19 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 20 | - Updated `com.softwaremill.sttp.client4:core_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_2.13:0.8.0` 21 | - Updated `com.softwaremill.sttp.client4:json-common_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `com.softwaremill.sttp.client4:upickle_2.13:4.0.13` 22 | - Updated `com.softwaremill.sttp.client4:upickle_2.13:4.0.0-RC1` from `4.0.0-RC1` to `4.0.13` under `org.scala-lang:toolkit_2.13:0.8.0` 23 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.11` from `1.7.11` to `1.7.12` under `com.softwaremill.sttp.shared:ws_2.13:1.5.0` 24 | - Updated `com.softwaremill.sttp.model:core_2.13:1.7.11` from `1.7.11` to `1.7.17` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 25 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 26 | - Updated `com.softwaremill.sttp.shared:core_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.shared:ws_2.13:1.5.0` 27 | - Updated `com.softwaremill.sttp.shared:ws_2.13:1.4.2` from `1.4.2` to `1.5.0` under `com.softwaremill.sttp.client4:core_2.13:4.0.13` 28 | 29 | ## Full dependency tree 30 | 31 | - org.scala-lang:toolkit-test_2.13:0.8.0 32 | - org.scala-lang:toolkit_2.13:0.8.0 33 | - com.lihaoyi:os-lib_2.13:0.11.3 34 | - com.lihaoyi:geny_2.13:1.1.1 35 | - com.lihaoyi:upickle_2.13:4.4.1 36 | - com.lihaoyi:ujson_2.13:4.4.1 37 | - com.lihaoyi:upickle-core_2.13:4.4.1 38 | - com.lihaoyi:geny_2.13:1.1.1 (already listed) 39 | - com.lihaoyi:upack_2.13:4.4.1 40 | - com.lihaoyi:upickle-core_2.13:4.4.1 (already listed) 41 | - com.lihaoyi:upickle-implicits_2.13:4.4.1 42 | - com.lihaoyi:upickle-core_2.13:4.4.1 (already listed) 43 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 44 | - com.softwaremill.sttp.model:core_2.13:1.7.17 45 | - com.softwaremill.sttp.shared:core_2.13:1.5.0 46 | - com.softwaremill.sttp.shared:ws_2.13:1.5.0 47 | - com.softwaremill.sttp.model:core_2.13:1.7.12 48 | - com.softwaremill.sttp.shared:core_2.13:1.5.0 (already listed) 49 | - com.softwaremill.sttp.client4:upickle_2.13:4.0.13 50 | - com.lihaoyi:upickle_2.13:4.4.0 51 | - com.lihaoyi:ujson_2.13:4.4.1 (already listed) 52 | - com.lihaoyi:upack_2.13:4.4.1 (already listed) 53 | - com.lihaoyi:upickle-implicits_2.13:4.4.1 (already listed) 54 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 (already listed) 55 | - com.softwaremill.sttp.client4:json-common_2.13:4.0.13 56 | - com.softwaremill.sttp.client4:core_2.13:4.0.13 (already listed) 57 | - org.scalameta:munit_2.13:1.1.0 58 | - junit:junit:4.13.2 59 | - org.hamcrest:hamcrest-core:1.3.0 60 | - org.scalameta:junit-interface:1.1.0 61 | - junit:junit:4.13.2 (already listed) 62 | - org.scala-sbt:test-interface:1.0.0 63 | - org.scalameta:munit-diff_2.13:1.1.0 64 | -------------------------------------------------------------------------------- /changelog/0.5.0/toolkit-test_0.5.0_sjs1_3_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit-test 2 | 3 | ## Changes to direct dependencies 4 | - Updated `org.scala-lang:toolkit_sjs1_3:0.4.0` from `0.4.0` to `0.5.0` under `org.scala-lang:toolkit-test_sjs1_3:0.5.0` 5 | - Updated `org.scalameta:munit_sjs1_3:1.0.0-RC1` from `1.0.0-RC1` to `1.0.0` under `org.scala-lang:toolkit-test_sjs1_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | 7 | ## Changes to transitive dependencies 8 | - Updated `com.lihaoyi:ujson_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 9 | - Updated `com.lihaoyi:upack_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 10 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:ujson_sjs1_3:3.3.1` 11 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upack_sjs1_3:3.3.1` 12 | - Updated `com.lihaoyi:upickle-core_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle-implicits_sjs1_3:3.3.1` 13 | - Updated `com.lihaoyi:upickle-implicits_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.lihaoyi:upickle_sjs1_3:3.3.1` 14 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` 15 | - Updated `com.lihaoyi:upickle_sjs1_3:3.3.0` from `3.3.0` to `3.3.1` under `org.scala-lang:toolkit_sjs1_3:0.5.0` 16 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M14` from `4.0.0-M14` to `4.0.0-M16` under `org.scala-lang:toolkit_sjs1_3:0.5.0` ILLEGAL CHANGE (required at least: MajorUpdate) 21 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` 22 | - Updated `com.softwaremill.sttp.shared:core_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19` 23 | - Updated `com.softwaremill.sttp.shared:ws_sjs1_3:1.3.18` from `1.3.18` to `1.3.19` under `com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16` 24 | - Updated `org.scalameta:munit-diff_sjs1_3:1.0.0-RC1` from `1.0.0-RC1` to `1.0.0` under `org.scalameta:munit_sjs1_3:1.0.0` ILLEGAL CHANGE (required at least: MajorUpdate) 25 | 26 | ## Full dependency tree 27 | 28 | - org.scala-lang:toolkit-test_sjs1_3:0.5.0 29 | - org.scala-lang:toolkit_sjs1_3:0.5.0 30 | - com.lihaoyi:upickle_sjs1_3:3.3.1 31 | - com.lihaoyi:ujson_sjs1_3:3.3.1 32 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 33 | - com.lihaoyi:geny_sjs1_3:1.1.0 34 | - com.lihaoyi:upack_sjs1_3:3.3.1 35 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 36 | - com.lihaoyi:upickle-implicits_sjs1_3:3.3.1 37 | - com.lihaoyi:upickle-core_sjs1_3:3.3.1 (already listed) 38 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 39 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 40 | - io.github.cquiroz:scala-java-time_sjs1_3:2.5.0 41 | - io.github.cquiroz:scala-java-locales_sjs1_3:1.5.1 42 | - io.github.cquiroz:cldr-api_sjs1_3:4.0.0 43 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 44 | - org.portable-scala:portable-scala-reflect_sjs1_2.13:1.1.2 (already listed) 45 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.19 46 | - com.softwaremill.sttp.shared:ws_sjs1_3:1.3.19 47 | - com.softwaremill.sttp.model:core_sjs1_3:1.7.10 (already listed) 48 | - com.softwaremill.sttp.shared:core_sjs1_3:1.3.19 (already listed) 49 | - com.softwaremill.sttp.client4:upickle_sjs1_3:4.0.0-M16 50 | - com.lihaoyi:upickle_sjs1_3:3.3.1 (already listed) 51 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 (already listed) 52 | - com.softwaremill.sttp.client4:json-common_sjs1_3:4.0.0-M16 53 | - com.softwaremill.sttp.client4:core_sjs1_3:4.0.0-M16 (already listed) 54 | - org.scalameta:munit_sjs1_3:1.0.0 55 | - org.scalameta:munit-diff_sjs1_3:1.0.0 56 | -------------------------------------------------------------------------------- /changelog/0.7.0/toolkit_0.7.0_native0.5_2.13_changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog for toolkit 2 | 3 | ## Changes to direct dependencies 4 | - Updated `com.lihaoyi:upickle_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `org.scala-lang:toolkit_native0.5_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 5 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_native0.5_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 6 | - Updated `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `org.scala-lang:toolkit_native0.5_2.13:0.7.0` ILLEGAL CHANGE (required at least: MajorUpdate) 7 | 8 | ## Changes to transitive dependencies 9 | - Updated `com.lihaoyi:geny_native0.5_2.13:1.1.0` from `1.1.0` to `1.1.1` under `com.lihaoyi:upickle-core_native0.5_2.13:4.1.0` 10 | - Updated `com.lihaoyi:ujson_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 11 | - Updated `com.lihaoyi:upack_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 12 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:ujson_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 13 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upack_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 14 | - Updated `com.lihaoyi:upickle-core_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle-implicits_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 15 | - Updated `com.lihaoyi:upickle-implicits_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.lihaoyi:upickle_native0.5_2.13:4.1.0` ILLEGAL CHANGE (required at least: MajorUpdate) 16 | - Updated `com.lihaoyi:upickle_native0.5_2.13:3.3.1` from `3.3.1` to `4.1.0` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 17 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 18 | - Updated `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 19 | - Updated `com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-M19` from `4.0.0-M19` to `4.0.0-RC1` under `com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-RC1` ILLEGAL CHANGE (required at least: MajorUpdate) 20 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-RC1` 21 | - Updated `com.softwaremill.sttp.shared:core_native0.5_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.4.2` 22 | - Updated `com.softwaremill.sttp.shared:ws_native0.5_2.13:1.3.22` from `1.3.22` to `1.4.2` under `com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-RC1` 23 | 24 | ## Full dependency tree 25 | 26 | - org.scala-lang:toolkit_native0.5_2.13:0.7.0 27 | - com.lihaoyi:os-lib_native0.5_2.13:0.11.3 28 | - com.lihaoyi:geny_native0.5_2.13:1.1.1 29 | - com.lihaoyi:upickle_native0.5_2.13:4.1.0 30 | - com.lihaoyi:ujson_native0.5_2.13:4.1.0 31 | - com.lihaoyi:upickle-core_native0.5_2.13:4.1.0 32 | - com.lihaoyi:geny_native0.5_2.13:1.1.1 (already listed) 33 | - com.lihaoyi:upack_native0.5_2.13:4.1.0 34 | - com.lihaoyi:upickle-core_native0.5_2.13:4.1.0 (already listed) 35 | - com.lihaoyi:upickle-implicits_native0.5_2.13:4.1.0 36 | - com.lihaoyi:upickle-core_native0.5_2.13:4.1.0 (already listed) 37 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-RC1 38 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 39 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.4.2 40 | - com.softwaremill.sttp.shared:ws_native0.5_2.13:1.4.2 41 | - com.softwaremill.sttp.model:core_native0.5_2.13:1.7.11 (already listed) 42 | - com.softwaremill.sttp.shared:core_native0.5_2.13:1.4.2 (already listed) 43 | - com.softwaremill.sttp.client4:upickle_native0.5_2.13:4.0.0-RC1 44 | - com.lihaoyi:upickle_native0.5_2.13:4.1.0 (already listed) 45 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-RC1 (already listed) 46 | - com.softwaremill.sttp.client4:json-common_native0.5_2.13:4.0.0-RC1 47 | - com.softwaremill.sttp.client4:core_native0.5_2.13:4.0.0-RC1 (already listed) 48 | --------------------------------------------------------------------------------