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

release v0.88.0 #1910

Merged
merged 4 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.88.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.87.0...v0.88.0)

- feat: enhance Telegram URL regex [`#1908`](https://github.com/isomerpages/isomercms-frontend/pull/1908)
- chore(deps): bump @grpc/grpc-js from 1.9.14 to 1.9.15 [`#1899`](https://github.com/isomerpages/isomercms-frontend/pull/1899)
- backport v0.87.0 [`#1902`](https://github.com/isomerpages/isomercms-frontend/pull/1902)

#### [v0.87.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.86.0...v0.87.0)

> 13 June 2024

- Add layout and functionality for 2d broken link checker [`#1891`](https://github.com/isomerpages/isomercms-frontend/pull/1891)
- fix/prevent logout in login routes [`#1889`](https://github.com/isomerpages/isomercms-frontend/pull/1889)
- chore: update snyk [`#1895`](https://github.com/isomerpages/isomercms-frontend/pull/1895)
- backport v0.86.0 [`#1893`](https://github.com/isomerpages/isomercms-frontend/pull/1893)
- chore: bump version to v0.87.0 [`35aeb3c`](https://github.com/isomerpages/isomercms-frontend/commit/35aeb3cfc46a30bf42fcc45dd7328466cb1eb767)

#### [v0.86.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.85.0...v0.86.0)

Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isomercms-frontend",
"version": "0.87.0",
"version": "0.88.0",
"private": true,
"engines": {
"node": ">=16.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/validators.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PERMALINK_REGEX = "^((/([a-zA-Z0-9]+-)*[a-zA-Z0-9]+)+)/?$"
export const URL_REGEX_PREFIX = "^(https://)?(www.)?("
export const URL_REGEX_SUFFIX = ".com/)([a-zA-Z0-9_-]+([/.])?)+$"
export const YOUTUBE_REGEX = ".com/(@)?)([a-zA-Z0-9_-]+([/.])?)+$"
export const TELEGRAM_REGEX = "telegram|t).me/([a-zA-Z0-9_-]+([/.])?)+$"
export const TELEGRAM_REGEX = "telegram|t).me/\\+?([a-zA-Z0-9_-]+([/.])?)+$"
export const TIKTOK_REGEX = ".com/@)([a-zA-Z0-9_-]+([/.])?)+$"
// Linkedin doesn't seem to restrict special characters
export const LINKEDIN_REGEX = ".com/).+$"
Expand Down
Loading