Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta Release #464

Merged
merged 28 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1a263de
chore: 🧽 sync develop with beta
wizarr-sentry[bot] May 19, 2024
018ec31
prep for allowing editing of existing users #414
mtthidoteu May 20, 2024
f51cad3
---
dependabot[bot] May 21, 2024
bef7712
Merge pull request #425 from wizarrrr/dependabot/pip/apps/wizarr-back…
JamsRepos May 21, 2024
771dbc7
Merge pull request #426 from wizarrrr/beta
JamsRepos May 21, 2024
1c9854f
chore(release): 4.1.1
semantic-release-bot May 21, 2024
e2b8fd4
chore: 🧽 sync develop with master
wizarr-sentry[bot] May 21, 2024
92c7154
chore(deps): bump actions/download-artifact from 3 to 4 (#428)
dependabot[bot] May 21, 2024
fdf96e5
chore(deps): bump peaceiris/actions-gh-pages from 3 to 4 (#429)
dependabot[bot] May 21, 2024
0d66052
chore(deps): bump actions/setup-python from 4 to 5 (#430)
dependabot[bot] May 21, 2024
4b77632
chore(deps): bump actions/checkout from 2 to 4 (#431)
dependabot[bot] May 21, 2024
8c026d2
chore(deps): bump getsentry/action-github-app-token from 2 to 3 (#432)
dependabot[bot] May 21, 2024
1147e44
ci(dependabot): 🔧 fix pip path
MrDynamo May 21, 2024
357e067
ci(code-ql): 🧪 add beta and master branch
MrDynamo May 21, 2024
c6b8573
ci(build-image): 🧪 bump upload-artifact version
MrDynamo May 21, 2024
0b711e1
ci(build-image): 🧪 drop download/upload artifact version
MrDynamo May 21, 2024
8ec9ddc
chore(deps): bump the pip group across 1 directory with 7 updates (#433)
dependabot[bot] May 22, 2024
c0e7c2a
chore(deps): bump tj-actions/branch-names from 7 to 8 (#435)
dependabot[bot] May 23, 2024
ae5d6b1
revert: 🔁 Change unraid configuration back to working variant
JamsRepos May 26, 2024
f37e767
Revert "revert: 🔁 Change unraid configuration back to working variant"
JamsRepos May 26, 2024
10e104b
feat: Ability to specify whether a user can download content (#449)
EuanMosit Jun 30, 2024
2408a59
fix: 🛠️ Country Code for Sweden being incorrect (#457)
albinmedoc Jul 24, 2024
856fa34
refactor: 📦 Cleanup code for darkmode (#458)
albinmedoc Jul 24, 2024
9780190
chore(deps): bump docker/build-push-action from 5 to 6 (#446)
dependabot[bot] Jul 24, 2024
9d3d0ad
Translations update from Hosted Weblate (#438)
weblate Jul 24, 2024
c8b8d36
feat: 🎊 Make DefaultButton center icon (#462)
albinmedoc Jul 24, 2024
e6e9d68
feat: ✨ Added Onboarding Customisation
albinmedoc Jul 31, 2024
7a958fe
fix: 🐛 Solve security alerts (#465)
albinmedoc Jul 31, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ updates:
# Enable version updates for poetry backend
- package-ecosystem: "pip"
# Look for `pyproject.toml` and `lock` files in the `backend` directory
directory: "/apps/wizarr_backend/"
directory: "/apps/wizarr-backend/"
# Check the pip registry for updates every day (weekdays)
schedule:
interval: "daily"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
steps:
- name: GitHub App Token
id: gh_app
uses: getsentry/action-github-app-token@v2
uses: getsentry/action-github-app-token@v3
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -44,7 +44,7 @@ jobs:
run: npx nx run wizarr-frontend:build-storybook

- name: Deploy Storybook
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
external_repository: wizarrrr/storybook.wizarr.dev
personal_token: ${{ steps.gh_app.outputs.token }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-beta-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
node-version: 18.18.2

# Set up Python and install Poetry
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
# Build and push the image
- name: Build and push by digest
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./dockerfiles/wizarr-ci/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
node-version: 18.18.2

# Use Python and Poetry to install dependencies
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# Build and push by digest
- name: Build and push by digest
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./dockerfiles/wizarr-ci/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-review-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: Get GitHub App Token
id: gh_app
uses: getsentry/action-github-app-token@v2
uses: getsentry/action-github-app-token@v3
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Get the GH_TOKEN from the app
- name: Get GitHub App Token
id: gh_app
uses: getsentry/action-github-app-token@v2
uses: getsentry/action-github-app-token@v3
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# Get the current branch from git
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
uses: tj-actions/branch-names@v8

# Create Release for the Beta
- name: Semantic Release for Beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout the repo and the translations branch
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: translations

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/vulnerability-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ on:
push:
branches:
- develop
- beta
- master
pull_request_target:
branches:
- develop
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -444,5 +444,5 @@ poetry.toml
testing/core
apps/wizarr-backend-next/
apps/wizarr-backend-old/
database/
/apps/wizarr-backend/database/
.sentryclirc
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
## [4.1.1](https:/wizarrrr/wizarr/compare/v4.1.0...v4.1.1) (2024-05-21)


### Bug Fixes

* 🐛 Beta message no longer shows on main releases ([819223e](https:/wizarrrr/wizarr/commit/819223e0b7dd419926946667c5e83837ef586052))
* 🐛 Fix migration syntax error ([affa9ff](https:/wizarrrr/wizarr/commit/affa9ffe130f4100df61d2cf93a061a3f523be70))
* 🩹 Re-write plex.tv URL's to app.plex.tv on media server override ([7eaf403](https:/wizarrrr/wizarr/commit/7eaf403044b0563ccfe5423b9ca262ba526750e9))
* 🩹 Removed plex home configuration due to not existing in the Plex API ([a075079](https:/wizarrrr/wizarr/commit/a07507929a8c747787577015693eefeffc8ce658))
* 🚑 Corrected the variable for unlimited invite uses on plex ([b605010](https:/wizarrrr/wizarr/commit/b605010b371bfd754f7b5406fe7aec74c0337adb))
* 🚑 Plex API endpoint for deleting users ([462deae](https:/wizarrrr/wizarr/commit/462deae0f8d3e3c77a8d33f43382abeba8dfa218))


### Performance Improvements

* 🚀 Only update Emby/Jellyfin users when data is different ([44fe2f1](https:/wizarrrr/wizarr/commit/44fe2f1c2a3dd583fb4daa8c2563167f6b34a459))
* 🚀API Endpoint Optimisation ([#409](https:/wizarrrr/wizarr/issues/409)) ([82d4cf5](https:/wizarrrr/wizarr/commit/82d4cf5b4ffbb08669bfe955cb833a3d4c65756b))


### Continuous Integration

* **codeql:** setup code vulnerability scanning ([#417](https:/wizarrrr/wizarr/issues/417)) ([37612b5](https:/wizarrrr/wizarr/commit/37612b527084a2e7c1074cc5699bb0e8434b6a30))
* **deps:** setup dependabot updates ([#413](https:/wizarrrr/wizarr/issues/413)) ([97a5fd4](https:/wizarrrr/wizarr/commit/97a5fd42727bb879c1fc391e9ff46723c3a9ce34))
* **pr-review:** 🔧 scope to pr target only ([e6008a6](https:/wizarrrr/wizarr/commit/e6008a65d840872c0066443190043307fe2f5d92))
* **semantic-release:** auto-sync commit message ([05b3931](https:/wizarrrr/wizarr/commit/05b3931de119ae27c625bbdb7871cab63d5abe0d))
* **semantic-release:** update sync commit msg ([9235de4](https:/wizarrrr/wizarr/commit/9235de4095dfde158f8f52376ea0fc4fc7abd06f))
* setup auto pr reviews ([#415](https:/wizarrrr/wizarr/issues/415)) ([ec0c1ee](https:/wizarrrr/wizarr/commit/ec0c1ee91687a942a7ac54a731b84fc43cb9c9d1))


### Chores

* 🧺 Exclude unraid template from triggering semantic releases ([08840b9](https:/wizarrrr/wizarr/commit/08840b9056e32649ab943ec473b3b71e6c8ed7d8))
* 🧼 Corrected branch of the latest image ([3e52988](https:/wizarrrr/wizarr/commit/3e5298879b794df30d91a13bf53fa78a2fee6fd1))
* 🧼 Exclude language filles from the workspace search ([e956c28](https:/wizarrrr/wizarr/commit/e956c2838c4b76f601cc4b21cbe03802a3da32a8))
* 🧽 Fixed formatting with sematic release commit names ([c913942](https:/wizarrrr/wizarr/commit/c913942d5685fb77134e92a2c6f4a580431d053b))
* 🧽 sync develop with beta ([7107159](https:/wizarrrr/wizarr/commit/7107159ce9bfa8e54952696a53abc37a3f2ba13a))
* 🧽 sync develop with beta ([3e213b1](https:/wizarrrr/wizarr/commit/3e213b1920ee56e7915acc69ce1192f2fc0ae278))
* 🧽 Updated the unraid template to include different branches ([8a82a78](https:/wizarrrr/wizarr/commit/8a82a78944e7efac2284142df9a03446c51d909e))
* **release:** 4.1.1-beta.1 ([0058a5b](https:/wizarrrr/wizarr/commit/0058a5be3de20acf1f2faddafa4c4d7c47affde9)), closes [#409](https:/wizarrrr/wizarr/issues/409)
* **release:** 4.1.1-beta.2 ([e90d092](https:/wizarrrr/wizarr/commit/e90d092b514cda38ae36d6b7b2d19cd147eb8d04)), closes [#417](https:/wizarrrr/wizarr/issues/417) [#413](https:/wizarrrr/wizarr/issues/413) [#415](https:/wizarrrr/wizarr/issues/415)
* **release:** 4.1.1-beta.3 ([a37aa0e](https:/wizarrrr/wizarr/commit/a37aa0e57618fa8607762a3b3022fade27c885fc))


### Code Refactoring

* 📦 Update Available toasts no longer appear for non-admins ([8f18d98](https:/wizarrrr/wizarr/commit/8f18d98a718d6a541919f3f81c77d314bab0e88f))

## [4.1.0](https:/wizarrrr/wizarr/compare/v4.0.0...v4.1.0) (2024-05-05)


Expand Down
Loading
Loading