Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thislooksfun/snoots
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0-dev.23
Choose a base ref
...
head repository: thislooksfun/snoots
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.0-dev.24
Choose a head ref
  • 11 commits
  • 10 files changed
  • 3 contributors

Commits on Oct 14, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    thislooksfun thislooksfun
    Copy the full SHA
    50ca060 View commit details
  2. Merge pull request #66 from thislooksfun/renovate/eslint-plugin-unico…

    …rn-44.x
    
    chore(deps): update dependency eslint-plugin-unicorn to v44
    thislooksfun authored Oct 14, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ccbefc7 View commit details

Commits on Oct 24, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    80bda02 View commit details

Commits on Oct 25, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    thislooksfun thislooksfun
    Copy the full SHA
    ccca9a4 View commit details
  2. Merge pull request #70 from thislooksfun/update-renovate-schedule

    Limit renovate to only run on Saturday
    thislooksfun authored Oct 25, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4801bd4 View commit details
  3. Merge pull request #64 from thislooksfun/renovate/dev-minor-patch

    chore(deps): update all non-major dev dependencies
    thislooksfun authored Oct 25, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7eb5bdd View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d6bef53 View commit details
  5. Merge pull request #68 from thislooksfun/renovate/styfle-cancel-workf…

    …low-action-0.x
    
    chore(deps): update styfle/cancel-workflow-action action to v0.11.0
    thislooksfun authored Oct 25, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9aef487 View commit details
  6. Verified

    This commit was signed with the committer’s verified signature.
    thislooksfun thislooksfun
    Copy the full SHA
    cfc33da View commit details

Commits on Nov 12, 2022

  1. fix: properly handle comment replies

    Turns out that when fixing #67 I accidentally broke comment replies. Now
    they are working again.
    
    Fixes #71.
    thislooksfun committed Nov 12, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    thislooksfun thislooksfun
    Copy the full SHA
    e754d3f View commit details
  2. Copy the full SHA
    ed33872 View commit details
Showing with 1,285 additions and 834 deletions.
  1. +1 −0 .eslintrc.yml
  2. +1 −1 .github/workflows/document.yaml
  3. +1 −1 .github/workflows/release.yaml
  4. +1 −1 .github/workflows/symlink.yaml
  5. +5 −1 .husky/pre-push
  6. +7 −0 CHANGELOG.md
  7. +1,229 −801 package-lock.json
  8. +14 −14 package.json
  9. +1 −0 renovate.json
  10. +25 −15 src/reddit/comment/listing/listing.ts
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -75,6 +75,7 @@ rules:
description: true
sr:
subreddit: true
unicorn/switch-case-braces: [error, avoid]

overrides:
- files: ["**/__tests__/**/*.ts"]
2 changes: 1 addition & 1 deletion .github/workflows/document.yaml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.10.1
uses: styfle/cancel-workflow-action@0.11.0
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
newVersion: v${{ steps.semrel.outputs.release-version }}
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.10.1
uses: styfle/cancel-workflow-action@0.11.0
- uses: actions/checkout@v3
with:
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/symlink.yaml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.10.1
uses: styfle/cancel-workflow-action@0.11.0
- uses: actions/checkout@v3
with:
ref: gh-pages
6 changes: 5 additions & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -8,7 +8,11 @@ while IFS= read -r line; do
old="${parts[3]}"
new="${parts[1]}"

npx commitlint -f "$old" -t "$new"
if [ "${old}" = "0000000000000000000000000000000000000000" ]; then
npx commitlint -f 'master' -t "$new"
else
npx commitlint -f "$old" -t "$new"
fi
done < /dev/stdin

echo "All commits matched enforced style!"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.0-dev.24](https://github.com/thislooksfun/snoots/compare/v1.0.0-dev.23...v1.0.0-dev.24) (2022-11-12)


### Bug Fixes

* properly handle comment replies ([e754d3f](https://github.com/thislooksfun/snoots/commit/e754d3fd26fbf9ad24ba3a1d3ee85f8950e0a819)), closes [#67](https://github.com/thislooksfun/snoots/issues/67) [#71](https://github.com/thislooksfun/snoots/issues/71)

## [1.0.0-dev.23](https://github.com/thislooksfun/snoots/compare/v1.0.0-dev.22...v1.0.0-dev.23) (2022-10-14)


Loading