Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.0.9 #8

Merged
merged 3 commits into from
Jul 25, 2024
Merged
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
2 changes: 1 addition & 1 deletion addon/components/modals/extension-details.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<div class="space-y-2">
<div>
<div class="text-sm font-semibold dark:text-gray-100">Version</div>
<div class="text-sm dark:text-gray-200">{{this.extension.version}}</div>
<div class="text-sm dark:text-gray-200">{{this.extension.current_bundle_version}}</div>
</div>
<div>
<div class="text-sm font-semibold dark:text-gray-100">Updated</div>
Expand Down
2 changes: 1 addition & 1 deletion addon/controllers/developers/payments/onboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { inject as service } from '@ember/service';
import { action } from '@ember/object';
import { task } from 'ember-concurrency';
import { loadConnectAndInitialize } from '@stripe/connect-js';
import config from '../config/environment';
import config from '../../../config/environment';

export default class DevelopersPaymentsOnboardController extends Controller {
@service fetch;
Expand Down
1 change: 1 addition & 0 deletions addon/models/registry-extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default class RegistryExtensionModel extends Model {
@attr('string') icon_uuid;
@attr('string') public_id;
@attr('string') current_bundle_public_id;
@attr('string') current_bundle_version;
@attr('string') next_bundle_public_id;
@attr('string') current_bundle_id;
@attr('string') next_bundle_id;
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/registry-bridge",
"version": "0.0.8",
"version": "0.0.9",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"keywords": [
"fleetbase-extension",
Expand All @@ -20,7 +20,7 @@
],
"require": {
"php": "^8.0",
"fleetbase/core-api": "^1.4.30",
"fleetbase/core-api": "^1.5.0",
"laravel/cashier": "^15.2.1",
"php-http/guzzle7-adapter": "^1.0",
"psr/http-factory-implementation": "*",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Registry Bridge",
"version": "0.0.8",
"version": "0.0.9",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"repository": "https://github.com/fleetbase/registry-bridge",
"license": "AGPL-3.0-or-later",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/registry-bridge-engine",
"version": "0.0.8",
"version": "0.0.9",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"fleetbase": {
"route": "extensions"
Expand Down Expand Up @@ -39,7 +39,7 @@
},
"dependencies": {
"@babel/core": "^7.23.2",
"@fleetbase/ember-core": "^0.2.13",
"@fleetbase/ember-core": "^0.2.14",
"@fleetbase/ember-ui": "^0.2.19",
"@fortawesome/ember-fontawesome": "^2.0.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
Expand Down
Loading
Loading