Skip to content

Commit 396b343

Browse files
docs: update changelog
Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent 651d75c commit 396b343

File tree

6 files changed

+79
-2
lines changed

6 files changed

+79
-2
lines changed

flake.nix

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
description = "Flutter 3.13.x";
3+
inputs = {
4+
nixpkgs.url = "github:NixOS/nixpkgs/23.11";
5+
flake-utils.url = "github:numtide/flake-utils";
6+
};
7+
outputs = { self, nixpkgs, flake-utils }:
8+
flake-utils.lib.eachDefaultSystem (system:
9+
let
10+
pkgs = import nixpkgs {
11+
inherit system;
12+
config = {
13+
android_sdk.accept_license = true;
14+
allowUnfree = true;
15+
};
16+
};
17+
androidSdk = pkgs.androidenv.androidPkgs_9_0.androidsdk;
18+
in
19+
{
20+
devShell =
21+
with pkgs; mkShell rec {
22+
ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk";
23+
buildInputs = [
24+
flutter
25+
androidSdk
26+
jdk17
27+
];
28+
};
29+
});
30+
}

packages/flake.nix

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
description = "Flutter";
3+
inputs = {
4+
nixpkgs-unstable.url = "github:NixOS/nixpkgs/master";
5+
flake-utils.url = "github:numtide/flake-utils";
6+
};
7+
outputs = { self, nixpkgs-unstable, flake-utils }:
8+
flake-utils.lib.eachDefaultSystem (system:
9+
let
10+
pkgs = import nixpkgs-unstable {
11+
inherit system;
12+
config = {
13+
android_sdk.accept_license = true;
14+
allowUnfree = true;
15+
};
16+
};
17+
buildToolsVersion = "33.0.2";
18+
androidComposition = pkgs.androidenv.composeAndroidPackages {
19+
buildToolsVersions = [ buildToolsVersion ];
20+
platformVersions = [ "33" ];
21+
abiVersions = [ "arm64-v8a" ];
22+
};
23+
androidSdk = androidComposition.androidsdk;
24+
in
25+
{
26+
devShell =
27+
with pkgs; mkShell rec {
28+
ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk";
29+
buildInputs = [
30+
flutter
31+
androidSdk
32+
jdk11
33+
];
34+
};
35+
});
36+
}

packages/graphql/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v5.2.0-beta.10
2+
3+
## Fixed
4+
- update normalize dependency to version 0.9.1 (#1448) ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/9e21fd5c0d951f2a24d9646f548202c7f47807f7)). @nrbnlulu 11-09-2024
5+
- upgrade web_socket_channel, dart sdk dependencies. Update tests to ignore missing closeCode ([commit](651d75cc46082f30c91760fac25def88e6baa12a))
6+
17
# v5.2.0-beta.9
28

39
## Fixed

packages/graphql/changelog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"package_name": "graphql",
3-
"version": "v5.2.0-beta.9",
3+
"version": "v5.2.0-beta.10",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",

packages/graphql_flutter/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v5.2.0-beta.8
2+
3+
## Fixed
4+
- upgrade meta,path,dart dependencies ([commit](651d75cc46082f30c91760fac25def88e6baa12a))
5+
16
# v5.2.0-beta.7
27

38
## Fixed

packages/graphql_flutter/changelog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"package_name": "graphql_flutter",
3-
"version": "v5.2.0-beta.7",
3+
"version": "v5.2.0-beta.8",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",

0 commit comments

Comments
 (0)