red-adbc 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +538 -57
- data/README.md +13 -0
- data/lib/adbc/loader.rb +17 -0
- data/lib/adbc/version.rb +1 -1
- data/lib/adbc.rb +2 -2
- metadata +6 -6
- data/dependency-check/Rakefile +0 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c738feb928dfa8b4b0f3b9a7b23f1bc823941feb99b14cf1f222dfe04da83f75
|
4
|
+
data.tar.gz: c79ed3f548f7ec636f291f2d72c315dc6c444a2dce03c72826904e879c52c599
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc951058129d953de6ed524ff3cb167895013489288b2f803bd0f71d10bebf12c25346daec843c5f092d4d39bf3692b8f3fd6528602094c1c66fa0ab15da86f8
|
7
|
+
data.tar.gz: a832f70a6d8ef2df54c419538c10dbabf8ebd0e8b65673da8e52e368a58c5ee5ca4c3250489c9d6a4ea3498f27024a9fb2ec99c47db0700de7e0f5af559ddca8
|
data/LICENSE.txt
CHANGED
@@ -229,6 +229,31 @@ public domain, released using the CC0 1.0 Universal dedication (*).
|
|
229
229
|
|
230
230
|
--------------------------------------------------------------------------------
|
231
231
|
|
232
|
+
The files in c/vendor/toml++ contain code from
|
233
|
+
|
234
|
+
https://github.com/marzer/tomlplusplus
|
235
|
+
|
236
|
+
and have the following copyright notice:
|
237
|
+
|
238
|
+
MIT License
|
239
|
+
|
240
|
+
Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
|
241
|
+
|
242
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
243
|
+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
244
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
245
|
+
permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
246
|
+
|
247
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
248
|
+
Software.
|
249
|
+
|
250
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
251
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
252
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
253
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
254
|
+
|
255
|
+
--------------------------------------------------------------------------------
|
256
|
+
|
232
257
|
The files python/*/*/_version.py and python/*/*/_static_version.py
|
233
258
|
contain code from
|
234
259
|
|
@@ -379,6 +404,42 @@ https://www.openssl.org/source/license.html
|
|
379
404
|
distributions, like the Python wheels. SQLite is public domain.
|
380
405
|
|
381
406
|
|
407
|
+
--------------------------------------------------------------------------------
|
408
|
+
|
409
|
+
3rdparty dependency cloud.google.com/go
|
410
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
411
|
+
cloud.google.com/go is under the Apache-2.0 license.
|
412
|
+
|
413
|
+
--------------------------------------------------------------------------------
|
414
|
+
|
415
|
+
3rdparty dependency cloud.google.com/go/auth
|
416
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
417
|
+
cloud.google.com/go/auth is under the Apache-2.0 license.
|
418
|
+
|
419
|
+
--------------------------------------------------------------------------------
|
420
|
+
|
421
|
+
3rdparty dependency cloud.google.com/go/auth/oauth2adapt
|
422
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
423
|
+
cloud.google.com/go/auth/oauth2adapt is under the Apache-2.0 license.
|
424
|
+
|
425
|
+
--------------------------------------------------------------------------------
|
426
|
+
|
427
|
+
3rdparty dependency cloud.google.com/go/bigquery
|
428
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
429
|
+
cloud.google.com/go/bigquery is under the Apache-2.0 license.
|
430
|
+
|
431
|
+
--------------------------------------------------------------------------------
|
432
|
+
|
433
|
+
3rdparty dependency cloud.google.com/go/compute/metadata
|
434
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
435
|
+
cloud.google.com/go/compute/metadata is under the Apache-2.0 license.
|
436
|
+
|
437
|
+
--------------------------------------------------------------------------------
|
438
|
+
|
439
|
+
3rdparty dependency cloud.google.com/go/iam
|
440
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
441
|
+
cloud.google.com/go/iam is under the Apache-2.0 license.
|
442
|
+
|
382
443
|
--------------------------------------------------------------------------------
|
383
444
|
|
384
445
|
3rdparty dependency github.com/99designs/keyring
|
@@ -489,13 +550,12 @@ github.com/Azure/azure-sdk-for-go/sdk/storage/azblob is under the MIT license.
|
|
489
550
|
SOFTWARE
|
490
551
|
--------------------------------------------------------------------------------
|
491
552
|
|
492
|
-
3rdparty dependency github.com/
|
553
|
+
3rdparty dependency github.com/BurntSushi/toml
|
493
554
|
is statically linked in certain binary distributions, like the Python wheels.
|
494
|
-
github.com/
|
495
|
-
|
496
|
-
MIT License
|
555
|
+
github.com/BurntSushi/toml is under the MIT license.
|
556
|
+
The MIT License (MIT)
|
497
557
|
|
498
|
-
Copyright (c)
|
558
|
+
Copyright (c) 2013 TOML authors
|
499
559
|
|
500
560
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
501
561
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -504,16 +564,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
504
564
|
copies of the Software, and to permit persons to whom the Software is
|
505
565
|
furnished to do so, subject to the following conditions:
|
506
566
|
|
507
|
-
The above copyright notice and this permission notice shall be included in
|
508
|
-
copies or substantial portions of the Software.
|
567
|
+
The above copyright notice and this permission notice shall be included in
|
568
|
+
all copies or substantial portions of the Software.
|
509
569
|
|
510
570
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
511
571
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
512
572
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
513
573
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
514
574
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
515
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
516
|
-
SOFTWARE.
|
575
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
576
|
+
THE SOFTWARE.
|
517
577
|
|
518
578
|
--------------------------------------------------------------------------------
|
519
579
|
|
@@ -542,6 +602,12 @@ THE SOFTWARE.
|
|
542
602
|
|
543
603
|
--------------------------------------------------------------------------------
|
544
604
|
|
605
|
+
3rdparty dependency github.com/apache/arrow-go/v18
|
606
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
607
|
+
github.com/apache/arrow-go/v18 is under the Apache-2.0 license.
|
608
|
+
|
609
|
+
--------------------------------------------------------------------------------
|
610
|
+
|
545
611
|
3rdparty dependency github.com/apache/thrift/lib/go/thrift
|
546
612
|
is statically linked in certain binary distributions, like the Python wheels.
|
547
613
|
github.com/apache/thrift/lib/go/thrift is under the Apache-2.0 license.
|
@@ -560,12 +626,24 @@ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream is under the Apache-2.0 li
|
|
560
626
|
|
561
627
|
--------------------------------------------------------------------------------
|
562
628
|
|
629
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/config
|
630
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
631
|
+
github.com/aws/aws-sdk-go-v2/config is under the Apache-2.0 license.
|
632
|
+
|
633
|
+
--------------------------------------------------------------------------------
|
634
|
+
|
563
635
|
3rdparty dependency github.com/aws/aws-sdk-go-v2/credentials
|
564
636
|
is statically linked in certain binary distributions, like the Python wheels.
|
565
637
|
github.com/aws/aws-sdk-go-v2/credentials is under the Apache-2.0 license.
|
566
638
|
|
567
639
|
--------------------------------------------------------------------------------
|
568
640
|
|
641
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/feature/ec2/imds
|
642
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
643
|
+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds is under the Apache-2.0 license.
|
644
|
+
|
645
|
+
--------------------------------------------------------------------------------
|
646
|
+
|
569
647
|
3rdparty dependency github.com/aws/aws-sdk-go-v2/feature/s3/manager
|
570
648
|
is statically linked in certain binary distributions, like the Python wheels.
|
571
649
|
github.com/aws/aws-sdk-go-v2/feature/s3/manager is under the Apache-2.0 license.
|
@@ -584,6 +662,12 @@ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 is under the Apache-2.0 licen
|
|
584
662
|
|
585
663
|
--------------------------------------------------------------------------------
|
586
664
|
|
665
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/internal/ini
|
666
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
667
|
+
github.com/aws/aws-sdk-go-v2/internal/ini is under the Apache-2.0 license.
|
668
|
+
|
669
|
+
--------------------------------------------------------------------------------
|
670
|
+
|
587
671
|
3rdparty dependency github.com/aws/aws-sdk-go-v2/internal/sync/singleflight
|
588
672
|
is statically linked in certain binary distributions, like the Python wheels.
|
589
673
|
github.com/aws/aws-sdk-go-v2/internal/sync/singleflight is under the BSD-3-Clause license.
|
@@ -654,6 +738,24 @@ github.com/aws/aws-sdk-go-v2/service/s3 is under the Apache-2.0 license.
|
|
654
738
|
|
655
739
|
--------------------------------------------------------------------------------
|
656
740
|
|
741
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/service/sso
|
742
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
743
|
+
github.com/aws/aws-sdk-go-v2/service/sso is under the Apache-2.0 license.
|
744
|
+
|
745
|
+
--------------------------------------------------------------------------------
|
746
|
+
|
747
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/service/ssooidc
|
748
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
749
|
+
github.com/aws/aws-sdk-go-v2/service/ssooidc is under the Apache-2.0 license.
|
750
|
+
|
751
|
+
--------------------------------------------------------------------------------
|
752
|
+
|
753
|
+
3rdparty dependency github.com/aws/aws-sdk-go-v2/service/sts
|
754
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
755
|
+
github.com/aws/aws-sdk-go-v2/service/sts is under the Apache-2.0 license.
|
756
|
+
|
757
|
+
--------------------------------------------------------------------------------
|
758
|
+
|
657
759
|
3rdparty dependency github.com/aws/smithy-go
|
658
760
|
is statically linked in certain binary distributions, like the Python wheels.
|
659
761
|
github.com/aws/smithy-go is under the Apache-2.0 license.
|
@@ -721,6 +823,60 @@ THE SOFTWARE.
|
|
721
823
|
|
722
824
|
--------------------------------------------------------------------------------
|
723
825
|
|
826
|
+
3rdparty dependency github.com/cenkalti/backoff/v5
|
827
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
828
|
+
github.com/cenkalti/backoff/v5 is under the MIT license.
|
829
|
+
The MIT License (MIT)
|
830
|
+
|
831
|
+
Copyright (c) 2014 Cenk Altı
|
832
|
+
|
833
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
834
|
+
this software and associated documentation files (the "Software"), to deal in
|
835
|
+
the Software without restriction, including without limitation the rights to
|
836
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
837
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
838
|
+
subject to the following conditions:
|
839
|
+
|
840
|
+
The above copyright notice and this permission notice shall be included in all
|
841
|
+
copies or substantial portions of the Software.
|
842
|
+
|
843
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
844
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
845
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
846
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
847
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
848
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
849
|
+
|
850
|
+
--------------------------------------------------------------------------------
|
851
|
+
|
852
|
+
3rdparty dependency github.com/cespare/xxhash/v2
|
853
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
854
|
+
github.com/cespare/xxhash/v2 is under the MIT license.
|
855
|
+
Copyright (c) 2016 Caleb Spare
|
856
|
+
|
857
|
+
MIT License
|
858
|
+
|
859
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
860
|
+
a copy of this software and associated documentation files (the
|
861
|
+
"Software"), to deal in the Software without restriction, including
|
862
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
863
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
864
|
+
permit persons to whom the Software is furnished to do so, subject to
|
865
|
+
the following conditions:
|
866
|
+
|
867
|
+
The above copyright notice and this permission notice shall be
|
868
|
+
included in all copies or substantial portions of the Software.
|
869
|
+
|
870
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
871
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
872
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
873
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
874
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
875
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
876
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
877
|
+
|
878
|
+
--------------------------------------------------------------------------------
|
879
|
+
|
724
880
|
3rdparty dependency github.com/davecgh/go-spew/spew
|
725
881
|
is statically linked in certain binary distributions, like the Python wheels.
|
726
882
|
github.com/davecgh/go-spew/spew is under the ISC license.
|
@@ -769,17 +925,28 @@ SOFTWARE.
|
|
769
925
|
|
770
926
|
--------------------------------------------------------------------------------
|
771
927
|
|
772
|
-
3rdparty dependency github.com/
|
928
|
+
3rdparty dependency github.com/felixge/httpsnoop
|
773
929
|
is statically linked in certain binary distributions, like the Python wheels.
|
774
|
-
github.com/
|
775
|
-
Copyright (c)
|
930
|
+
github.com/felixge/httpsnoop is under the MIT license.
|
931
|
+
Copyright (c) 2016 Felix Geisendörfer (felix@debuggable.com)
|
776
932
|
|
777
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
933
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
934
|
+
of this software and associated documentation files (the "Software"), to deal
|
935
|
+
in the Software without restriction, including without limitation the rights
|
936
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
937
|
+
copies of the Software, and to permit persons to whom the Software is
|
938
|
+
furnished to do so, subject to the following conditions:
|
778
939
|
|
779
|
-
The above copyright notice and this permission notice shall be included in
|
780
|
-
|
781
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
940
|
+
The above copyright notice and this permission notice shall be included in
|
941
|
+
all copies or substantial portions of the Software.
|
782
942
|
|
943
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
944
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
945
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
946
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
947
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
948
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
949
|
+
THE SOFTWARE.
|
783
950
|
|
784
951
|
--------------------------------------------------------------------------------
|
785
952
|
|
@@ -788,7 +955,7 @@ is statically linked in certain binary distributions, like the Python wheels.
|
|
788
955
|
github.com/gabriel-vasile/mimetype is under the MIT license.
|
789
956
|
MIT License
|
790
957
|
|
791
|
-
Copyright (c) 2018
|
958
|
+
Copyright (c) 2018 Gabriel Vasile
|
792
959
|
|
793
960
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
794
961
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -810,6 +977,18 @@ SOFTWARE.
|
|
810
977
|
|
811
978
|
--------------------------------------------------------------------------------
|
812
979
|
|
980
|
+
3rdparty dependency github.com/go-logr/logr
|
981
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
982
|
+
github.com/go-logr/logr is under the Apache-2.0 license.
|
983
|
+
|
984
|
+
--------------------------------------------------------------------------------
|
985
|
+
|
986
|
+
3rdparty dependency github.com/go-logr/stdr
|
987
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
988
|
+
github.com/go-logr/stdr is under the Apache-2.0 license.
|
989
|
+
|
990
|
+
--------------------------------------------------------------------------------
|
991
|
+
|
813
992
|
3rdparty dependency github.com/goccy/go-json
|
814
993
|
is statically linked in certain binary distributions, like the Python wheels.
|
815
994
|
github.com/goccy/go-json is under the MIT license.
|
@@ -868,22 +1047,37 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
868
1047
|
|
869
1048
|
--------------------------------------------------------------------------------
|
870
1049
|
|
871
|
-
3rdparty dependency github.com/golang/
|
1050
|
+
3rdparty dependency github.com/golang-jwt/jwt/v5
|
872
1051
|
is statically linked in certain binary distributions, like the Python wheels.
|
873
|
-
github.com/golang/
|
874
|
-
Copyright
|
1052
|
+
github.com/golang-jwt/jwt/v5 is under the MIT license.
|
1053
|
+
Copyright (c) 2012 Dave Grijalva
|
1054
|
+
Copyright (c) 2021 golang-jwt maintainers
|
1055
|
+
|
1056
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1057
|
+
|
1058
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1059
|
+
|
1060
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1061
|
+
|
1062
|
+
|
1063
|
+
--------------------------------------------------------------------------------
|
1064
|
+
|
1065
|
+
3rdparty dependency github.com/golang/snappy
|
1066
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1067
|
+
github.com/golang/snappy is under the BSD-3-Clause license.
|
1068
|
+
Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
|
875
1069
|
|
876
1070
|
Redistribution and use in source and binary forms, with or without
|
877
1071
|
modification, are permitted provided that the following conditions are
|
878
1072
|
met:
|
879
1073
|
|
880
|
-
|
1074
|
+
* Redistributions of source code must retain the above copyright
|
881
1075
|
notice, this list of conditions and the following disclaimer.
|
882
|
-
|
1076
|
+
* Redistributions in binary form must reproduce the above
|
883
1077
|
copyright notice, this list of conditions and the following disclaimer
|
884
1078
|
in the documentation and/or other materials provided with the
|
885
1079
|
distribution.
|
886
|
-
|
1080
|
+
* Neither the name of Google Inc. nor the names of its
|
887
1081
|
contributors may be used to endorse or promote products derived from
|
888
1082
|
this software without specific prior written permission.
|
889
1083
|
|
@@ -899,13 +1093,24 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
899
1093
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
900
1094
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
901
1095
|
|
1096
|
+
--------------------------------------------------------------------------------
|
1097
|
+
|
1098
|
+
3rdparty dependency github.com/google/flatbuffers/go
|
1099
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1100
|
+
github.com/google/flatbuffers/go is under the Apache-2.0 license.
|
902
1101
|
|
903
1102
|
--------------------------------------------------------------------------------
|
904
1103
|
|
905
|
-
3rdparty dependency github.com/
|
1104
|
+
3rdparty dependency github.com/google/s2a-go
|
906
1105
|
is statically linked in certain binary distributions, like the Python wheels.
|
907
|
-
github.com/
|
908
|
-
|
1106
|
+
github.com/google/s2a-go is under the Apache-2.0 license.
|
1107
|
+
|
1108
|
+
--------------------------------------------------------------------------------
|
1109
|
+
|
1110
|
+
3rdparty dependency github.com/google/uuid
|
1111
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1112
|
+
github.com/google/uuid is under the BSD-3-Clause license.
|
1113
|
+
Copyright (c) 2009,2014 Google Inc. All rights reserved.
|
909
1114
|
|
910
1115
|
Redistribution and use in source and binary forms, with or without
|
911
1116
|
modification, are permitted provided that the following conditions are
|
@@ -935,9 +1140,75 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
935
1140
|
|
936
1141
|
--------------------------------------------------------------------------------
|
937
1142
|
|
938
|
-
3rdparty dependency github.com/
|
1143
|
+
3rdparty dependency github.com/googleapis/enterprise-certificate-proxy/client
|
939
1144
|
is statically linked in certain binary distributions, like the Python wheels.
|
940
|
-
github.com/
|
1145
|
+
github.com/googleapis/enterprise-certificate-proxy/client is under the Apache-2.0 license.
|
1146
|
+
|
1147
|
+
--------------------------------------------------------------------------------
|
1148
|
+
|
1149
|
+
3rdparty dependency github.com/googleapis/gax-go/v2
|
1150
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1151
|
+
github.com/googleapis/gax-go/v2 is under the BSD-3-Clause license.
|
1152
|
+
Copyright 2016, Google Inc.
|
1153
|
+
All rights reserved.
|
1154
|
+
Redistribution and use in source and binary forms, with or without
|
1155
|
+
modification, are permitted provided that the following conditions are
|
1156
|
+
met:
|
1157
|
+
|
1158
|
+
* Redistributions of source code must retain the above copyright
|
1159
|
+
notice, this list of conditions and the following disclaimer.
|
1160
|
+
* Redistributions in binary form must reproduce the above
|
1161
|
+
copyright notice, this list of conditions and the following disclaimer
|
1162
|
+
in the documentation and/or other materials provided with the
|
1163
|
+
distribution.
|
1164
|
+
* Neither the name of Google Inc. nor the names of its
|
1165
|
+
contributors may be used to endorse or promote products derived from
|
1166
|
+
this software without specific prior written permission.
|
1167
|
+
|
1168
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1169
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1170
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1171
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1172
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1173
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1174
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1175
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1176
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1177
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1178
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1179
|
+
|
1180
|
+
--------------------------------------------------------------------------------
|
1181
|
+
|
1182
|
+
3rdparty dependency github.com/grpc-ecosystem/grpc-gateway/v2
|
1183
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1184
|
+
github.com/grpc-ecosystem/grpc-gateway/v2 is under the BSD-3-Clause license.
|
1185
|
+
Copyright (c) 2015, Gengo, Inc.
|
1186
|
+
All rights reserved.
|
1187
|
+
|
1188
|
+
Redistribution and use in source and binary forms, with or without modification,
|
1189
|
+
are permitted provided that the following conditions are met:
|
1190
|
+
|
1191
|
+
* Redistributions of source code must retain the above copyright notice,
|
1192
|
+
this list of conditions and the following disclaimer.
|
1193
|
+
|
1194
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
1195
|
+
this list of conditions and the following disclaimer in the documentation
|
1196
|
+
and/or other materials provided with the distribution.
|
1197
|
+
|
1198
|
+
* Neither the name of Gengo, Inc. nor the names of its
|
1199
|
+
contributors may be used to endorse or promote products derived from this
|
1200
|
+
software without specific prior written permission.
|
1201
|
+
|
1202
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
1203
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
1204
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
1205
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
1206
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
1207
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
1208
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
1209
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1210
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
1211
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
941
1212
|
|
942
1213
|
--------------------------------------------------------------------------------
|
943
1214
|
|
@@ -967,12 +1238,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
967
1238
|
SOFTWARE.
|
968
1239
|
|
969
1240
|
|
970
|
-
--------------------------------------------------------------------------------
|
971
|
-
|
972
|
-
3rdparty dependency github.com/jmespath/go-jmespath
|
973
|
-
is statically linked in certain binary distributions, like the Python wheels.
|
974
|
-
github.com/jmespath/go-jmespath is under the Apache-2.0 license.
|
975
|
-
|
976
1241
|
--------------------------------------------------------------------------------
|
977
1242
|
|
978
1243
|
3rdparty dependency github.com/klauspost/compress
|
@@ -1310,10 +1575,82 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1310
1575
|
|
1311
1576
|
--------------------------------------------------------------------------------
|
1312
1577
|
|
1578
|
+
3rdparty dependency go.opentelemetry.io/auto/sdk
|
1579
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1580
|
+
go.opentelemetry.io/auto/sdk is under the Apache-2.0 license.
|
1581
|
+
|
1582
|
+
--------------------------------------------------------------------------------
|
1583
|
+
|
1584
|
+
3rdparty dependency go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
|
1585
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1586
|
+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc is under the Apache-2.0 license.
|
1587
|
+
|
1588
|
+
--------------------------------------------------------------------------------
|
1589
|
+
|
1590
|
+
3rdparty dependency go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
|
1591
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1592
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp is under the Apache-2.0 license.
|
1593
|
+
|
1594
|
+
--------------------------------------------------------------------------------
|
1595
|
+
|
1596
|
+
3rdparty dependency go.opentelemetry.io/otel
|
1597
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1598
|
+
go.opentelemetry.io/otel is under the Apache-2.0 license.
|
1599
|
+
|
1600
|
+
--------------------------------------------------------------------------------
|
1601
|
+
|
1602
|
+
3rdparty dependency go.opentelemetry.io/otel/exporters/otlp/otlptrace
|
1603
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1604
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace is under the Apache-2.0 license.
|
1605
|
+
|
1606
|
+
--------------------------------------------------------------------------------
|
1607
|
+
|
1608
|
+
3rdparty dependency go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
|
1609
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1610
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc is under the Apache-2.0 license.
|
1611
|
+
|
1612
|
+
--------------------------------------------------------------------------------
|
1613
|
+
|
1614
|
+
3rdparty dependency go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
|
1615
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1616
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp is under the Apache-2.0 license.
|
1617
|
+
|
1618
|
+
--------------------------------------------------------------------------------
|
1619
|
+
|
1620
|
+
3rdparty dependency go.opentelemetry.io/otel/exporters/stdout/stdouttrace
|
1621
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1622
|
+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace is under the Apache-2.0 license.
|
1623
|
+
|
1624
|
+
--------------------------------------------------------------------------------
|
1625
|
+
|
1626
|
+
3rdparty dependency go.opentelemetry.io/otel/metric
|
1627
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1628
|
+
go.opentelemetry.io/otel/metric is under the Apache-2.0 license.
|
1629
|
+
|
1630
|
+
--------------------------------------------------------------------------------
|
1631
|
+
|
1632
|
+
3rdparty dependency go.opentelemetry.io/otel/sdk
|
1633
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1634
|
+
go.opentelemetry.io/otel/sdk is under the Apache-2.0 license.
|
1635
|
+
|
1636
|
+
--------------------------------------------------------------------------------
|
1637
|
+
|
1638
|
+
3rdparty dependency go.opentelemetry.io/otel/trace
|
1639
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1640
|
+
go.opentelemetry.io/otel/trace is under the Apache-2.0 license.
|
1641
|
+
|
1642
|
+
--------------------------------------------------------------------------------
|
1643
|
+
|
1644
|
+
3rdparty dependency go.opentelemetry.io/proto/otlp
|
1645
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1646
|
+
go.opentelemetry.io/proto/otlp is under the Apache-2.0 license.
|
1647
|
+
|
1648
|
+
--------------------------------------------------------------------------------
|
1649
|
+
|
1313
1650
|
3rdparty dependency golang.org/x/crypto
|
1314
1651
|
is statically linked in certain binary distributions, like the Python wheels.
|
1315
1652
|
golang.org/x/crypto is under the BSD-3-Clause license.
|
1316
|
-
Copyright
|
1653
|
+
Copyright 2009 The Go Authors.
|
1317
1654
|
|
1318
1655
|
Redistribution and use in source and binary forms, with or without
|
1319
1656
|
modification, are permitted provided that the following conditions are
|
@@ -1325,7 +1662,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1325
1662
|
copyright notice, this list of conditions and the following disclaimer
|
1326
1663
|
in the documentation and/or other materials provided with the
|
1327
1664
|
distribution.
|
1328
|
-
* Neither the name of Google
|
1665
|
+
* Neither the name of Google LLC nor the names of its
|
1329
1666
|
contributors may be used to endorse or promote products derived from
|
1330
1667
|
this software without specific prior written permission.
|
1331
1668
|
|
@@ -1346,7 +1683,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1346
1683
|
3rdparty dependency golang.org/x/exp
|
1347
1684
|
is statically linked in certain binary distributions, like the Python wheels.
|
1348
1685
|
golang.org/x/exp is under the BSD-3-Clause license.
|
1349
|
-
Copyright
|
1686
|
+
Copyright 2009 The Go Authors.
|
1350
1687
|
|
1351
1688
|
Redistribution and use in source and binary forms, with or without
|
1352
1689
|
modification, are permitted provided that the following conditions are
|
@@ -1358,7 +1695,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1358
1695
|
copyright notice, this list of conditions and the following disclaimer
|
1359
1696
|
in the documentation and/or other materials provided with the
|
1360
1697
|
distribution.
|
1361
|
-
* Neither the name of Google
|
1698
|
+
* Neither the name of Google LLC nor the names of its
|
1362
1699
|
contributors may be used to endorse or promote products derived from
|
1363
1700
|
this software without specific prior written permission.
|
1364
1701
|
|
@@ -1379,7 +1716,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1379
1716
|
3rdparty dependency golang.org/x/mod/semver
|
1380
1717
|
is statically linked in certain binary distributions, like the Python wheels.
|
1381
1718
|
golang.org/x/mod/semver is under the BSD-3-Clause license.
|
1382
|
-
Copyright
|
1719
|
+
Copyright 2009 The Go Authors.
|
1383
1720
|
|
1384
1721
|
Redistribution and use in source and binary forms, with or without
|
1385
1722
|
modification, are permitted provided that the following conditions are
|
@@ -1391,7 +1728,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1391
1728
|
copyright notice, this list of conditions and the following disclaimer
|
1392
1729
|
in the documentation and/or other materials provided with the
|
1393
1730
|
distribution.
|
1394
|
-
* Neither the name of Google
|
1731
|
+
* Neither the name of Google LLC nor the names of its
|
1395
1732
|
contributors may be used to endorse or promote products derived from
|
1396
1733
|
this software without specific prior written permission.
|
1397
1734
|
|
@@ -1412,7 +1749,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1412
1749
|
3rdparty dependency golang.org/x/net
|
1413
1750
|
is statically linked in certain binary distributions, like the Python wheels.
|
1414
1751
|
golang.org/x/net is under the BSD-3-Clause license.
|
1415
|
-
Copyright
|
1752
|
+
Copyright 2009 The Go Authors.
|
1416
1753
|
|
1417
1754
|
Redistribution and use in source and binary forms, with or without
|
1418
1755
|
modification, are permitted provided that the following conditions are
|
@@ -1424,7 +1761,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1424
1761
|
copyright notice, this list of conditions and the following disclaimer
|
1425
1762
|
in the documentation and/or other materials provided with the
|
1426
1763
|
distribution.
|
1427
|
-
* Neither the name of Google
|
1764
|
+
* Neither the name of Google LLC nor the names of its
|
1428
1765
|
contributors may be used to endorse or promote products derived from
|
1429
1766
|
this software without specific prior written permission.
|
1430
1767
|
|
@@ -1442,10 +1779,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1442
1779
|
|
1443
1780
|
--------------------------------------------------------------------------------
|
1444
1781
|
|
1445
|
-
3rdparty dependency golang.org/x/
|
1782
|
+
3rdparty dependency golang.org/x/oauth2
|
1446
1783
|
is statically linked in certain binary distributions, like the Python wheels.
|
1447
|
-
golang.org/x/
|
1448
|
-
Copyright
|
1784
|
+
golang.org/x/oauth2 is under the BSD-3-Clause license.
|
1785
|
+
Copyright 2009 The Go Authors.
|
1449
1786
|
|
1450
1787
|
Redistribution and use in source and binary forms, with or without
|
1451
1788
|
modification, are permitted provided that the following conditions are
|
@@ -1457,7 +1794,40 @@ notice, this list of conditions and the following disclaimer.
|
|
1457
1794
|
copyright notice, this list of conditions and the following disclaimer
|
1458
1795
|
in the documentation and/or other materials provided with the
|
1459
1796
|
distribution.
|
1460
|
-
* Neither the name of Google
|
1797
|
+
* Neither the name of Google LLC nor the names of its
|
1798
|
+
contributors may be used to endorse or promote products derived from
|
1799
|
+
this software without specific prior written permission.
|
1800
|
+
|
1801
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1802
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1803
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1804
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1805
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1806
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1807
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1808
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1809
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1810
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1811
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1812
|
+
|
1813
|
+
--------------------------------------------------------------------------------
|
1814
|
+
|
1815
|
+
3rdparty dependency golang.org/x/sync
|
1816
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1817
|
+
golang.org/x/sync is under the BSD-3-Clause license.
|
1818
|
+
Copyright 2009 The Go Authors.
|
1819
|
+
|
1820
|
+
Redistribution and use in source and binary forms, with or without
|
1821
|
+
modification, are permitted provided that the following conditions are
|
1822
|
+
met:
|
1823
|
+
|
1824
|
+
* Redistributions of source code must retain the above copyright
|
1825
|
+
notice, this list of conditions and the following disclaimer.
|
1826
|
+
* Redistributions in binary form must reproduce the above
|
1827
|
+
copyright notice, this list of conditions and the following disclaimer
|
1828
|
+
in the documentation and/or other materials provided with the
|
1829
|
+
distribution.
|
1830
|
+
* Neither the name of Google LLC nor the names of its
|
1461
1831
|
contributors may be used to endorse or promote products derived from
|
1462
1832
|
this software without specific prior written permission.
|
1463
1833
|
|
@@ -1478,7 +1848,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1478
1848
|
3rdparty dependency golang.org/x/sys
|
1479
1849
|
is statically linked in certain binary distributions, like the Python wheels.
|
1480
1850
|
golang.org/x/sys is under the BSD-3-Clause license.
|
1481
|
-
Copyright
|
1851
|
+
Copyright 2009 The Go Authors.
|
1482
1852
|
|
1483
1853
|
Redistribution and use in source and binary forms, with or without
|
1484
1854
|
modification, are permitted provided that the following conditions are
|
@@ -1490,7 +1860,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1490
1860
|
copyright notice, this list of conditions and the following disclaimer
|
1491
1861
|
in the documentation and/or other materials provided with the
|
1492
1862
|
distribution.
|
1493
|
-
* Neither the name of Google
|
1863
|
+
* Neither the name of Google LLC nor the names of its
|
1494
1864
|
contributors may be used to endorse or promote products derived from
|
1495
1865
|
this software without specific prior written permission.
|
1496
1866
|
|
@@ -1511,7 +1881,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1511
1881
|
3rdparty dependency golang.org/x/term
|
1512
1882
|
is statically linked in certain binary distributions, like the Python wheels.
|
1513
1883
|
golang.org/x/term is under the BSD-3-Clause license.
|
1514
|
-
Copyright
|
1884
|
+
Copyright 2009 The Go Authors.
|
1515
1885
|
|
1516
1886
|
Redistribution and use in source and binary forms, with or without
|
1517
1887
|
modification, are permitted provided that the following conditions are
|
@@ -1523,7 +1893,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1523
1893
|
copyright notice, this list of conditions and the following disclaimer
|
1524
1894
|
in the documentation and/or other materials provided with the
|
1525
1895
|
distribution.
|
1526
|
-
* Neither the name of Google
|
1896
|
+
* Neither the name of Google LLC nor the names of its
|
1527
1897
|
contributors may be used to endorse or promote products derived from
|
1528
1898
|
this software without specific prior written permission.
|
1529
1899
|
|
@@ -1544,7 +1914,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1544
1914
|
3rdparty dependency golang.org/x/text
|
1545
1915
|
is statically linked in certain binary distributions, like the Python wheels.
|
1546
1916
|
golang.org/x/text is under the BSD-3-Clause license.
|
1547
|
-
Copyright
|
1917
|
+
Copyright 2009 The Go Authors.
|
1548
1918
|
|
1549
1919
|
Redistribution and use in source and binary forms, with or without
|
1550
1920
|
modification, are permitted provided that the following conditions are
|
@@ -1556,7 +1926,40 @@ notice, this list of conditions and the following disclaimer.
|
|
1556
1926
|
copyright notice, this list of conditions and the following disclaimer
|
1557
1927
|
in the documentation and/or other materials provided with the
|
1558
1928
|
distribution.
|
1559
|
-
* Neither the name of Google
|
1929
|
+
* Neither the name of Google LLC nor the names of its
|
1930
|
+
contributors may be used to endorse or promote products derived from
|
1931
|
+
this software without specific prior written permission.
|
1932
|
+
|
1933
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1934
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1935
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1936
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1937
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1938
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1939
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1940
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1941
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1942
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1943
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1944
|
+
|
1945
|
+
--------------------------------------------------------------------------------
|
1946
|
+
|
1947
|
+
3rdparty dependency golang.org/x/time/rate
|
1948
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1949
|
+
golang.org/x/time/rate is under the BSD-3-Clause license.
|
1950
|
+
Copyright 2009 The Go Authors.
|
1951
|
+
|
1952
|
+
Redistribution and use in source and binary forms, with or without
|
1953
|
+
modification, are permitted provided that the following conditions are
|
1954
|
+
met:
|
1955
|
+
|
1956
|
+
* Redistributions of source code must retain the above copyright
|
1957
|
+
notice, this list of conditions and the following disclaimer.
|
1958
|
+
* Redistributions in binary form must reproduce the above
|
1959
|
+
copyright notice, this list of conditions and the following disclaimer
|
1960
|
+
in the documentation and/or other materials provided with the
|
1961
|
+
distribution.
|
1962
|
+
* Neither the name of Google LLC nor the names of its
|
1560
1963
|
contributors may be used to endorse or promote products derived from
|
1561
1964
|
this software without specific prior written permission.
|
1562
1965
|
|
@@ -1577,7 +1980,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1577
1980
|
3rdparty dependency golang.org/x/tools
|
1578
1981
|
is statically linked in certain binary distributions, like the Python wheels.
|
1579
1982
|
golang.org/x/tools is under the BSD-3-Clause license.
|
1580
|
-
Copyright
|
1983
|
+
Copyright 2009 The Go Authors.
|
1581
1984
|
|
1582
1985
|
Redistribution and use in source and binary forms, with or without
|
1583
1986
|
modification, are permitted provided that the following conditions are
|
@@ -1589,7 +1992,7 @@ notice, this list of conditions and the following disclaimer.
|
|
1589
1992
|
copyright notice, this list of conditions and the following disclaimer
|
1590
1993
|
in the documentation and/or other materials provided with the
|
1591
1994
|
distribution.
|
1592
|
-
* Neither the name of Google
|
1995
|
+
* Neither the name of Google LLC nor the names of its
|
1593
1996
|
contributors may be used to endorse or promote products derived from
|
1594
1997
|
this software without specific prior written permission.
|
1595
1998
|
|
@@ -1610,7 +2013,73 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1610
2013
|
3rdparty dependency golang.org/x/xerrors
|
1611
2014
|
is statically linked in certain binary distributions, like the Python wheels.
|
1612
2015
|
golang.org/x/xerrors is under the BSD-3-Clause license.
|
1613
|
-
Copyright
|
2016
|
+
Copyright 2019 The Go Authors.
|
2017
|
+
|
2018
|
+
Redistribution and use in source and binary forms, with or without
|
2019
|
+
modification, are permitted provided that the following conditions are
|
2020
|
+
met:
|
2021
|
+
|
2022
|
+
* Redistributions of source code must retain the above copyright
|
2023
|
+
notice, this list of conditions and the following disclaimer.
|
2024
|
+
* Redistributions in binary form must reproduce the above
|
2025
|
+
copyright notice, this list of conditions and the following disclaimer
|
2026
|
+
in the documentation and/or other materials provided with the
|
2027
|
+
distribution.
|
2028
|
+
* Neither the name of Google LLC nor the names of its
|
2029
|
+
contributors may be used to endorse or promote products derived from
|
2030
|
+
this software without specific prior written permission.
|
2031
|
+
|
2032
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
2033
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2034
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2035
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2036
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2037
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2038
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2039
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
2040
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
2041
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2042
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2043
|
+
|
2044
|
+
--------------------------------------------------------------------------------
|
2045
|
+
|
2046
|
+
3rdparty dependency google.golang.org/api
|
2047
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
2048
|
+
google.golang.org/api is under the BSD-3-Clause license.
|
2049
|
+
Copyright (c) 2011 Google Inc. All rights reserved.
|
2050
|
+
|
2051
|
+
Redistribution and use in source and binary forms, with or without
|
2052
|
+
modification, are permitted provided that the following conditions are
|
2053
|
+
met:
|
2054
|
+
|
2055
|
+
* Redistributions of source code must retain the above copyright
|
2056
|
+
notice, this list of conditions and the following disclaimer.
|
2057
|
+
* Redistributions in binary form must reproduce the above
|
2058
|
+
copyright notice, this list of conditions and the following disclaimer
|
2059
|
+
in the documentation and/or other materials provided with the
|
2060
|
+
distribution.
|
2061
|
+
* Neither the name of Google Inc. nor the names of its
|
2062
|
+
contributors may be used to endorse or promote products derived from
|
2063
|
+
this software without specific prior written permission.
|
2064
|
+
|
2065
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
2066
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2067
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2068
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2069
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2070
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2071
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2072
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
2073
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
2074
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2075
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2076
|
+
|
2077
|
+
--------------------------------------------------------------------------------
|
2078
|
+
|
2079
|
+
3rdparty dependency google.golang.org/api/internal/third_party/uritemplates
|
2080
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
2081
|
+
google.golang.org/api/internal/third_party/uritemplates is under the BSD-3-Clause license.
|
2082
|
+
Copyright (c) 2013 Joshua Tacoma. All rights reserved.
|
1614
2083
|
|
1615
2084
|
Redistribution and use in source and binary forms, with or without
|
1616
2085
|
modification, are permitted provided that the following conditions are
|
@@ -1640,9 +2109,21 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1640
2109
|
|
1641
2110
|
--------------------------------------------------------------------------------
|
1642
2111
|
|
1643
|
-
3rdparty dependency google.golang.org/genproto/googleapis/
|
2112
|
+
3rdparty dependency google.golang.org/genproto/googleapis/api
|
2113
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
2114
|
+
google.golang.org/genproto/googleapis/api is under the Apache-2.0 license.
|
2115
|
+
|
2116
|
+
--------------------------------------------------------------------------------
|
2117
|
+
|
2118
|
+
3rdparty dependency google.golang.org/genproto/googleapis/rpc
|
2119
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
2120
|
+
google.golang.org/genproto/googleapis/rpc is under the Apache-2.0 license.
|
2121
|
+
|
2122
|
+
--------------------------------------------------------------------------------
|
2123
|
+
|
2124
|
+
3rdparty dependency google.golang.org/genproto/googleapis/type/expr
|
1644
2125
|
is statically linked in certain binary distributions, like the Python wheels.
|
1645
|
-
google.golang.org/genproto/googleapis/
|
2126
|
+
google.golang.org/genproto/googleapis/type/expr is under the Apache-2.0 license.
|
1646
2127
|
|
1647
2128
|
--------------------------------------------------------------------------------
|
1648
2129
|
|
data/README.md
CHANGED
@@ -23,7 +23,20 @@ Red ADBC is the Ruby bindings of ADBC GLib.
|
|
23
23
|
|
24
24
|
## How to install
|
25
25
|
|
26
|
+
If you want to install Red ADBC by Bundler, you can add the following
|
27
|
+
to your `Gemfile`:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
plugin "rubygems-requirements-system"
|
31
|
+
|
32
|
+
gem "red-adbc"
|
33
|
+
```
|
34
|
+
|
35
|
+
If you want to install Red ADBC by RubyGems, you can use the following
|
36
|
+
command line:
|
37
|
+
|
26
38
|
```console
|
39
|
+
$ gem install rubygems-requirements-system
|
27
40
|
$ gem install red-adbc
|
28
41
|
```
|
29
42
|
|
data/lib/adbc/loader.rb
CHANGED
@@ -23,9 +23,17 @@ module ADBC
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
+
def initialize(...)
|
27
|
+
super
|
28
|
+
@load_flags_default = nil
|
29
|
+
end
|
30
|
+
|
26
31
|
private
|
27
32
|
def post_load(repository, namespace)
|
28
33
|
require_libraries
|
34
|
+
|
35
|
+
load_flags = @base_module.const_get(:LoadFlags)
|
36
|
+
load_flags.const_set(:DEFAULT, load_flags.new(@load_flags_default))
|
29
37
|
end
|
30
38
|
|
31
39
|
def require_libraries
|
@@ -41,6 +49,15 @@ module ADBC
|
|
41
49
|
super
|
42
50
|
end
|
43
51
|
end
|
52
|
+
|
53
|
+
def load_constant_info(info)
|
54
|
+
case info.name
|
55
|
+
when "LOAD_FLAGS_DEFAULT"
|
56
|
+
@load_flags_default = info.value
|
57
|
+
else
|
58
|
+
super
|
59
|
+
end
|
60
|
+
end
|
44
61
|
end
|
45
62
|
end
|
46
63
|
|
data/lib/adbc/version.rb
CHANGED
data/lib/adbc.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: red-adbc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apache Arrow Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: red-arrow
|
@@ -29,14 +29,12 @@ description: ADBC (Apache Arrow Database Connectivity) is an API standard for da
|
|
29
29
|
email:
|
30
30
|
- dev@arrow.apache.org
|
31
31
|
executables: []
|
32
|
-
extensions:
|
33
|
-
- dependency-check/Rakefile
|
32
|
+
extensions: []
|
34
33
|
extra_rdoc_files: []
|
35
34
|
files:
|
36
35
|
- LICENSE.txt
|
37
36
|
- NOTICE.txt
|
38
37
|
- README.md
|
39
|
-
- dependency-check/Rakefile
|
40
38
|
- lib/adbc.rb
|
41
39
|
- lib/adbc/arrow-connection.rb
|
42
40
|
- lib/adbc/arrow-statement.rb
|
@@ -66,7 +64,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
64
|
- - ">="
|
67
65
|
- !ruby/object:Gem::Version
|
68
66
|
version: '0'
|
69
|
-
requirements:
|
67
|
+
requirements:
|
68
|
+
- 'system: adbc-arrow-glib>=1.7.0: debian: libadbc-arrow-glib-dev'
|
69
|
+
- 'system: adbc-arrow-glib>=1.7.0: rhel: adbc-arrow-glib-devel'
|
70
70
|
rubygems_version: 3.3.20
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
data/dependency-check/Rakefile
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
#
|
3
|
-
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
-
# or more contributor license agreements. See the NOTICE file
|
5
|
-
# distributed with this work for additional information
|
6
|
-
# regarding copyright ownership. The ASF licenses this file
|
7
|
-
# to you under the Apache License, Version 2.0 (the
|
8
|
-
# "License"); you may not use this file except in compliance
|
9
|
-
# with the License. You may obtain a copy of the License at
|
10
|
-
#
|
11
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
#
|
13
|
-
# Unless required by applicable law or agreed to in writing,
|
14
|
-
# software distributed under the License is distributed on an
|
15
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
-
# KIND, either express or implied. See the License for the
|
17
|
-
# specific language governing permissions and limitations
|
18
|
-
# under the License.
|
19
|
-
|
20
|
-
require "pkg-config"
|
21
|
-
require "native-package-installer"
|
22
|
-
require_relative "../lib/adbc/version"
|
23
|
-
|
24
|
-
case RUBY_PLATFORM
|
25
|
-
when /mingw|mswin/
|
26
|
-
task :default => "nothing"
|
27
|
-
else
|
28
|
-
task :default => "dependency:check"
|
29
|
-
end
|
30
|
-
|
31
|
-
task :nothing do
|
32
|
-
end
|
33
|
-
|
34
|
-
namespace :dependency do
|
35
|
-
desc "Check dependency"
|
36
|
-
task :check do
|
37
|
-
unless PKGConfig.check_version?("adbc-arrow-glib",
|
38
|
-
ADBC::Version::MAJOR,
|
39
|
-
ADBC::Version::MINOR,
|
40
|
-
ADBC::Version::MICRO)
|
41
|
-
unless NativePackageInstaller.install(debian: "libadbc-arrow-glib-dev",
|
42
|
-
redhat: "adbc-arrow-glib-devel")
|
43
|
-
exit(false)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|