Skip to content

Commit

Permalink
Update URL regex to allow for long TLDs (#149)
Browse files Browse the repository at this point in the history
* Update URL regex to allow for long tlds (#112)

* Bump version
  • Loading branch information
JackBailey authored Jun 3, 2024
1 parent 149e2ec commit 9c7463c
Show file tree
Hide file tree
Showing 7 changed files with 3,665 additions and 2,923 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.10.0] - 2024-05-28

- Allow for 63 character TLDs, as per DNS spec

## [1.9.2] - 2024-05-14

- Improve password regex to accept OWASP characters
Expand Down Expand Up @@ -200,3 +204,4 @@ First release, production ready
- Import/Export
- Add ShareX support


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.2
1.10.0
1 change: 0 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ services:
- BACKUP=true
- BACKUP_SCHEDULE=* * * * * # Use crontab.guru to create
- BACKUP_COUNT=5 # A count of 1 will make a backup file called backup.json
- URL_REGEX=https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*) # Don't use quotation marks

## DO NOT CHANGE THESE:
- DB_HOST=lynx-db
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ services:
- BACKUP=true
- BACKUP_SCHEDULE=* * * * * # Use crontab.guru to create
- BACKUP_COUNT=5 # A count of 1 will make a backup file called backup.json
- URL_REGEX=https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*) # Don't use quotation marks

## DO NOT CHANGE THESE:
- DB_HOST=db
Expand Down
Loading

0 comments on commit 9c7463c

Please sign in to comment.