Skip to content

Bump posthog-node from 5.28.9 to 5.28.11 - #5

Merged
NiveditJain merged 1 commit into
open-source-cleanupfrom
dependabot/bun/posthog-node-5.28.11
Apr 6, 2026
Merged

Bump posthog-node from 5.28.9 to 5.28.11#5
NiveditJain merged 1 commit into
open-source-cleanupfrom
dependabot/bun/posthog-node-5.28.11

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 6, 2026

Copy link
Copy Markdown
Contributor

Bumps posthog-node from 5.28.9 to 5.28.11.

Release notes

Sourced from posthog-node's releases.

posthog-node@5.28.11

5.28.11

Patch Changes

  • Updated dependencies [a01a3d5]:
    • @​posthog/core@​1.24.6

posthog-node@5.28.10

5.28.10

Patch Changes

  • #3309 197eeda Thanks @​marandaneto! - Extract CLI and sourcemap utilities from @​posthog/core into @​posthog/plugin-utils to remove cross-spawn from React Native dependencies (2026-04-01)
  • Updated dependencies [197eeda]:
    • @​posthog/core@​1.24.5
Changelog

Sourced from posthog-node's changelog.

5.28.11

Patch Changes

  • Updated dependencies [a01a3d5]:
    • @​posthog/core@​1.24.6

5.28.10

Patch Changes

  • #3309 197eeda Thanks @​marandaneto! - Extract CLI and sourcemap utilities from @​posthog/core into @​posthog/plugin-utils to remove cross-spawn from React Native dependencies (2026-04-01)
  • Updated dependencies [197eeda]:
    • @​posthog/core@​1.24.5
Commits
  • 8571c13 chore: update versions and lockfile [version bump]
  • 356fb33 chore: update versions and lockfile [version bump]
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [posthog-node](https://github.com/PostHog/posthog-js/tree/HEAD/packages/node) from 5.28.9 to 5.28.11.
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/commits/posthog-node@5.28.11/packages/node)

---
updated-dependencies:
- dependency-name: posthog-node
  dependency-version: 5.28.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 6, 2026
@coderabbitai

coderabbitai Bot commented Apr 6, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Free

Run ID: dc50fb5a-a192-44bb-bb4f-fa02ca469fac

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Comment @coderabbitai help to get the list of available commands and usage tips.

@NiveditJain
NiveditJain merged commit 63f5508 into open-source-cleanup Apr 6, 2026
1 check passed
@dependabot
dependabot Bot deleted the dependabot/bun/posthog-node-5.28.11 branch April 6, 2026 05:19
failproofversionmanager Bot pushed a commit that referenced this pull request Jul 17, 2026
Upstream: Document agenteye-evaluator in README and CONTRIBUTING (#5)

FailproofAI/skills@de31dec
SiddarthAA added a commit that referenced this pull request Aug 21, 2026
… env vars

Three pages told the reader the Cloud CLI cannot do what it does:

  docs/policies/deploy.mdx   "Cloud deployment endpoints are intentionally
                              not exposed as ordinary `fp` commands"
  docs/policies/editor.mdx   "The Cloud CLI does not publish policy versions"
  docs/start/first-policy.mdx "does not expose root-only enforcement
                              deployment routes"

Each then sent the reader to the dashboard. All three are false, and were
disproved by running the commands against a live stack: `fp policies publish`
minted a version, `fp fleet deploy` moved a machine to deployment #5, and
`fp fleet show/diff/history/rollback`, `fp policies list/show/enable/disable/
delete/test/compose` and `fp guardrails summary/timeline` all work.

The `docs/reference/cloud-cli.mdx` environment table was worse, because its
failure is silent. It named AGENTEYE_DASHBOARD_URL, AGENTEYE_ORG,
AGENTEYE_CLI_TOKEN, AGENTEYE_CLI_API_KEY, AGENTEYE_CLI_JSON, AGENTEYE_INSECURE,
AGENTEYE_HOME and AGENTEYE_ANALYTICS_DISABLED. The CLI declares FP_* in
fp_cli/app.py, and an unknown environment variable is not an error, so:

    AGENTEYE_DASHBOARD_URL=http://127.0.0.1:59999 fp policies list   -> exit 0
    FP_DASHBOARD_URL=http://127.0.0.1:59999       fp policies list   -> exit 3

Both verified live. That table is where somebody points the CLI at their own
deployment, so being quietly ignored and running against the saved dashboard
instead is the worst outcome available.

Every command now shown on these pages was executed before being written down.
A callout records that AGENTEYE_HOME and AGENTEYE_ENVIRONMENT do still exist,
but belong to the collector and the telemetry SDK rather than to this CLI.

The translated copies under docs/<lang>/ still carry the old text; they are out
of scope here, as elsewhere in this release.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant