Skip to content

Commit

Permalink
feat: publish v0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard committed Mar 15, 2024
1 parent 23b5d3c commit dfd1f5d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "boywithkeyboard's updater"
description: "Keep the dependencies of your Deno project up-to-date."
branding:
icon: "arrow-up"
color: "green"
color: "white"
inputs:
commitMessage:
description: "The commit message and the title for the pull request."
Expand Down Expand Up @@ -32,7 +32,7 @@ runs:
ALLOW_BREAKING: ${{ inputs.allowBreaking }}
ALLOW_UNSTABLE: ${{ inputs.allowUnstable }}
run: |
deno run -A https://den.ooo/gh/boywithkeyboard/updater@v0.15.0/mod.ts -c --breaking=$ALLOW_BREAKING --unstable=$ALLOW_UNSTABLE
deno run -A https://den.ooo/gh/boywithkeyboard/updater@v0.17.0/mod.ts -c --breaking=$ALLOW_BREAKING --unstable=$ALLOW_UNSTABLE
CHANGELOG=$(cat updates_changelog.md)
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
echo "$CHANGELOG" >> $GITHUB_ENV
Expand Down
14 changes: 12 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,19 @@

If your project has a `deno.lock` file, the script will now attempt to update this file as well.

- **Safe Mode**
- **Full Version Range Support**

You can now enable **compatibility checking** (with `deno check` and `deno lint`) through the `--safe-mode` flag or the `safeMode` option.
updater now supports version ranges in `npm:` and `jsr:` specifiers.

- **Support for denopkg.com & nest.land**

updater can now handle `https://denopkg.com/...` and `https://x.nest.land/...` imports.

## [v0.17.0](https://github.com/boywithkeyboard/updater/releases/tag/v0.17.0)

- **Compatibility Checking**

updater now performs a basic compatibility check (with `deno check`) and adds a warning to the changelog if there are any issues.

## [v0.16.0](https://github.com/boywithkeyboard/updater/releases/tag/v0.16.0)

Expand Down

0 comments on commit dfd1f5d

Please sign in to comment.