Skip to content

Commit

Permalink
Merge pull request #286 from stevermeister/development
Browse files Browse the repository at this point in the history
release version 16.1.0
  • Loading branch information
pavankjadda authored Nov 6, 2023
2 parents d7fcd69 + 64fc9ce commit 7f7ef5f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
"package": "ng build ngx-cookie-service --prod && cp ./README.md ./dist/ngx-cookie-service && cd dist/ngx-cookie-service && npm pack"
},
"private": true,
"browserslist": [
"last 10 Chrome versions",
"last 10 ChromeAndroid versions",
"last 10 Firefox versions",
"last 10 Edge versions",
"last 3 Safari major versions",
"last 4 iOS versions"
],
"dependencies": {
"@angular/animations": "^16.2.1",
"@angular/common": "^16.2.1",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-cookie-service-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-cookie-service-ssr",
"description": "Angular SSR cookie service",
"version": "16.0.2",
"version": "16.1.0",
"license": "MIT",
"author": "Stepan Suvorov <stevermeister@gmail.com>",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class SsrCookieService {
* @since: 1.0.0
*/
static getCookieRegExp(name: string): RegExp {
const escapedName: string = name.replace(/([\[\]\{\}\(\)\|\=\;\+\?\,\.\*\^\$])/gi, '\\$1');
const escapedName: string = name.replace(/([\[\]{}()|=;+?,.*^$])/gi, '\\$1');

return new RegExp('(?:^' + escapedName + '|;\\s*' + escapedName + ')=(.*?)(?:;|$)', 'g');
}
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-cookie-service/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-cookie-service",
"description": "Angular cookie service",
"version": "16.0.2",
"version": "16.1.0",
"license": "MIT",
"author": "Stepan Suvorov <stevermeister@gmail.com>",
"keywords": [
Expand Down

0 comments on commit 7f7ef5f

Please sign in to comment.