Skip to content

Latest commit

 

History

History
executable file
·
125 lines (75 loc) · 7.49 KB

CHANGELOG.md

File metadata and controls

executable file
·
125 lines (75 loc) · 7.49 KB

2.0.0 (2021-01-06)

Bug Fixes

  • fix for ci (f9c3772)
  • fix unused package detection (8ba02b9)
  • ignore empty directories in Packages/ (2822ffd)

Features

  • Add copy directory feature to DirUtils (6503db9)
  • add log for symbol (fc3e9a3)
  • deterministic package installation (3f60d80)
  • iterative package resolution (c2a3871)
  • support non semver (e711602)
  • support docker image such as unityui/editor (e009fcc)
  • support gitDependencies in package.json (52b280d)
  • support path query parameter (sub-directory) even Unity 2019.2 or earlier (0dfde55)

BREAKING CHANGES

  • Must use gitDependencies instead of dependencies to define git-based dependencies for the package.

2.0.0-preview.2 (2021-01-06)

Bug Fixes

  • Copy and deletes temporary package directory instead of moving it (e04c5f1)
  • fix for ci (ba3f246)

Features

  • Add copy directory feature to DirUtils (5e86160)
  • support docker image such as unityui/editor (67ab523)

2.0.0-preview.1 (2020-08-28)

Bug Fixes

  • fix unused package detection (b057892)
  • ignore empty directories in Packages/ (abb0c9f)

Features

  • add log for GDR_LOG symbol (e5dacba)
  • deterministic package installation (5485ff9)
  • iterative package resolution (85a756c)
  • support non semver (44a5d91)
  • support gitDependencies in package.json (8961111)
  • support path query parameter (sub-directory) even Unity 2019.2 or earlier (fa365cc), closes example/folder#v1

BREAKING CHANGES

  • Must use gitDependencies instead of dependencies to define git-based dependencies for the package. This plugin also supports dependencies to resolve git-based dependencies, but if dependencies include packages that UPM can't resolve, it will fail to start Unity in CI environment.

Changelog

1.1.3 (2019-10-06)

Full Changelog

  • Some files in GitDependencyResolverForUnity conflicts with UpmGitExtension #16

1.1.2 (2019-08-05)

Full Changelog

1.1.1 (2019-08-05)

Full Changelog

Fixed bugs:

  • guids for git-dependency-resolver conflict with upm-git-extension #15

1.1.0 (2019-06-11)

Full Changelog

Implemented enhancements:

  • Add notes on using this package #13
  • Refer to no files from the Library folder #12
  • Deterministic package installation #10

1.0.0 (2019-05-16)

Full Changelog

This plugin resolves git url dependencies in the package for Unity Package Manager.

You can use a git url as a package dependency as the following!

{
  "name": "com.coffee.package-a",
  "version": "0.1.0",
  "dependencies": {
    "com.coffee.core-a": "https://github.com/mob-sakai/GitPackageTest.git#core-a-0.1.0"
  }
}

Implemented enhancements:

  • Update package with a specific tag/branch #7
  • Support .Net 3.5 & 4.x #6
  • Support Unity 2019.1+ #5
  • Support private repository #4
  • Support GitHub, Bitbucket, GitLab, etc. #3
  • Uninstall unused packages that is installed by this plugin #2
  • Resolve git url dependencies in packages #1

* This Changelog was automatically generated by github_changelog_generator