From 1d75483a7adf92cdab6859fc7ddd306b8561ab53 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Sat, 19 Aug 2023 07:17:12 +0200 Subject: [PATCH 1/8] Implement AB testing --- locales/en.yml | 4 + locales/pl.yml | 4 + src/pages/app/p/[p]/bundle/[bundle].vue | 115 ++++++++++++++++---- src/pages/app/p/[p]/channel/[channel].vue | 90 ++++++++++++++- src/types/supabase.types.ts | 15 +++ supabase/functions/_utils/supabase.types.ts | 9 ++ supabase/functions/updates/index.ts | 34 +++++- supabase/migrations/20230815171919_base.sql | 3 + 8 files changed, 251 insertions(+), 23 deletions(-) diff --git a/locales/en.yml b/locales/en.yml index 4e51400ef7..19b79da11e 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -90,6 +90,8 @@ cannot-test-app-some: Cannot test app something wrong happened change: Change changed-password-suc: Password changed successfully channel: Channel +channel-ab-testing: Enable AB testing +channel-ab-testing-percentage: Percentage of users recving secondary version channel-create: Create channel channel-deleted: Channel deleted channel-invit: Type email to invite @@ -130,6 +132,7 @@ device: Device device-id: Device ID devices: Devices devices-using-this-b: Devices using this bundle +disable-ab-testing: Disabled AB testing disable-auto-downgra: Disable auto downgrade under native disable-auto-upgrade: Disable auto upgrade above major discord: Discord @@ -140,6 +143,7 @@ dont-have-an-account: Don’t have an account? download: Download email: Email email-address: Email address +enabled-ab-testing: Enabled AB testing encrypted: Encrypted bundles enter-your-email-add: Enter your email address and we'll send you a link to reset your password. enter-your-new-passw: Enter your new password and confirm diff --git a/locales/pl.yml b/locales/pl.yml index 5b84e1f261..ef437ce032 100644 --- a/locales/pl.yml +++ b/locales/pl.yml @@ -5,6 +5,10 @@ Filters: Filtry Override: Nadpisanie Storage: Składowanie account: Konto +channel-ab-testing: Włącz testowanie AB +channel-ab-testing-percentage: Procent użytkowników którzy otrzymają drugą wersję +disable-ab-testing: Wyłączono testy AB +enabled-ab-testing: Włączono testy AB account-error: Błąd podczas aktualizowania konta account-password-error: Wystąpił błąd, spróbuj ponownie account-password-heading: Zmień moje hasło diff --git a/src/pages/app/p/[p]/bundle/[bundle].vue b/src/pages/app/p/[p]/bundle/[bundle].vue index 19af469b17..2974c488c3 100644 --- a/src/pages/app/p/[p]/bundle/[bundle].vue +++ b/src/pages/app/p/[p]/bundle/[bundle].vue @@ -30,6 +30,7 @@ const version = ref() const channels = ref<(Database['public']['Tables']['channels']['Row'])[]>([]) const channel = ref<(Database['public']['Tables']['channels']['Row'])>() const version_meta = ref() +const secondaryChannel = ref(false) async function copyToast(text: string) { copy(text) @@ -62,8 +63,10 @@ async function getChannels() { // search if the bundle is used in a channel channels.value.forEach((chan) => { const v: number = chan.version as any - if (version.value && v === version.value.id) + if (version.value && (v === version.value.id || version.value.id === chan.secondVersion)) { channel.value = chan + secondaryChannel.value = (version.value.id === chan.secondVersion) + } }) } @@ -103,28 +106,97 @@ async function setChannel(channel: Database['public']['Tables']['channels']['Row .eq('id', channel.id) } +async function setSecondChannel(channel: Database['public']['Tables']['channels']['Row'], id: number) { + return supabase + .from('channels') + .update({ + secondVersion: id, + }) + .eq('id', channel.id) +} + async function ASChannelChooser() { if (!version.value) return const buttons = [] + + // This makes sure that A and B cannot be selected on the same time + const commonAbHandler = async (chan: Database['public']['Tables']['channels']['Row'] | undefined, ab: 'a' | 'b') => { + if (!chan) + return + + const aSelected = version?.value?.id === (chan.version as any) + const bSelected = version?.value?.id === (chan.secondVersion as any) + + if (aSelected && ab === 'b') { + const id = await getUnknowBundleId() + if (!id) + return + + setChannel(chan, id) + } + else if (bSelected && ab === 'a') { + const id = await getUnknowBundleId() + if (!id) + return + + setSecondChannel(chan, id) + } + } + + const normalHandler = async (chan: Database['public']['Tables']['channels']['Row']) => { + if (!version.value) + return + try { + await setChannel(chan, version.value.id) + await getChannels() + } + catch (error) { + console.error(error) + toast.error(t('cannot-test-app-some')) + } + } + + const secondHandler = async (chan: Database['public']['Tables']['channels']['Row']) => { + if (!version.value) + return + try { + await setSecondChannel(chan, version.value.id) + await getChannels() + } + catch (error) { + console.error(error) + toast.error(t('cannot-test-app-some')) + } + } + for (const chan of channels.value) { const v: number = chan.version as any - buttons.push({ - text: chan.name, - selected: version.value.id === v, - handler: async () => { - if (!version.value) - return - try { - await setChannel(chan, version.value.id) - await getChannels() - } - catch (error) { - console.error(error) - toast.error(t('cannot-test-app-some')) - } - }, - }) + if (!chan.enableAbTesting) { + buttons.push({ + text: chan.name, + selected: version.value.id === v, + handler: async () => { await normalHandler(chan) }, + }) + } + else { + buttons.push({ + text: `${chan.name}-A`, + selected: version.value.id === v, + handler: async () => { + await commonAbHandler(channel.value, 'a') + await normalHandler(chan) + }, + }) + buttons.push({ + text: `${chan.name}-B`, + selected: version.value.id === chan.secondVersion, + handler: async () => { + await commonAbHandler(channel.value, 'b') + await secondHandler(chan) + }, + }) + } } buttons.push({ text: t('button-cancel'), @@ -181,7 +253,11 @@ async function openChannel() { const id = await getUnknowBundleId() if (!id) return - await setChannel(channel.value, id) + if (!secondaryChannel.value) + await setChannel(channel.value, id) + else + await setSecondChannel(channel.value, id) + await getChannels() } catch (error) { @@ -319,7 +395,8 @@ function hideString(str: string) { - + + diff --git a/src/pages/app/p/[p]/channel/[channel].vue b/src/pages/app/p/[p]/channel/[channel].vue index 740609a878..76de46b8fd 100644 --- a/src/pages/app/p/[p]/channel/[channel].vue +++ b/src/pages/app/p/[p]/channel/[channel].vue @@ -4,9 +4,11 @@ import { useI18n } from 'vue-i18n' import { useRoute, useRouter } from 'vue-router' import { kList, kListItem, + kRange, kToggle, } from 'konsta/vue' import { toast } from 'vue-sonner' +import debounce from 'lodash.debounce' import { useSupabase } from '~/services/supabase' import { formatDate } from '~/services/date' import { useMainStore } from '~/stores/main' @@ -21,6 +23,7 @@ import { urlToAppId } from '~/services/conversion' interface Channel { version: Database['public']['Tables']['app_versions']['Row'] + secondVersion: Database['public']['Tables']['app_versions']['Row'] } const router = useRouter() const displayStore = useDisplayStore() @@ -34,6 +37,7 @@ const loading = ref(true) const deviceIds = ref([]) const channel = ref() const ActiveTab = ref('info') +const secondaryVersionPercentage = ref(50) const tabs: Tab[] = [ { @@ -60,10 +64,21 @@ const tabs: Tab[] = [ function openBundle() { if (!channel.value) return + if (channel.value.version.name === 'unknown') + return console.log('openBundle', channel.value.version.id) router.push(`/app/p/${route.params.p}/bundle/${channel.value.version.id}`) } +function openSecondBundle() { + if (!channel.value) + return + if (channel.value.secondVersion.name === 'unknown') + return + console.log('openBundle', channel.value.version.id) + router.push(`/app/p/${route.params.p}/bundle/${channel.value.secondVersion.id}`) +} + async function getDeviceIds() { if (!channel.value) return @@ -108,7 +123,13 @@ async function getChannel() { disableAutoUpdateToMajor, ios, android, - updated_at + updated_at, + enableAbTesting, + secondaryVersionPercentage, + secondVersion ( + name, + id + ) `) .eq('id', id.value) .single() @@ -116,7 +137,11 @@ async function getChannel() { console.error('no channel', error) return } - channel.value = data as Database['public']['Tables']['channels']['Row'] & Channel + + channel.value = data as unknown as Database['public']['Tables']['channels']['Row'] & Channel + + // Conversion of type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' to type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; } & Channel' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. + // Type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' is missing the following properties from type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; }': app_id, beta, created_byts(2352) } catch (error) { console.error(error) @@ -244,6 +269,40 @@ async function openPannel() { } displayStore.showActionSheet = true } + +async function enableAbTesting() { + if (!channel.value) + return + + const val = !channel.value.enableAbTesting + + const { error } = await supabase + .from('channels') + .update({ enableAbTesting: val }) + .eq('id', id.value) + + if (error) { + console.error(error) + } + else { + channel.value.enableAbTesting = val + toast.success(val ? t('enabled-ab-testing') : t('disable-ab-testing')) + } +} + +async function setSecondaryVersionPercentage(percentage: number) { + secondaryVersionPercentage.value = percentage + + debounce(async () => { + const { error } = await supabase + .from('channels') + .update({ secondaryVersionPercentage: percentage / 100 }) + .eq('id', id.value) + + if (error) + console.error(error) + }, 500) +} + + + + + + diff --git a/src/types/supabase.types.ts b/src/types/supabase.types.ts index cdf463d468..069467d864 100644 --- a/src/types/supabase.types.ts +++ b/src/types/supabase.types.ts @@ -416,10 +416,13 @@ export interface Database { created_by: string disableAutoUpdateToMajor: boolean disableAutoUpdateUnderNative: boolean + enableAbTesting: boolean id: number ios: boolean name: string public: boolean + secondaryVersionPercentage: number + secondVersion: number | null updated_at: string version: number } @@ -434,10 +437,13 @@ export interface Database { created_by: string disableAutoUpdateToMajor?: boolean disableAutoUpdateUnderNative?: boolean + enableAbTesting?: boolean id?: number ios?: boolean name: string public?: boolean + secondaryVersionPercentage?: number + secondVersion?: number | null updated_at?: string version: number } @@ -452,10 +458,13 @@ export interface Database { created_by?: string disableAutoUpdateToMajor?: boolean disableAutoUpdateUnderNative?: boolean + enableAbTesting?: boolean id?: number ios?: boolean name?: string public?: boolean + secondaryVersionPercentage?: number + secondVersion?: number | null updated_at?: string version?: number } @@ -472,6 +481,12 @@ export interface Database { referencedRelation: "users" referencedColumns: ["id"] }, + { + foreignKeyName: "channels_secondVersion_fkey" + columns: ["secondVersion"] + referencedRelation: "app_versions" + referencedColumns: ["id"] + }, { foreignKeyName: "channels_version_fkey" columns: ["version"] diff --git a/supabase/functions/_utils/supabase.types.ts b/supabase/functions/_utils/supabase.types.ts index de832bba8c..fd3a659773 100644 --- a/supabase/functions/_utils/supabase.types.ts +++ b/supabase/functions/_utils/supabase.types.ts @@ -413,10 +413,13 @@ export interface Database { created_by: string disableAutoUpdateToMajor: boolean disableAutoUpdateUnderNative: boolean + enableAbTesting: boolean id: number ios: boolean name: string public: boolean + secondaryVersionPercentage: number + secondVersion: number | null updated_at: string version: number } @@ -431,10 +434,13 @@ export interface Database { created_by: string disableAutoUpdateToMajor?: boolean disableAutoUpdateUnderNative?: boolean + enableAbTesting?: boolean id?: number ios?: boolean name: string public?: boolean + secondaryVersionPercentage?: number + secondVersion?: number | null updated_at?: string version: number } @@ -449,10 +455,13 @@ export interface Database { created_by?: string disableAutoUpdateToMajor?: boolean disableAutoUpdateUnderNative?: boolean + enableAbTesting?: boolean id?: number ios?: boolean name?: string public?: boolean + secondaryVersionPercentage?: number + secondVersion?: number | null updated_at?: string version?: number } diff --git a/supabase/functions/updates/index.ts b/supabase/functions/updates/index.ts index e5343ebc5f..c00e287dac 100644 --- a/supabase/functions/updates/index.ts +++ b/supabase/functions/updates/index.ts @@ -174,6 +174,18 @@ async function main(url: URL, headers: BaseHeaders, method: string, body: AppInf disableAutoUpdateToMajor, ios, android, + secondVersion ( + id, + name, + checksum, + session_key, + user_id, + bucket_id, + storage_provider, + external_url + ), + secondaryVersionPercentage, + enableAbTesting, version ( id, name, @@ -253,7 +265,9 @@ async function main(url: URL, headers: BaseHeaders, method: string, body: AppInf error: 'no_channel', }, 200) } - const version: Database['public']['Tables']['app_versions']['Row'] = devicesOverride?.version || (channelOverride?.channel_id as any)?.version || channelData?.version + let enableAbTesting: boolean = devicesOverride?.version || (channelOverride?.channel_id as any)?.enableAbTesting || channelData?.enableAbTesting + let version: Database['public']['Tables']['app_versions']['Row'] = devicesOverride?.version || (channelOverride?.channel_id as any)?.version || channelData?.version + const secondVersion: Database['public']['Tables']['app_versions']['Row'] | undefined = (devicesOverride?.version || undefined || (channelData?.enableAbTesting ? channelData?.secondVersion : undefined)) as any as Database['public']['Tables']['app_versions']['Row'] | undefined const planValid = await isAllowedAction(appOwner.user_id) await checkPlan(appOwner.user_id) @@ -264,6 +278,24 @@ async function main(url: URL, headers: BaseHeaders, method: string, body: AppInf const ip = xForwardedFor.split(',')[1] console.log('IP', ip) + if (enableAbTesting) { + console.log(secondVersion) + if (secondVersion && secondVersion?.name !== 'unknown') { + // eslint-disable-next-line max-statements-per-line + if (secondVersion.name === version_name || version.name === 'unknown') { version = secondVersion } + else if (version.name !== version_name) { + const secondVersionPercentage: number = (devicesOverride?.version || (channelOverride?.channel_id as any)?.secondaryVersionPercentage || channelData?.secondaryVersionPercentage) ?? 0 + const randomChange = Math.random() + + if (randomChange < secondVersionPercentage) + version = secondVersion + } + } + else { + enableAbTesting = false + } + } + // TODO: find better solution to check if device is from apple or google, currently not qworking in netlify-egde // check if version is created_at more than 4 hours // const isOlderEnought = (new Date(version.created_at || Date.now()).getTime() + 4 * 60 * 60 * 1000) < Date.now() diff --git a/supabase/migrations/20230815171919_base.sql b/supabase/migrations/20230815171919_base.sql index e4e2a87a94..eb6e920858 100644 --- a/supabase/migrations/20230815171919_base.sql +++ b/supabase/migrations/20230815171919_base.sql @@ -1078,6 +1078,9 @@ CREATE TABLE "public"."channels" ( "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "public" boolean DEFAULT false NOT NULL, "disableAutoUpdateUnderNative" boolean DEFAULT true NOT NULL, + "enableAbTesting" boolean not null default false, + "secondaryVersionPercentage" double precision not null default '0'::double precision, + "secondVersion" bigint not null default '1883'::bigint, "disableAutoUpdateToMajor" boolean DEFAULT true NOT NULL, "beta" boolean DEFAULT false NOT NULL, "ios" boolean DEFAULT true NOT NULL, From 76715bd09f0e32fefc0c321a128f1960ea53e2fd Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Sat, 19 Aug 2023 12:23:22 +0200 Subject: [PATCH 2/8] Fix debounce --- src/pages/app/p/[p]/bundle/[bundle].vue | 2 +- src/pages/app/p/[p]/channel/[channel].vue | 22 ++++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/pages/app/p/[p]/bundle/[bundle].vue b/src/pages/app/p/[p]/bundle/[bundle].vue index 2974c488c3..57b8c8b38c 100644 --- a/src/pages/app/p/[p]/bundle/[bundle].vue +++ b/src/pages/app/p/[p]/bundle/[bundle].vue @@ -395,7 +395,7 @@ function hideString(str: string) { - + diff --git a/src/pages/app/p/[p]/channel/[channel].vue b/src/pages/app/p/[p]/channel/[channel].vue index 76de46b8fd..7d2f43df86 100644 --- a/src/pages/app/p/[p]/channel/[channel].vue +++ b/src/pages/app/p/[p]/channel/[channel].vue @@ -139,6 +139,7 @@ async function getChannel() { } channel.value = data as unknown as Database['public']['Tables']['channels']['Row'] & Channel + secondaryVersionPercentage.value = data.secondaryVersionPercentage * 100 // Conversion of type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' to type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; } & Channel' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. // Type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' is missing the following properties from type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; }': app_id, beta, created_byts(2352) @@ -290,18 +291,19 @@ async function enableAbTesting() { } } -async function setSecondaryVersionPercentage(percentage: number) { - secondaryVersionPercentage.value = percentage +const debouncedSetSecondaryVersionPercentage = debounce (async (percentage: number) => { + const { error } = await supabase + .from('channels') + .update({ secondaryVersionPercentage: percentage / 100 }) + .eq('id', id.value) - debounce(async () => { - const { error } = await supabase - .from('channels') - .update({ secondaryVersionPercentage: percentage / 100 }) - .eq('id', id.value) + if (error) + console.error(error) +}, 500, { leading: true, trailing: true, maxWait: 500 }) - if (error) - console.error(error) - }, 500) +async function setSecondaryVersionPercentage(percentage: number) { + secondaryVersionPercentage.value = percentage + await debouncedSetSecondaryVersionPercentage(percentage) } From 049e2228ac6e51ba12f6bc91a87a97ee49b31fd4 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny <50914789+WcaleNieWolny@users.noreply.github.com> Date: Sat, 19 Aug 2023 20:27:45 +0200 Subject: [PATCH 3/8] Merge branch main (#1) * fix: plunk leaked key * chore(release): 10.58.0 [skip netlify] * fix: test CI * chore(release): 10.59.0 [skip netlify] * fix: remove useless code * chore(release): 10.60.0 [skip netlify] --------- Co-authored-by: Martin Donadieu Co-authored-by: github-actions[bot] --- CHANGELOG.md | 204 ++++++++++++++++++++++++++ android/app/build.gradle | 4 +- ios/App/App.xcodeproj/project.pbxproj | 8 +- package.json | 2 +- supabase/functions/_utils/plunk.ts | 3 +- supabase/functions/stats/index.ts | 3 +- 6 files changed, 214 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d5294ea5b..70e2f2f8c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,210 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [10.60.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.60.0) (2023-08-19) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.59.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.59.0) (2023-08-19) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.58.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.58.0) (2023-08-19) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + ## [10.57.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.57.0) (2023-08-17) diff --git a/android/app/build.gradle b/android/app/build.gradle index 44f8d73b0f..1f64bdb54c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -12,8 +12,8 @@ android { applicationId "ee.forgr.capacitor_go" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 105700999 - versionName "10.57.0" + versionCode 106000999 + versionName "10.60.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 477e6147d3..16f6544c4d 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -351,7 +351,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 105700999; + CURRENT_PROJECT_VERSION = 106000999; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = UVTJ336J2D; INFOPLIST_FILE = App/Info.plist; @@ -359,7 +359,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 10.57.0; + MARKETING_VERSION = 10.60.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = ee.forgr.capacitorgo; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -380,7 +380,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 105700999; + CURRENT_PROJECT_VERSION = 106000999; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = UVTJ336J2D; INFOPLIST_FILE = App/Info.plist; @@ -388,7 +388,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 10.57.0; + MARKETING_VERSION = 10.60.0; PRODUCT_BUNDLE_IDENTIFIER = ee.forgr.capacitorgo; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/package.json b/package.json index ae07ff15c5..9b2ab1474c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capgo-app", - "version": "10.57.0", + "version": "10.60.0", "private": true, "scripts": { "build": "vite build", diff --git a/supabase/functions/_utils/plunk.ts b/supabase/functions/_utils/plunk.ts index 90aed342c9..aa05a594bd 100644 --- a/supabase/functions/_utils/plunk.ts +++ b/supabase/functions/_utils/plunk.ts @@ -1,5 +1,6 @@ import axios from 'https://deno.land/x/axiod@0.26.2/mod.ts' import { shallowCleanObject } from './utils.ts' +import { getEnv } from './utils.ts' export interface Segments { capgo: boolean @@ -30,7 +31,7 @@ export interface Person { // https://api.useplunk.com/v1 function getAuth() { // get plunk token - const PLUNK_API_KEY = 'sk_d5a623505cd289440332329cbdb7725531b693e449f01697' + const PLUNK_API_KEY = getEnv('PLUNK_API_KEY') return `Bearer ${PLUNK_API_KEY}` } const baseUrl = () => 'https://api.useplunk.com' diff --git a/supabase/functions/stats/index.ts b/supabase/functions/stats/index.ts index ab68473087..0a0759e0b3 100644 --- a/supabase/functions/stats/index.ts +++ b/supabase/functions/stats/index.ts @@ -24,7 +24,6 @@ async function main(url: URL, headers: BaseHeaders, method: string, body: AppSta platform, app_id, version_os, - version, device_id, action, plugin_version = '2.3.3', @@ -85,7 +84,7 @@ async function main(url: URL, headers: BaseHeaders, method: string, body: AppSta action, app_id, version_build, - version: version || 0, + version: 0, } const all = [] const { data: appVersion } = await supabaseAdmin() From 7e36d8c8eba6985725b0b9948537b890b6ff50b5 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Sun, 20 Aug 2023 05:48:09 +0200 Subject: [PATCH 4/8] Rounding error fix --- src/pages/app/p/[p]/channel/[channel].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/app/p/[p]/channel/[channel].vue b/src/pages/app/p/[p]/channel/[channel].vue index 7d2f43df86..15e3a30f6d 100644 --- a/src/pages/app/p/[p]/channel/[channel].vue +++ b/src/pages/app/p/[p]/channel/[channel].vue @@ -139,7 +139,7 @@ async function getChannel() { } channel.value = data as unknown as Database['public']['Tables']['channels']['Row'] & Channel - secondaryVersionPercentage.value = data.secondaryVersionPercentage * 100 + secondaryVersionPercentage.value = (data.secondaryVersionPercentage * 100) | 0 // Conversion of type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' to type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; } & Channel' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. // Type '{ id: number; name: string; public: boolean; version: { id: unknown; name: unknown; app_id: unknown; bucket_id: unknown; created_at: unknown; }[]; created_at: string; allow_emulator: boolean; allow_dev: boolean; allow_device_self_set: boolean; ... 7 more ...; secondVersion: number | null; }' is missing the following properties from type '{ allow_dev: boolean; allow_device_self_set: boolean; allow_emulator: boolean; android: boolean; app_id: string; beta: boolean; created_at: string; created_by: string; disableAutoUpdateToMajor: boolean; ... 9 more ...; version: number; }': app_id, beta, created_byts(2352) From cb50b64d635cf3a81be39b2fe950dee2485abaf1 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Tue, 22 Aug 2023 20:27:11 +0200 Subject: [PATCH 5/8] Revert wierd changes --- CHANGELOG.md | 212 ++++++++++++++++++++++++++ android/app/build.gradle | 6 +- ios/App/App.xcodeproj/project.pbxproj | 8 +- 3 files changed, 219 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e2f2f8c1..088f07c263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,218 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [10.63.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.63.0) (2023-08-22) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.62.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.62.0) (2023-08-21) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.61.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.61.0) (2023-08-21) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + ## [10.60.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.60.0) (2023-08-19) diff --git a/android/app/build.gradle b/android/app/build.gradle index 1f64bdb54c..7f29e8cc7d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -12,8 +12,8 @@ android { applicationId "ee.forgr.capacitor_go" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 106000999 - versionName "10.60.0" + versionCode 106200999 + versionName "10.62.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. @@ -58,4 +58,4 @@ try { } } catch(Exception e) { logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work") -} +} \ No newline at end of file diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 16f6544c4d..efd5042c95 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -351,7 +351,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 106000999; + CURRENT_PROJECT_VERSION = 106300999; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = UVTJ336J2D; INFOPLIST_FILE = App/Info.plist; @@ -359,7 +359,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 10.60.0; + MARKETING_VERSION = 10.63.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = ee.forgr.capacitorgo; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -380,7 +380,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 106000999; + CURRENT_PROJECT_VERSION = 106300999; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = UVTJ336J2D; INFOPLIST_FILE = App/Info.plist; @@ -388,7 +388,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 10.60.0; + MARKETING_VERSION = 10.63.0; PRODUCT_BUNDLE_IDENTIFIER = ee.forgr.capacitorgo; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; From ef8a28f476b47847d4802d32045b1e7a79d1bc4d Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Tue, 22 Aug 2023 20:30:21 +0200 Subject: [PATCH 6/8] Revert changelog --- CHANGELOG.md | 212 --------------------------------------------------- 1 file changed, 212 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 088f07c263..70e2f2f8c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,218 +2,6 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -## [10.63.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.63.0) (2023-08-22) - - -### Features - -* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) -* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) -* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) -* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) -* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) -* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) -* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) -* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) -* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) -* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) -* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) -* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) -* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) -* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) -* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) -* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) - - -### Bug Fixes - -* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) -* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) -* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) -* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) -* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) -* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) -* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) -* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) -* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) -* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) -* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) -* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) -* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) -* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) -* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) -* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) -* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) -* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) -* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) -* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) -* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) -* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) -* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) -* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) -* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) -* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) -* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) -* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) -* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) -* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) -* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) -* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) -* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) -* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) -* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) -* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) -* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) -* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) -* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) -* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) -* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) -* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) -* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) -* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) -* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) - -## [10.62.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.62.0) (2023-08-21) - - -### Features - -* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) -* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) -* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) -* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) -* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) -* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) -* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) -* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) -* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) -* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) -* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) -* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) -* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) -* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) -* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) -* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) - - -### Bug Fixes - -* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) -* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) -* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) -* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) -* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) -* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) -* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) -* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) -* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) -* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) -* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) -* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) -* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) -* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) -* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) -* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) -* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) -* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) -* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) -* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) -* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) -* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) -* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) -* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) -* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) -* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) -* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) -* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) -* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) -* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) -* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) -* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) -* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) -* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) -* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) -* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) -* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) -* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) -* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) -* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) -* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) -* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) -* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) -* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) -* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) - -## [10.61.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.61.0) (2023-08-21) - - -### Features - -* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) -* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) -* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) -* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) -* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) -* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) -* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) -* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) -* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) -* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) -* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) -* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) -* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) -* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) -* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) -* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) - - -### Bug Fixes - -* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) -* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) -* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) -* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) -* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) -* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) -* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) -* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) -* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) -* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) -* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) -* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) -* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) -* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) -* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) -* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) -* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) -* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) -* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) -* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) -* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) -* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) -* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) -* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) -* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) -* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) -* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) -* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) -* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) -* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) -* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) -* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) -* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) -* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) -* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) -* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) -* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) -* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) -* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) -* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) -* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) -* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) -* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) -* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) - ## [10.60.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.60.0) (2023-08-19) From 548df0e47734568eb8ea21686d3d0a4cb295fa22 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Tue, 22 Aug 2023 20:33:33 +0200 Subject: [PATCH 7/8] Revert changelog 2 --- CHANGELOG.md | 212 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e2f2f8c1..088f07c263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,218 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [10.63.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.63.0) (2023-08-22) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.62.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.62.0) (2023-08-21) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use only is_not_deleted ([8798b0f](https://github.com/Cap-go/capgo/commit/8798b0fdaaee119c7f600f4fc44c58a093320213)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + +## [10.61.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.61.0) (2023-08-21) + + +### Features + +* add base policy ([a6912d6](https://github.com/Cap-go/capgo/commit/a6912d66ff2222c71d4e6d665566b1ad46c817b9)) +* add bigquery ([54db743](https://github.com/Cap-go/capgo/commit/54db743f0eeb70e21d38560aae1119adc799b3cc)) +* add capacitor-secure-storage-plugin ([657c120](https://github.com/Cap-go/capgo/commit/657c120318ccf867294ef950637347ed72805c8c)) +* add event to plunk as well ([10f9f4c](https://github.com/Cap-go/capgo/commit/10f9f4cfdb2cc11b4e97ba8312e170b635817a1b)) +* add function to check rights check_min_rights ([100a03a](https://github.com/Cap-go/capgo/commit/100a03acaf632cede71425384b0886f116037068)) +* add on_user_delete ([661dbc6](https://github.com/Cap-go/capgo/commit/661dbc6c4f7a3eb3d47f56d6bfb046cb1e549ce2)) +* add plunk integration for events ([284a63b](https://github.com/Cap-go/capgo/commit/284a63b641c92a26ce61ba0748bd379dfa3e562e)) +* add script to add all user to plunk ([2b87a67](https://github.com/Cap-go/capgo/commit/2b87a67753a2bf67d51ec1202bd14a1d06c79727)) +* add stripe FWD ([123b675](https://github.com/Cap-go/capgo/commit/123b675c8e194de2286b262c4b55f3488a5d70fb)) +* Allow users to change email ([2c7d1bc](https://github.com/Cap-go/capgo/commit/2c7d1bc94cfe6b18576ccfad2da583c4373d21a6)) +* delete all crisp ([747febf](https://github.com/Cap-go/capgo/commit/747febf6bb638164da48999727785720ca04a347)) +* delete crisp ([70be3a1](https://github.com/Cap-go/capgo/commit/70be3a16937f58d3ef127a64dc226d16c04b5e46)) +* implement regenerating API key ([a9297cd](https://github.com/Cap-go/capgo/commit/a9297cd8c41c0bd52a3faade5cd5588f4a84e2f1)) +* track all like crisp in plunk ([5c83988](https://github.com/Cap-go/capgo/commit/5c83988ec60233046d1dba0d45edfa5415b5a651)) +* updates packages versions ([77b3661](https://github.com/Cap-go/capgo/commit/77b3661b39a7d05efe0edf2e8c85ff66d3cee122)) +* use new logsnag in prod ([bbcfb1b](https://github.com/Cap-go/capgo/commit/bbcfb1bbced75477e7259a783a7a5a4d3c50a23d)) + + +### Bug Fixes + +* add test secret ([ae0d32b](https://github.com/Cap-go/capgo/commit/ae0d32b3f5242ac5a87a0934eb1c785e8c250978)) +* add todo in code ([bf16e4c](https://github.com/Cap-go/capgo/commit/bf16e4ceafc1fa81cc50a62ce9ce7de6b2ba60af)) +* allow plunk to fail ([fd0898a](https://github.com/Cap-go/capgo/commit/fd0898ac99143096a82fd371776609d586ba01de)) +* build issue ([bde8783](https://github.com/Cap-go/capgo/commit/bde8783dc52cd8547124af06dd65f8fcb4249756)) +* chatwoot issue ([f1059df](https://github.com/Cap-go/capgo/commit/f1059df01f047d781627c096536bd11195548051)) +* convert for node ([3ca76bc](https://github.com/Cap-go/capgo/commit/3ca76bc5803bb14a05aeeb309b2375897595caa2)) +* count_all_apps method don't count not published app ([bf462d1](https://github.com/Cap-go/capgo/commit/bf462d138ca9640d8e834bd1d86a83b063d680f3)) +* create default org with all new user ([c289792](https://github.com/Cap-go/capgo/commit/c289792416382f225f89b20eb98b4152484e9190)) +* cron method ([7acfc8e](https://github.com/Cap-go/capgo/commit/7acfc8ee203355a808b18886e38ef1d5bb2e175d)) +* default config for seed db ([d5abb0e](https://github.com/Cap-go/capgo/commit/d5abb0e7f6db599c6870f6da355952f865ba7e29)) +* delete account ([f24fb74](https://github.com/Cap-go/capgo/commit/f24fb7457c2a3b7090adb3ad31f82de2123d7ce6)) +* download link for admin ([07dfddc](https://github.com/Cap-go/capgo/commit/07dfddc24562a8e7fb29fbd2b4964ee364137f87)) +* first migration ([1ac173c](https://github.com/Cap-go/capgo/commit/1ac173c34ccde77ffc207cb8e6553f29c078171a)) +* form register ([2ef0ac2](https://github.com/Cap-go/capgo/commit/2ef0ac270339991505b097d3fd00335d5bd9468e)) +* if no last_name ([c898a88](https://github.com/Cap-go/capgo/commit/c898a88b3bcdc4f18b04be72f4f6786a49332b5e)) +* issue upload ([7140397](https://github.com/Cap-go/capgo/commit/7140397635668e5ea2808ef181c0e3518d42ca45)) +* lint issue ([5bfade3](https://github.com/Cap-go/capgo/commit/5bfade3af9d9e6c47aa04e160463f8dece833c2f)) +* load balancer use backend is sequence ([aa0894b](https://github.com/Cap-go/capgo/commit/aa0894bdb0449c3e33a3b0f1b9ab9546a2596f46)) +* logsnag netlify ([3bae2f0](https://github.com/Cap-go/capgo/commit/3bae2f03d3df286ff31397bb20d0b609743fab91)) +* name of rule ([04db64c](https://github.com/Cap-go/capgo/commit/04db64c1f908ce74dd5e101953ae12bf7ee265e6)) +* on_version_update issue ([7915004](https://github.com/Cap-go/capgo/commit/79150042b94fe635d194e18d00d3a1c5dfc04ef6)) +* order typo in function ([e7be4d8](https://github.com/Cap-go/capgo/commit/e7be4d8976dc7133cdcce11218e7f75aa0113452)) +* org auto create ([02e83cc](https://github.com/Cap-go/capgo/commit/02e83cc99854b0bc3a43e8f9811b76bfbdf7e510)) +* org names ([667ad6f](https://github.com/Cap-go/capgo/commit/667ad6f6a9a30bf43fd41397b7b36ac67bd31cc6)) +* orgs rights ([3befb18](https://github.com/Cap-go/capgo/commit/3befb18d1c37bc53c56318a4715809879b60a2c2)) +* plan page ([8418b17](https://github.com/Cap-go/capgo/commit/8418b17ae904dcc45384326db3121d0ef97c366f)) +* plan selection ([0865617](https://github.com/Cap-go/capgo/commit/086561726a4910e5fcf3a1f156efec4df74839e0)) +* plunk 400 ([39a2769](https://github.com/Cap-go/capgo/commit/39a2769d4222353334fe6c176d901026320b3ef7)) +* plunk data ([5b35968](https://github.com/Cap-go/capgo/commit/5b359681a9b4cba099db34d5ebec6b88ea0d358e)) +* plunk leaked key ([94eafb5](https://github.com/Cap-go/capgo/commit/94eafb5aa97109829844b9b8cda47eff32ad4172)) +* r2 for node ([668a64c](https://github.com/Cap-go/capgo/commit/668a64cbea12005c4b0947f1b43aa21670c804f1)) +* r2 for node ([a844d79](https://github.com/Cap-go/capgo/commit/a844d79eb4dd41dc2aaacc4d6cb9e25bc55ceb40)) +* remove useless code ([e4a0513](https://github.com/Cap-go/capgo/commit/e4a05133af5851b8cd971d86021295bad927cd16)) +* script to create default orgs ([2b92597](https://github.com/Cap-go/capgo/commit/2b92597dc0ac799a6d5d974ee12e2cf0691be120)) +* seed for orgs ([e87c9d3](https://github.com/Cap-go/capgo/commit/e87c9d3e7c82dfdf832e9772d778941a83c70656)) +* segments in plunk ([97e0131](https://github.com/Cap-go/capgo/commit/97e0131d6fcdec0d0024185fcbd36a07d0ca7b87)) +* test CI ([76a2ba4](https://github.com/Cap-go/capgo/commit/76a2ba4ffead099134e16f4f52faecb804c13a81)) +* test fix commit and see if CI is sane now ([4b699e1](https://github.com/Cap-go/capgo/commit/4b699e1a08a346961adc5823b9ff6c60d9f5a7db)) +* upload check use app_version instead of just app ([fefe11e](https://github.com/Cap-go/capgo/commit/fefe11ec0ba51852af0bb7788bc64a32fcfc3c31)) +* use base schema instead of many migrations ([829c294](https://github.com/Cap-go/capgo/commit/829c2943f5da1d0fce9eb4c8649531b08884c97c)) +* use single only ([9608341](https://github.com/Cap-go/capgo/commit/9608341d5170536b9cb4cec627cf4567aa140be7)) +* use vault of is_admin method ([921422a](https://github.com/Cap-go/capgo/commit/921422a1cc926307e1474df74d19fe5ca56862db)) +* version number ([0b5f226](https://github.com/Cap-go/capgo/commit/0b5f226b31bdc9d5735709387bc36e41aa4dd9b1)) +* version upload and create ([3710324](https://github.com/Cap-go/capgo/commit/3710324a2043551b6825c63e69bd1dfb5ca3cbb0)) + ## [10.60.0](https://github.com/Cap-go/capgo/compare/10.0.0...10.60.0) (2023-08-19) From ce2a140f399dc6d58dea14ce38dc1de8e9ae9440 Mon Sep 17 00:00:00 2001 From: WcaleNieWolny Date: Tue, 22 Aug 2023 20:37:27 +0200 Subject: [PATCH 8/8] fix merge conflict --- android/app/build.gradle | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7f29e8cc7d..50cfcba49c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -12,8 +12,8 @@ android { applicationId "ee.forgr.capacitor_go" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 106200999 - versionName "10.62.0" + versionCode 106300999 + versionName "10.63.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/package.json b/package.json index 9b2ab1474c..1aa59011f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capgo-app", - "version": "10.60.0", + "version": "10.63.0", "private": true, "scripts": { "build": "vite build",