Skip to content

Commit

Permalink
Merge branch 'main' into feat/remote-config-full-rollout
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Dec 16, 2024
2 parents a1f9bc4 + 1fc5f2c commit ffac568
Show file tree
Hide file tree
Showing 22 changed files with 389 additions and 1,642 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.201.0 - 2024-12-16

- fix: rotate session id proactively (#1512)

## 1.200.2 - 2024-12-16

- feat(web-analytics): Add flag to send server hash instead of distinct id (#1490)
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
For information on using this library in your app, [see PostHog Docs](https://posthog.com/docs/libraries/js).
This README is intended for developing the library itself.

## dependencies

we use pnpm.

it's best to install using `npm install -g pnpm@latest-8`
and then `pnpm` commands as usual

## Testing

Unit tests: run `pnpm test`.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posthog-js",
"version": "1.200.2",
"version": "1.201.0",
"description": "Posthog-js allows you to automatically capture usage and send events to PostHog.",
"repository": "https://github.com/PostHog/posthog-js",
"author": "[email protected]",
Expand Down Expand Up @@ -87,7 +87,7 @@
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-posthog-js": "link:eslint-rules",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"expect": "^29.7.0",
Expand All @@ -102,7 +102,7 @@
"node-fetch": "^2.6.11",
"posthog-js": "link:",
"preact-render-to-string": "^6.3.1",
"prettier": "^2.7.1",
"prettier": "^3.4.2",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-visualizer": "^5.12.0",
Expand Down
22 changes: 11 additions & 11 deletions playground/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.5.4",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"cookie": "^0.6.0",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"cookie": "^0.7.2",
"eslint": "^8.57.1",
"hls.js": "^1.5.15",
"next": "13.5.6",
"posthog-js": "1.194.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"next": "14.2.20",
"posthog-js": "1.200.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16"
}
}
Loading

0 comments on commit ffac568

Please sign in to comment.