this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #18675 from brendanlong/release-pgx-2.0

[new release] pgx_lwt_mirage, pgx_value_core, pgx_async, pgx_unix, pgx_lwt_unix, pgx_lwt and pgx (2.0)

authored by

Kate and committed by
GitHub
5c12fff7 7a3cc0ed

+323 -15
+1
packages/pgx/pgx.0.1/opam
··· 1 1 opam-version: "2.0" 2 2 authors: ["Arena Developers <silver-snakes@arena.io>"] 3 3 maintainer: "silver-snakes@arena.io" 4 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 4 5 homepage: "https://github.com/arenadotio/pgx" 5 6 dev-repo: "git+https://github.com/arenadotio/pgx.git" 6 7 bug-reports: "https://github.com/arenadotio/pgx/issues"
+3 -3
packages/pgx/pgx.1.0/opam
··· 4 4 "PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations." 5 5 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 6 authors: ["Arena Developers <silver-snakes@arena.io>"] 7 - license: "LGPL-2 with OCaml linking exception" 7 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 8 8 homepage: "https://github.com/arenadotio/pgx" 9 9 doc: "https://arenadotio.github.io/pgx" 10 10 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 19 19 "ppx_compare" {>= "v0.13.0" & < "v0.15"} 20 20 "ppx_custom_printf" {>= "v0.13.0" & < "v0.15"} 21 21 "ppx_sexp_conv" {>= "v0.13.0" & < "v0.15"} 22 - "re" 22 + "re" {>= "1.5.0"} 23 23 "sexplib0" {>= "v0.13.0" & < "v0.15"} 24 24 "uuidm" 25 25 ] 26 26 build: [ 27 - ["dune" "subst"] {pinned} 27 + ["dune" "subst"] {dev} 28 28 [ 29 29 "dune" 30 30 "build"
+49
packages/pgx/pgx.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pure-OCaml PostgreSQL client library" 3 + description: 4 + "PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations." 5 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 + authors: ["Arena Developers <silver-snakes@arena.io>"] 7 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 8 + homepage: "https://github.com/arenadotio/pgx" 9 + doc: "https://arenadotio.github.io/pgx" 10 + bug-reports: "https://github.com/arenadotio/pgx/issues" 11 + depends: [ 12 + "alcotest" {with-test & >= "1.0.0"} 13 + "bisect_ppx" {dev & >= "2.0.0"} 14 + "dune" {>= "1.11"} 15 + "hex" 16 + "ipaddr" 17 + "ocaml" {>= "4.08"} 18 + "odoc" {with-doc} 19 + "ppx_compare" {>= "v0.13.0"} 20 + "ppx_custom_printf" {>= "v0.13.0"} 21 + "ppx_sexp_conv" {>= "v0.13.0"} 22 + "re" {>= "1.5.0"} 23 + "sexplib0" {>= "v0.13.0"} 24 + "uuidm" 25 + ] 26 + build: [ 27 + ["dune" "subst"] {dev} 28 + [ 29 + "dune" 30 + "build" 31 + "-p" 32 + name 33 + "-j" 34 + jobs 35 + "@install" 36 + "@runtest" {with-test} 37 + "@doc" {with-doc} 38 + ] 39 + ] 40 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 41 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 42 + url { 43 + src: 44 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 45 + checksum: [ 46 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 47 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 48 + ] 49 + }
+1
packages/pgx_async/pgx_async.0.1/opam
··· 1 1 opam-version: "2.0" 2 2 authors: ["Arena Developers <silver-snakes@arena.io>"] 3 3 maintainer: "silver-snakes@arena.io" 4 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 4 5 homepage: "https://github.com/arenadotio/pgx" 5 6 dev-repo: "git+https://github.com/arenadotio/pgx.git" 6 7 bug-reports: "https://github.com/arenadotio/pgx/issues"
+2 -2
packages/pgx_async/pgx_async.1.0/opam
··· 3 3 description: "Pgx using Async for IO" 4 4 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 5 authors: ["Arena Developers <silver-snakes@arena.io>"] 6 - license: "LGPL-2 with OCaml linking exception" 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 7 homepage: "https://github.com/arenadotio/pgx" 8 8 doc: "https://arenadotio.github.io/pgx" 9 9 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 18 18 "pgx_value_core" {= version} 19 19 ] 20 20 build: [ 21 - ["dune" "subst"] {pinned} 21 + ["dune" "subst"] {dev} 22 22 [ 23 23 "dune" 24 24 "build"
+45
packages/pgx_async/pgx_async.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Async for IO" 3 + description: "Pgx using Async for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "1.11"} 12 + "alcotest-async" {with-test & >= "1.0.0"} 13 + "async_kernel" {>= "v0.13.0"} 14 + "async_unix" {>= "v0.13.0"} 15 + "async_ssl" 16 + "base64" {with-test & >= "3.0.0"} 17 + "conduit-async" {>= "1.5.0"} 18 + "ocaml" {>= "4.08"} 19 + "pgx" {= version} 20 + "pgx_value_core" {= version} 21 + ] 22 + build: [ 23 + ["dune" "subst"] {dev} 24 + [ 25 + "dune" 26 + "build" 27 + "-p" 28 + name 29 + "-j" 30 + jobs 31 + "@install" 32 + "@runtest" {with-test} 33 + "@doc" {with-doc} 34 + ] 35 + ] 36 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 37 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 38 + url { 39 + src: 40 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 41 + checksum: [ 42 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 43 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 44 + ] 45 + }
+1
packages/pgx_lwt/pgx_lwt.0.1/opam
··· 1 1 opam-version: "2.0" 2 2 authors: ["Arena Developers <silver-snakes@arena.io>"] 3 3 maintainer: "silver-snakes@arena.io" 4 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 4 5 homepage: "https://github.com/arenadotio/pgx" 5 6 dev-repo: "git+https://github.com/arenadotio/pgx.git" 6 7 bug-reports: "https://github.com/arenadotio/pgx/issues"
+2 -2
packages/pgx_lwt/pgx_lwt.1.0/opam
··· 3 3 description: "Pgx using Lwt for IO" 4 4 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 5 authors: ["Arena Developers <silver-snakes@arena.io>"] 6 - license: "LGPL-2 with OCaml linking exception" 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 7 homepage: "https://github.com/arenadotio/pgx" 8 8 doc: "https://arenadotio.github.io/pgx" 9 9 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 15 15 "pgx" {= version} 16 16 ] 17 17 build: [ 18 - ["dune" "subst"] {pinned} 18 + ["dune" "subst"] {dev} 19 19 [ 20 20 "dune" 21 21 "build"
+40
packages/pgx_lwt/pgx_lwt.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt for IO" 3 + description: "Pgx using Lwt for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "1.11"} 12 + "lwt" 13 + "logs" 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 32 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 33 + url { 34 + src: 35 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 36 + checksum: [ 37 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 38 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 39 + ] 40 + }
+2 -2
packages/pgx_lwt_mirage/pgx_lwt_mirage.1.0/opam
··· 3 3 description: "Pgx using Lwt on Mirage for IO" 4 4 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 5 authors: ["Arena Developers <silver-snakes@arena.io>"] 6 - license: "LGPL-2 with OCaml linking exception" 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 7 homepage: "https://github.com/arenadotio/pgx" 8 8 doc: "https://arenadotio.github.io/pgx" 9 9 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 22 22 "pgx_lwt" {= version} 23 23 ] 24 24 build: [ 25 - ["dune" "subst"] {pinned} 25 + ["dune" "subst"] {dev} 26 26 [ 27 27 "dune" 28 28 "build"
+48
packages/pgx_lwt_mirage/pgx_lwt_mirage.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt on Mirage for IO" 3 + description: "Pgx using Lwt on Mirage for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "1.11"} 12 + "lwt" 13 + "ocaml" {>= "4.08"} 14 + "logs" 15 + "mirage-channel" 16 + "conduit-mirage" {>= "2.2.0" & < "2.3.0"} 17 + "dns-client" 18 + "mirage-random" 19 + "mirage-time" 20 + "mirage-clock" 21 + "mirage-stack" 22 + "pgx" {= version} 23 + "pgx_lwt" {= version} 24 + ] 25 + build: [ 26 + ["dune" "subst"] {dev} 27 + [ 28 + "dune" 29 + "build" 30 + "-p" 31 + name 32 + "-j" 33 + jobs 34 + "@install" 35 + "@runtest" {with-test} 36 + "@doc" {with-doc} 37 + ] 38 + ] 39 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 40 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 41 + url { 42 + src: 43 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 44 + checksum: [ 45 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 46 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 47 + ] 48 + }
+2 -2
packages/pgx_lwt_unix/pgx_lwt_unix.1.0/opam
··· 3 3 description: "Pgx using Lwt and Unix libraries for IO" 4 4 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 5 authors: ["Arena Developers <silver-snakes@arena.io>"] 6 - license: "LGPL-2 with OCaml linking exception" 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 7 homepage: "https://github.com/arenadotio/pgx" 8 8 doc: "https://arenadotio.github.io/pgx" 9 9 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 17 17 "pgx_lwt" {= version} 18 18 ] 19 19 build: [ 20 - ["dune" "subst"] {pinned} 20 + ["dune" "subst"] {dev} 21 21 [ 22 22 "dune" 23 23 "build"
+41
packages/pgx_lwt_unix/pgx_lwt_unix.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt and Unix libraries for IO" 3 + description: "Pgx using Lwt and Unix libraries for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "1.11"} 12 + "alcotest-lwt" {with-test & >= "1.0.0"} 13 + "base64" {with-test & >= "3.0.0"} 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + "pgx_lwt" {= version} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 33 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 34 + url { 35 + src: 36 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 37 + checksum: [ 38 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 39 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 40 + ] 41 + }
+1
packages/pgx_unix/pgx_unix.0.1/opam
··· 1 1 opam-version: "2.0" 2 2 authors: ["Arena Developers <silver-snakes@arena.io>"] 3 3 maintainer: "silver-snakes@arena.io" 4 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 4 5 homepage: "https://github.com/arenadotio/pgx" 5 6 dev-repo: "git+https://github.com/arenadotio/pgx.git" 6 7 bug-reports: "https://github.com/arenadotio/pgx/issues"
+2 -2
packages/pgx_unix/pgx_unix.1.0/opam
··· 4 4 "PGX using the standard library's Unix module for IO (synchronous)" 5 5 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 6 authors: ["Arena Developers <silver-snakes@arena.io>"] 7 - license: "LGPL-2 with OCaml linking exception" 7 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 8 8 homepage: "https://github.com/arenadotio/pgx" 9 9 doc: "https://arenadotio.github.io/pgx" 10 10 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 16 16 "pgx" {= version} 17 17 ] 18 18 build: [ 19 - ["dune" "subst"] {pinned} 19 + ["dune" "subst"] {dev} 20 20 [ 21 21 "dune" 22 22 "build"
+41
packages/pgx_unix/pgx_unix.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "PGX using the standard library's Unix module for IO (synchronous)" 3 + description: 4 + "PGX using the standard library's Unix module for IO (synchronous)" 5 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 + authors: ["Arena Developers <silver-snakes@arena.io>"] 7 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 8 + homepage: "https://github.com/arenadotio/pgx" 9 + doc: "https://arenadotio.github.io/pgx" 10 + bug-reports: "https://github.com/arenadotio/pgx/issues" 11 + depends: [ 12 + "dune" {>= "1.11"} 13 + "alcotest" {with-test & >= "1.0.0"} 14 + "base64" {with-test & >= "3.0.0"} 15 + "ocaml" {>= "4.08"} 16 + "pgx" {= version} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 33 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 34 + url { 35 + src: 36 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 37 + checksum: [ 38 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 39 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 40 + ] 41 + }
+2 -2
packages/pgx_value_core/pgx_value_core.1.0/opam
··· 3 3 description: "Pgx_value converters for Core types like Date and Time" 4 4 maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 5 authors: ["Arena Developers <silver-snakes@arena.io>"] 6 - license: "LGPL-2 with OCaml linking exception" 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 7 homepage: "https://github.com/arenadotio/pgx" 8 8 doc: "https://arenadotio.github.io/pgx" 9 9 bug-reports: "https://github.com/arenadotio/pgx/issues" ··· 15 15 "pgx" {= version} 16 16 ] 17 17 build: [ 18 - ["dune" "subst"] {pinned} 18 + ["dune" "subst"] {dev} 19 19 [ 20 20 "dune" 21 21 "build"
+40
packages/pgx_value_core/pgx_value_core.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx_value converters for Core types like Date and Time" 3 + description: "Pgx_value converters for Core types like Date and Time" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.1 with OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "1.11"} 12 + "alcotest" {with-test & >= "1.0.0"} 13 + "core_kernel" {>= "v0.13.0"} 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 32 + x-commit-hash: "b73b09d8e376f0ba10219f9b860e33ea94281461" 33 + url { 34 + src: 35 + "https://github.com/arenadotio/pgx/releases/download/2.0/pgx_lwt_mirage-2.0.tbz" 36 + checksum: [ 37 + "sha256=be6bac83e4030b6225f3966fd482b242818ff1147efc273163d4a9cd749b62bd" 38 + "sha512=c18e3b7d246f184c5a689d081f613937d569f9b794b95e586c5c16ddb7402581049642dd20852ec95316c4681b70f5e8f494fc9475adecf64d53b13d70257c98" 39 + ] 40 + }