Skip to main content

cli-kintone v1.13.0

Β· One min read

We are happy to announce the release of cli-kintone v1.13.0 πŸŽ‰

What's new?​

The --experimental-use-server-side-upsert option is now available with the record import command (Experimental)​

We have implemented the --experimental-use-server-side-upsert option, which executes the record import command using the upsert option of the bulk record update API

Previously, cli-kintone has been running with its own upsert mode, but by using --experimental-use-server-side-upsert, there is a possibility that the performance of the record import command will improve.

Specify as follows.

$ cli-kintone record import --base-url http://localhost --app xxx \
--api-token xxx \
--file-path import.csv \
--update-key レコードη•ͺ号 \
--experimental-use-server-side-upsert

We plan to enable this option by default once we have confirmed its stability.

Miscellaneous​

See the changelog for an exhaustive list of changes.

cli-kintone v1.12.3

Β· One min read

We are happy to announce the release of cli-kintone v1.12.3 πŸŽ‰

What's new?​

New command: plugin commands (Experimental)​

We implemented two new commands to operate kintone plugins.

warning

These commands are still under development.
Please see our Stability Index how we update experimental features.

cli-kintone plugin info​

plugin info is a command to see information of specified plugin.

cli-kintone plugin info --input ./dist/plugin.zip
# output:
# [2024-12-04T09:14:15.353Z] WARN: [Experimental] This feature is under early development
# id: jimcpjmdikgpjkdkkglpaokoakhmfiee
# name: hello-kintone
# version: 1
# description: hello-kintone
# homepage: (not set)

cli-kintone plugin pack​

plugin pack is an alternative command to plugin-packer.

cli-kintone plugin pack --input ./src --output ./dist --private-key ./private.ppk
# output:
# [2024-12-04T09:15:32.481Z] WARN: [Experimental] This feature is under early development
# [2024-12-04T09:15:32.511Z] WARN: Property "homepage_url.en" is missing.
# [2024-12-04T09:15:32.967Z] INFO: The plugin file generated: plugin.zip

This command supports experimental new plugin system.

For more details, see command documents.

Miscellaneous​

See the changelog for an exhaustive list of changes.

cli-kintone v1.12.0

Β· One min read

We are happy to announce the release of cli-kintone v1.12.0 πŸŽ‰

What's new?​

There are two notable updates.

cli-kintone is available on npmjs.com now!​

We started to publish cli-kintone to npmjs.com as @kintone/cli.

Run the npm install command to install:

npm i -g @kintone/cli

For more details, see the Installation page.

cli-kintone is mainly used for kintone automations by IT administrators, but also used in plugin/customization development and on CI/CD.

This update is to provide easier installation for developers in a Node.js installed environment.

Stability Index​

We defined Stability Index to indicate features stability.

See the Stability Index page for more details.

Miscellaneous​

See the changelog for an exhaustive list of changes.

The documentation website is launched πŸŽ‰

Β· One min read

Hi, there πŸ‘‹

We are happy to announce cli-kintone documentation website.

This website aims to provide cli-kintone users with common usage and reference. There are four sections:

  • User Guide: Comprehensive assistance from installation to common usage.
  • Reference: Detailed specifications.
  • Community: Link to forum and support, contribution guide
  • Blog: Official announcements, roadmaps, and more!

We will continually improve our documentation. Follow our official Twitter accounts for the latest news.

Lastly, we always welcome your contribution! Please see Contributing page to know how to contribute to cli-kintone.