Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/functions_client_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -48,7 +48,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gotrue_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -45,7 +45,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/postgrest_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -47,7 +47,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/realtime_client_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -45,7 +45,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storage_client_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -44,7 +44,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/supabase_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -55,7 +55,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yet_another_json_isolate_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: ['12']
sdk: [2.15.0, stable, beta, dev]
sdk: [2.17.0, stable, beta, dev]

defaults:
run:
Expand All @@ -45,7 +45,7 @@ jobs:
melos bootstrap --ignore="supabase_flutter"

- name: dartfmt
if: ${{ matrix.sdk == 'stable'}}
if: ${{ matrix.sdk == 'stable'}}
run: dart format lib test -l 80 --set-exit-if-changed

- name: analyzer
Expand Down
2 changes: 1 addition & 1 deletion packages/functions_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/fun
documentation: 'https://supabase.com/docs/reference/dart/functions-invoke'

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
http: '>=0.13.4 <2.0.0'
Expand Down
6 changes: 0 additions & 6 deletions packages/gotrue/lib/src/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,3 @@ enum OtpType {
recovery,
emailChange
}

extension EnumName on Enum {
String get name {
return toString().split('.').last;
}
}
1 change: 0 additions & 1 deletion packages/gotrue/lib/src/types/mfa.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:gotrue/gotrue.dart';
import 'package:gotrue/src/constants.dart';

class AuthMFAEnrollResponse {
/// ID of the factor that was just enrolled (in an unverified state).
Expand Down
2 changes: 1 addition & 1 deletion packages/gotrue/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/got
documentation: 'https://supabase.com/docs/reference/dart/auth-signup'

environment:
sdk: '>=2.14.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
collection: ^1.15.0
Expand Down
2 changes: 1 addition & 1 deletion packages/postgrest/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/pos
documentation: 'https://supabase.com/docs/reference/dart/select'

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
http: '>=0.13.0 <2.0.0'
Expand Down
6 changes: 0 additions & 6 deletions packages/realtime_client/lib/src/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ extension ChannelEventsExtended on ChannelEvents {
}
}

extension EnumName on Enum {
String get name {
return toString().split('.').last;
}
}

class Transports {
static const String websocket = 'websocket';
}
2 changes: 1 addition & 1 deletion packages/realtime_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/rea
documentation: 'https://supabase.com/docs/reference/dart/subscribe'

environment:
sdk: '>=2.14.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
collection: ^1.15.0
Expand Down
2 changes: 1 addition & 1 deletion packages/storage_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/sto
documentation: 'https://supabase.com/docs/reference/dart/storage-createbucket'

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
http: '>=0.13.4 <2.0.0'
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/sup
documentation: 'https://supabase.com/docs/reference/dart/introduction'

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
functions_client: ^1.3.1
Expand Down
2 changes: 1 addition & 1 deletion packages/yet_another_json_isolate/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.1.0
homepage: https://github.com/supabase-community/json-isolate-dart

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
async: ^2.8.0
Expand Down