Skip to content

Chore(deps-dev): bump @tailor-platform/sdk from 1.40.1 to 1.45.1#233

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/tailor-platform/sdk-1.45.1
Open

Chore(deps-dev): bump @tailor-platform/sdk from 1.40.1 to 1.45.1#233
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/tailor-platform/sdk-1.45.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 3, 2026

Bumps @tailor-platform/sdk from 1.40.1 to 1.45.1.

Release notes

Sourced from @​tailor-platform/sdk's releases.

@​tailor-platform/sdk@​1.45.1

Patch Changes

  • #1110 ba93ca3 Thanks @​toiroakr! - Drop the multiline-ts dependency in favour of an in-tree implementation. The upstream package ships a preinstall: npx only-allow pnpm hook that, when a fresh copy is resolved (e.g. npx create-tailor-sdk@latest), causes npm's exec lock to time out with ECOMPROMISED. Replacing the dependency removes that failure path. Also drops multiline-ts from the pnpm-workspace.yaml allowBuilds list emitted by create-tailor-sdk.

  • #1109 9965ba5 Thanks @​toiroakr! - Fix workflow job bundling to also transform workflow.trigger() and job.trigger() calls in .mts, .cts, .mjs, and .cjs files. Previously the rolldown transform plugin only matched .ts and .js, so trigger calls in non-default extensions were silently left as raw method calls and failed at runtime. The default-import resolver also strips trailing extensions so import wf from "./simple.mjs" resolves to the same workflow as import wf from "./simple".

@​tailor-platform/sdk@​1.45.0

Minor Changes

  • #1080 52823be Thanks @​toiroakr! - Add an idp option to IdP user triggers (idpUserCreatedTrigger, idpUserUpdatedTrigger, idpUserDeletedTrigger, idpUserTrigger) so executors can subscribe to a specific IdP namespace. Previously, projects with multiple IdPs failed apply because the SDK could not decide which IdP an executor targeted; specify idp: "my-idp" to disambiguate, or omit it when the project defines a single IdP. The auto-configuration of publishUserEvents now applies only to IdPs that are actually targeted, and publishUserEvents: false on a targeted IdP is rejected with a clear error instead of a warning. The new IdpName type is narrowed to defined IdP names via the generated tailor.d.ts for compile-time validation.

Patch Changes

  • #1094 a872d26 Thanks @​renovate! - fix(deps): update dependency ora to v9.4.0

  • #1092 0687372 Thanks @​toiroakr! - Restructure TailorDB migration documentation. The migration concepts, configuration, supported schema changes, automatic execution flow, and troubleshooting have moved from the CLI reference (docs/cli/tailordb.md) into a dedicated guide (docs/services/tailordb-migration.md). The CLI reference now keeps only the command tables and links to the guide. The guide also adds previously missing operational guidance: exact migration set semantics (label-only, not a DB rollback), team workflow and CI/CD coordination, failure recovery, machine user permissions, multi-namespace ordering, performance for large tables, local testing, rollback strategy, observability, and a beta notice. Minor wording corrections for the pre-migration phase and foreign key change classification.

@​tailor-platform/sdk@​1.44.2

Patch Changes

  • #1096 53dbbaf Thanks @​k1LoW! - Fix workflow bundle build failure caused by removing default exports from dependency files during cross-file workflow imports

@​tailor-platform/sdk@​1.44.1

Patch Changes

  • #1088 6dc5318 Thanks @​k1LoW! - Fix workflow bundle build failure caused by dead default imports after cross-file trigger transformation

  • #1085 0947e14 Thanks @​k1LoW! - Add concurrencyPolicy option to createWorkflow for limiting concurrent workflow executions

@​tailor-platform/sdk@​1.44.0

Minor Changes

  • #1064 683478e Thanks @​dqn! - tailor-sdk api discoverability improvements:

    • New tailor-sdk api list subcommand enumerates all invocable OperatorService methods. Streaming RPCs are excluded since the command only handles unary requests.
    • New tailor-sdk api inspect <endpoint> subcommand prints the input message tree of an endpoint without sending a request, including oneof membership, recursive type tagging, and map value schemas. Combine with the global --json flag for machine-readable output.
    • Shell completion now suggests OperatorService method names for the endpoint positional of tailor-sdk api and tailor-sdk api inspect.
  • #1039 852968d Thanks @​dqn! - Wire --order / --limit through the remaining list commands that were missed in the previous pass: workspace list, workspace user list, workspace app list, organization folder list, executor webhook list, and crash-report list. Existing behavior is preserved when the flags are omitted (server-default order, unlimited), so scripts already invoking these commands are unaffected. The programmatic helpers (listWorkspaces, listUsers, listApps, listFolders, listWebhookExecutors) accept a new optional order field with the same defaults.

Patch Changes

  • #1079 8ab2714 Thanks @​dqn! - Suppress the spurious Static website "<name>" not found for CORS configuration warning during apply planning on the first deployment. The warning previously fired whenever plan looked up a static website that the same apply run was about to create. Locally-defined static websites referenced via :url patterns in cors or OAuth2 redirectURIs are now treated as expected during planning; missing remote websites still warn when they are not part of the local configuration.

  • #1074 d272f26 Thanks @​renovate! - fix(deps): update dependency politty to v0.4.15

  • #1076 4d8c7a3 Thanks @​renovate! - fix(deps): update rolldown

  • #1082 15b791d Thanks @​renovate! - fix(deps): update dependency @​bufbuild/protobuf to v2.12.0

... (truncated)

Changelog

Sourced from @​tailor-platform/sdk's changelog.

1.45.1

Patch Changes

  • #1110 ba93ca3 Thanks @​toiroakr! - Drop the multiline-ts dependency in favour of an in-tree implementation. The upstream package ships a preinstall: npx only-allow pnpm hook that, when a fresh copy is resolved (e.g. npx create-tailor-sdk@latest), causes npm's exec lock to time out with ECOMPROMISED. Replacing the dependency removes that failure path. Also drops multiline-ts from the pnpm-workspace.yaml allowBuilds list emitted by create-tailor-sdk.

  • #1109 9965ba5 Thanks @​toiroakr! - Fix workflow job bundling to also transform workflow.trigger() and job.trigger() calls in .mts, .cts, .mjs, and .cjs files. Previously the rolldown transform plugin only matched .ts and .js, so trigger calls in non-default extensions were silently left as raw method calls and failed at runtime. The default-import resolver also strips trailing extensions so import wf from "./simple.mjs" resolves to the same workflow as import wf from "./simple".

1.45.0

Minor Changes

  • #1080 52823be Thanks @​toiroakr! - Add an idp option to IdP user triggers (idpUserCreatedTrigger, idpUserUpdatedTrigger, idpUserDeletedTrigger, idpUserTrigger) so executors can subscribe to a specific IdP namespace. Previously, projects with multiple IdPs failed apply because the SDK could not decide which IdP an executor targeted; specify idp: "my-idp" to disambiguate, or omit it when the project defines a single IdP. The auto-configuration of publishUserEvents now applies only to IdPs that are actually targeted, and publishUserEvents: false on a targeted IdP is rejected with a clear error instead of a warning. The new IdpName type is narrowed to defined IdP names via the generated tailor.d.ts for compile-time validation.

Patch Changes

  • #1094 a872d26 Thanks @​renovate! - fix(deps): update dependency ora to v9.4.0

  • #1092 0687372 Thanks @​toiroakr! - Restructure TailorDB migration documentation. The migration concepts, configuration, supported schema changes, automatic execution flow, and troubleshooting have moved from the CLI reference (docs/cli/tailordb.md) into a dedicated guide (docs/services/tailordb-migration.md). The CLI reference now keeps only the command tables and links to the guide. The guide also adds previously missing operational guidance: exact migration set semantics (label-only, not a DB rollback), team workflow and CI/CD coordination, failure recovery, machine user permissions, multi-namespace ordering, performance for large tables, local testing, rollback strategy, observability, and a beta notice. Minor wording corrections for the pre-migration phase and foreign key change classification.

1.44.2

Patch Changes

  • #1096 53dbbaf Thanks @​k1LoW! - Fix workflow bundle build failure caused by removing default exports from dependency files during cross-file workflow imports

1.44.1

Patch Changes

  • #1088 6dc5318 Thanks @​k1LoW! - Fix workflow bundle build failure caused by dead default imports after cross-file trigger transformation

  • #1085 0947e14 Thanks @​k1LoW! - Add concurrencyPolicy option to createWorkflow for limiting concurrent workflow executions

1.44.0

Minor Changes

  • #1064 683478e Thanks @​dqn! - tailor-sdk api discoverability improvements:

    • New tailor-sdk api list subcommand enumerates all invocable OperatorService methods. Streaming RPCs are excluded since the command only handles unary requests.
    • New tailor-sdk api inspect <endpoint> subcommand prints the input message tree of an endpoint without sending a request, including oneof membership, recursive type tagging, and map value schemas. Combine with the global --json flag for machine-readable output.
    • Shell completion now suggests OperatorService method names for the endpoint positional of tailor-sdk api and tailor-sdk api inspect.
  • #1039 852968d Thanks @​dqn! - Wire --order / --limit through the remaining list commands that were missed in the previous pass: workspace list, workspace user list, workspace app list, organization folder list, executor webhook list, and crash-report list. Existing behavior is preserved when the flags are omitted (server-default order, unlimited), so scripts already invoking these commands are unaffected. The programmatic helpers (listWorkspaces, listUsers, listApps, listFolders, listWebhookExecutors) accept a new optional order field with the same defaults.

Patch Changes

  • #1079 8ab2714 Thanks @​dqn! - Suppress the spurious Static website "<name>" not found for CORS configuration warning during apply planning on the first deployment. The warning previously fired whenever plan looked up a static website that the same apply run was about to create. Locally-defined static websites referenced via :url patterns in cors or OAuth2 redirectURIs are now treated as expected during planning; missing remote websites still warn when they are not part of the local configuration.

... (truncated)

Commits
  • f67130c Version Packages
  • f878210 Merge pull request #1109 from tailor-platform/fix/workflow-bundler-mts-cts
  • c6a39d5 Merge pull request #1110 from tailor-platform/fix/only-allow-pnpm
  • 3378d0a style: apply oxfmt format to trigger-transformer.ts
  • 7a897ec Merge pull request #1107 from tailor-platform/renovate/oxlint-tsgolint-0.x
  • 42f8076 Update packages/sdk/src/cli/services/workflow/trigger-transformer.ts
  • 33d6988 test(sdk): cover trailing-newline edge case for multiline
  • 1ba92a9 test(sdk): use backtick literals for multiline expect values
  • 1f0f24c refactor: switch to @/utils alias and keep multiline-ts in example
  • ba93ca3 fix(sdk): drop multiline-ts to unblock npx create-tailor-sdk
  • Additional commits viewable 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 [@tailor-platform/sdk](https://github.com/tailor-platform/sdk/tree/HEAD/packages/sdk) from 1.40.1 to 1.45.1.
- [Release notes](https://github.com/tailor-platform/sdk/releases)
- [Changelog](https://github.com/tailor-platform/sdk/blob/main/packages/sdk/CHANGELOG.md)
- [Commits](https://github.com/tailor-platform/sdk/commits/@tailor-platform/sdk@1.45.1/packages/sdk)

---
updated-dependencies:
- dependency-name: "@tailor-platform/sdk"
  dependency-version: 1.45.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented May 3, 2026

Open in StackBlitz

npm i https://pkg.pr.new/@tailor-platform/app-shell@233
npm i https://pkg.pr.new/@tailor-platform/app-shell-sdk-plugin@233
npm i https://pkg.pr.new/@tailor-platform/app-shell-vite-plugin@233

commit: ae3a6ed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants