Skip to content

Commit

Permalink
version 0.8.7 with upgrade dependencies and update changelog
Browse files Browse the repository at this point in the history
rlindner81 committed Jul 23, 2024
1 parent 12bf069 commit 49635ea
Showing 7 changed files with 240 additions and 217 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

<!-- order is REMOVED, CHANGED, ADDED, FIXED -->

## v0.8.7 - 2024-07-23

### Added

- reg: new `--only-stale` and `--only-failed` filter options for most registry commands.
stale here means that the last changed on day is older than the invocation day.

### Fixed

- reg: `--registry-update-all` is more resilient for failing calls

- better error message for users with access restrictions due to new btp space supporter role

## v0.8.6 - 2024-06-03

### Fixed
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ You can also not install the tool and use it ad-hoc.
# ad-hoc
npx @cap-js-community/mtx-tool
# ad-hoc with fixed version, e.g. for stable pipelines
npx @cap-js-community/mtx-tool@v0.8.6
npx @cap-js-community/mtx-tool@v0.8.7
```

## Support, Feedback, Contributing
20 changes: 10 additions & 10 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7.7)
activesupport (6.1.7.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
base64 (0.2.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
colorator (1.1.0)
commonmarker (0.23.10)
concurrent-ruby (1.3.1)
dnsruby (1.72.1)
concurrent-ruby (1.3.3)
dnsruby (1.72.2)
simpleidn (~> 0.2.1)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
@@ -218,7 +218,7 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.23.1)
minitest (5.24.1)
nokogiri (1.13.10)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
@@ -227,14 +227,14 @@ GEM
sawyer (~> 0.9)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (5.0.5)
public_suffix (5.1.1)
racc (1.8.0)
rake (13.2.1)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.2.8)
strscan (>= 3.0.9)
rexml (3.3.2)
strscan
rouge (3.30.0)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
@@ -256,7 +256,7 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (1.8.0)
zeitwerk (2.6.15)
zeitwerk (2.6.16)

PLATFORMS
ruby
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ You can also not install the tool and use it ad-hoc.
# ad-hoc
npx @cap-js-community/mtx-tool
# ad-hoc with fixed version, e.g. for stable pipelines
npx @cap-js-community/mtx-tool@v0.8.6
npx @cap-js-community/mtx-tool@v0.8.7
```

## Content
416 changes: 213 additions & 203 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cap-js-community/mtx-tool",
"version": "0.8.6",
"version": "0.8.7",
"description": "Multitenancy and Extensibility Tool is a cli to reduce operational overhead for multitenant Cloud Foundry applications",
"bin": {
"mtx": "bin/mtx.js"
2 changes: 1 addition & 1 deletion src/submodules/hanaManagement.js
Original file line number Diff line number Diff line change
@@ -512,7 +512,7 @@ const hdiListServiceManager = async (context, filterTenantId, doTimestamps) => {
binding ? binding.credentials?.schema : "",
instance.ready,
];
doShowDbTenantColumn && row.splice(1, 0, binding ? binding.credentials?.tenantId ?? "" : "missing binding");
doShowDbTenantColumn && row.splice(1, 0, binding ? (binding.credentials?.tenantId ?? "") : "missing binding");
doTimestamps && row.push(...formatTimestampsWithRelativeDays([instance.created_at, instance.updated_at], nowDate));
return row;
};

0 comments on commit 49635ea

Please sign in to comment.