Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -67,4 +67,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
id: slack
uses: slackapi/slack-github-action@v3
with:
webhook-type: incoming-webhook
payload: |
{
"text": "New release ${{github.ref_name}} for ${{github.event.repository.name}}.",
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Release
on:
push:
branches: [ main, beta, prerelease ]
branches: [ main, beta, prerelease, oclif4 ]
pull_request:
branches: [ main ]
jobs:
Expand All @@ -12,16 +12,16 @@ jobs:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'pnpm'
Expand Down
3 changes: 2 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
{ "name": "main", "channel": "latest" },
"+([0-9])?(.{+([0-9]),x}).x",
{ "name": "beta", "prerelease": true },
{ "name": "prerelease", "prerelease": "rc" }
{ "name": "prerelease", "prerelease": "rc" },
{ "name": "oclif4", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
## [1.1.2](https://github.com/commercelayer/commercelayer-cli-plugin-links/compare/v1.1.1...v1.1.2) (2026-04-15)
# [2.0.0-oclif4.2](https://github.com/commercelayer/commercelayer-cli-plugin-links/compare/v2.0.0-oclif4.1...v2.0.0-oclif4.2) (2026-05-05)


### Bug Fixes

* run tests in updates workflow ([8083adf](https://github.com/commercelayer/commercelayer-cli-plugin-links/commit/8083adfd761d911be9deecb2762e4b7eb550bc60))
* update dependencies and add updates workflow ([de1ba34](https://github.com/commercelayer/commercelayer-cli-plugin-links/commit/de1ba3499cfdf4c60e6b8575f9a298d705667ddd))

# [2.0.0-oclif4.1](https://github.com/commercelayer/commercelayer-cli-plugin-links/compare/v1.1.1...v2.0.0-oclif4.1) (2026-03-26)


### Features

* upgrade to oclif core v4 ([ae66f8c](https://github.com/commercelayer/commercelayer-cli-plugin-links/commit/ae66f8c78596e127ca8d85e2533869ea280b4bf7))


### BREAKING CHANGES

* upgrade to oclif core v4

## [1.1.1](https://github.com/commercelayer/commercelayer-cli-plugin-links/compare/v1.1.0...v1.1.1) (2026-03-24)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ USAGE
[--sort <value>...] [-L] [-H]

ARGUMENTS
ID unique id of the link to get a single link
[ID] unique id of the link to get a single link

FLAGS
-A, --all show all links instead of first 25 only
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@commercelayer/cli-plugin-links",
"description": "Commerce Layer CLI links plugin",
"version": "1.1.2",
"version": "2.0.0-oclif4.2",
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-links",
"repository": "commercelayer/commercelayer-cli-plugin-links",
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-links/issues",
"engines": {
"node": ">=20"
"node": ">=22"
},
"files": [
"/bin/run.*",
Expand Down Expand Up @@ -54,10 +54,10 @@
"release": "pnpm upgrade && pnpm prepack && pnpm postpack && pnpm test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@commercelayer/cli-dev": "^3.1.1",
"@oclif/plugin-help": "^6.2.44",
"@oclif/test": "^3.2.15",
"@biomejs/biome": "^2.4.14",
"@commercelayer/cli-dev": "oclif4",
"@oclif/plugin-help": "^6.2.46",
"@oclif/test": "^4.1.18",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^5.2.3",
Expand All @@ -70,12 +70,12 @@
"oclif": "^4.23.0",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
"typescript": "^6.0.3"
},
"dependencies": {
"@commercelayer/cli-core": "^5.11.1",
"@commercelayer/sdk": "^6.56.0",
"@oclif/core": "^3.27.0",
"@commercelayer/cli-core": "oclif4",
"@commercelayer/sdk": "^6.57.0",
"@oclif/core": "^4.11.0",
"cli-table3": "^0.6.5",
"lodash.isempty": "^4.4.0",
"open": "^8.4.2",
Expand Down
Loading