Skip to content

Commit

Permalink
Merge pull request #8 from fleetbase/dev-v0.0.9
Browse files Browse the repository at this point in the history
v0.0.9
  • Loading branch information
roncodes authored Jul 25, 2024
2 parents ba54873 + 94673db commit b35e0da
Show file tree
Hide file tree
Showing 8 changed files with 10,906 additions and 8,223 deletions.
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

0 comments on commit b35e0da

Please sign in to comment.