Skip to content

Releases: boywithkeyboard-archive/updater

v0.22.0

04 Apr 14:56
f2fe05c
Compare
Choose a tag to compare
  • Support for deno.re. updater can now update https://deno.re/... imports.

v0.21.1

28 Mar 15:51
d060574
Compare
Choose a tag to compare
  • The error log for type checking is now logged directly on the console. This fixes the problem of exceeding the maximum character length of a pull request description.

v0.21.0

28 Mar 12:03
e08954a
Compare
Choose a tag to compare
  • The pull request now contains the error log in the event that the type check has failed.

v0.20.1

28 Mar 01:43
7928b60
Compare
Choose a tag to compare
deno: update imports (#54)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

v0.20.0

26 Mar 10:37
645b120
Compare
Choose a tag to compare
  • den.ooo is no longer supported.

  • include and exclude specific files and directories. You can specify files, directories and glob patterns to include or exclude.

  • updater accidentally created a schema.json file. This bug has now been fixed.

v0.19.0

24 Mar 14:23
773ef9a
Compare
Choose a tag to compare
  • updater.json config file. You can now configure updater with this configuration file.

    {
      "$schema": "https://updater.mod.land/schema.json",
      "allowBreaking": true
    }

    The file must be in the root directory of your project or in the .github directory.

  • Short footnote in pull request, with the used version of updater and the number of updated imports.

v0.18.3

20 Mar 13:38
ca55de0
Compare
Choose a tag to compare
  • denopkg.com imports are now updated correctly. v0.18.0 introduced support for denopkg.com imports, but updates for such imports previously failed.

v0.18.2

19 Mar 17:54
1279955
Compare
Choose a tag to compare
  • updater's GitHub action now uses deno.land/x. This is due to the upcoming major update of den.ooo, which could cause an interruption.

v0.18.1

19 Mar 13:21
834bb89
Compare
Choose a tag to compare
  • Correct updating of side effect imports. v0.18.0 introduced an issue which basically replaced side effect imports with the URL without preserving the import statement.

    // before
    import 'https://esm.sh/slash@5.0.0'
    // after
    https://esm.sh/slash@5.1.0

    v0.18.1 now fixes this behavior and preserves the import statement.

    // before
    import 'https://esm.sh/slash@5.0.0'
    // after
    import 'https://esm.sh/slash@5.1.0'

v0.18.0

17 Mar 15:59
d1139e3
Compare
Choose a tag to compare
  • Regenerate deno.lock. If your project has a deno.lock file, updater will now regenerate this file as well.

  • Update side effect imports. updater used to ignore such imports in the past due to a minor bug that occurred during the parsing of the regex matches. This issue has now been resolved.

    mdn reference

  • Support for denopkg.com. updater can now update https://denopkg.com/... imports.