diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0085508261..51f878342c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,8 +36,8 @@ danger: - export CI_MERGE_REQUEST_IID=${CI_OPEN_MERGE_REQUESTS#*!} - npx danger ci except: - refs: - - $CI_DEFAULT_BRANCH + variables: + - $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME allow_failure: true lint-js: @@ -115,8 +115,8 @@ docs-deploy: script: - curl -X POST -F"token=$CI_JOB_TOKEN" -F'ref=master' https://gitlab.com/api/v4/projects/15685485/trigger/pipeline only: - refs: - - $CI_DEFAULT_BRANCH + variables: + - $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME changes: - "docs/**/*" @@ -141,8 +141,8 @@ pages: paths: - public only: - refs: - - $CI_DEFAULT_BRANCH + variables: + - $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME docker: stage: deploy @@ -157,8 +157,8 @@ docker: - docker build -t $CI_REGISTRY_IMAGE . - docker push $CI_REGISTRY_IMAGE only: - refs: - - $CI_DEFAULT_BRANCH + variables: + - $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME include: - template: Jobs/Dependency-Scanning.gitlab-ci.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 4904047218..df489f6a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Compatibility: rudimentary support for Takahē. +- UI: added backdrop blur behind modals. ### Changed - Posts: letterbox images to 19:6 again. @@ -15,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Layout: use accent color for "floating action button" (mobile compose button). - ServiceWorker: don't serve favicon, robots.txt, and others from ServiceWorker. +- Datepicker: correctly default to the current year. +- Scheduled posts: fix page crashing on deleting a scheduled post. ## [3.0.0] - 2022-12-25 diff --git a/app/soapbox/components/modal-root.tsx b/app/soapbox/components/modal-root.tsx index a43d2d6383..37fc058b6c 100644 --- a/app/soapbox/components/modal-root.tsx +++ b/app/soapbox/components/modal-root.tsx @@ -241,7 +241,7 @@ const ModalRoot: React.FC = ({ children, onCancel, onClose, type })