Skip to content
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
7 changes: 7 additions & 0 deletions packages/console-sdk-microfrontend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @mia-platform/console-sdk-microfrontend

## 0.2.106

### Patch Changes

- Updated dependencies [21e6aaa]
- @mia-platform/console-types@0.40.0

## 0.2.105

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/console-sdk-microfrontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mia-platform/console-sdk-microfrontend",
"license": "Apache-2.0",
"version": "0.2.105",
"version": "0.2.106",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"module": "./build/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/console-sdk-vite-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @mia-platform/console-sdk-vite-helpers

## 0.0.146

### Patch Changes

- @mia-platform/console-sdk-microfrontend@0.2.106

## 0.0.145

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/console-sdk-vite-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mia-platform/console-sdk-vite-helpers",
"version": "0.0.145",
"version": "0.0.146",
"license": "Apache-2.0",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/console-sdk-webpack-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @mia-platform/console-sdk-webpack-helpers

## 0.0.146

### Patch Changes

- @mia-platform/console-sdk-microfrontend@0.2.106

## 0.0.145

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/console-sdk-webpack-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mia-platform/console-sdk-webpack-helpers",
"version": "0.0.145",
"version": "0.0.146",
"license": "Apache-2.0",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/console-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.40.0

### Minor Changes

- 21e6aaa: Add Bitbucket Cloud provider support

## 0.39.4

### Patch Changes
Expand Down
3 changes: 2 additions & 1 deletion packages/console-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "git+https://github.com/mia-platform/console-sdk.git",
"directory": "packages/console-types"
},
"version": "0.39.4",
"version": "0.40.0",
"description": "",
"main": "build/index.js",
"types": "build/index",
Expand All @@ -25,6 +25,7 @@
"license": "ISC",
"devDependencies": {
"@mia-platform/eslint-config-mia": "^3.0.0",
"@types/node": "^22.0.0",
"@types/ramda": "^0.30.0",
"@types/tap": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^7.13.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/console-types/src/constants/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ export const VISIBILITY_PROJECT_FIELDS = [

export const GITLAB_CI = 'gitlab-ci'
export const AZURE_PIPELINES = 'azure-pipelines'
export const BITBUCKET_PIPELINES = 'bitbucket-pipelines'

export const REPOSITORY_TYPES = {
BITBUCKET: 'bitbucket',
BITBUCKET_CLOUD: 'bitbucket-cloud',
GITHUB: 'github',
GITLAB: 'gitlab',
AZURE: 'azure-devops',
Expand All @@ -56,12 +58,14 @@ export const DEPLOYMENT_TYPES = {
GITLAB_CI,
GITHUB: 'github-actions',
AZURE_PIPELINES,
BITBUCKET_PIPELINES,
} as const

export const PIPELINE_FROM_TEMPLATE = [
DEPLOYMENT_TYPES.GITLAB_CI,
DEPLOYMENT_TYPES.AZURE_PIPELINES,
DEPLOYMENT_TYPES.GITHUB,
DEPLOYMENT_TYPES.BITBUCKET_PIPELINES,
]

export const MLP = 'mlp'
Expand Down Expand Up @@ -92,4 +96,5 @@ export enum ProjectPipelinesTypes {
GITLAB_CI = 'gitlab-ci',
AZURE_PIPELINES = 'azure-pipelines',
GITHUB = 'github-actions',
BITBUCKET_PIPELINES = 'bitbucket-pipelines',
}
7 changes: 6 additions & 1 deletion packages/console-types/src/types/project/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@ export const pipelines = {
providerId: { type: 'string' },
type: {
type: 'string',
enum: [DEPLOYMENT_TYPES.GITLAB_CI, DEPLOYMENT_TYPES.GITHUB, DEPLOYMENT_TYPES.WEBHOOK],
enum: [
DEPLOYMENT_TYPES.GITLAB_CI,
DEPLOYMENT_TYPES.GITHUB,
DEPLOYMENT_TYPES.BITBUCKET_PIPELINES,
DEPLOYMENT_TYPES.WEBHOOK,
],
},
statusWebhookSecretCredentialsId: { type: 'string' },
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const infrastructureComponent = {
enum: [
DEPLOYMENT_TYPES.GITLAB_CI,
DEPLOYMENT_TYPES.GITHUB,
DEPLOYMENT_TYPES.BITBUCKET_PIPELINES,
DEPLOYMENT_TYPES.AZURE_PIPELINES,
DEPLOYMENT_TYPES.JENKINS,
DEPLOYMENT_TYPES.WEBHOOK,
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading