diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a5cd20..c5cc0a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Only accretive/fixative changes will be made from now on. -* 1.3.955 in progress +* 1.3.955 -- 2024-10-06 * Address [#285](https://github.com/seancorfield/next-jdbc/issues/285) by setting the default Clojure version to the earliest supported (1.10.3) to give a better hint to users. * Update PostgreSQL **Tips & Tricks** example code to fix possible NPE. PR [#284](https://github.com/seancorfield/next-jdbc/pull/284) from [@ExNexu](https://github.com/ExNexu). * Address [#283](https://github.com/seancorfield/next-jdbc/issues/283) by adding a note in the documentation, linking to the PostgreSQL bug report about `ANY(array)`. diff --git a/README.md b/README.md index c30717b..5c0338d 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser ## License -Copyright © 2018-2021 Sean Corfield +Copyright © 2018-2024 Sean Corfield Distributed under the Eclipse Public License version 1.0. diff --git a/src/next/jdbc.clj b/src/next/jdbc.clj index 790ba6b..8016544 100644 --- a/src/next/jdbc.clj +++ b/src/next/jdbc.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2023 Sean Corfield, all rights reserved +;; copyright (c) 2018-2024 Sean Corfield, all rights reserved (ns next.jdbc "The public API of the next generation java.jdbc library. diff --git a/src/next/jdbc/datafy.clj b/src/next/jdbc/datafy.clj index 6d9e379..b6ac23f 100644 --- a/src/next/jdbc/datafy.clj +++ b/src/next/jdbc/datafy.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.datafy "This namespace provides datafication of several JDBC object types, diff --git a/src/next/jdbc/date_time.clj b/src/next/jdbc/date_time.clj index 15a5b8c..e3be63c 100644 --- a/src/next/jdbc/date_time.clj +++ b/src/next/jdbc/date_time.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.date-time "Optional namespace that extends `next.jdbc.prepare/SettableParameter` diff --git a/src/next/jdbc/default_options.clj b/src/next/jdbc/default_options.clj index 89f9d82..5e02965 100644 --- a/src/next/jdbc/default_options.clj +++ b/src/next/jdbc/default_options.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns ^:no-doc next.jdbc.default-options "Implementation of default options logic." diff --git a/src/next/jdbc/plan.clj b/src/next/jdbc/plan.clj index 1206a5a..51f1c26 100644 --- a/src/next/jdbc/plan.clj +++ b/src/next/jdbc/plan.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.plan "Some helper functions that make common operations with `next.jdbc/plan` diff --git a/src/next/jdbc/prepare.clj b/src/next/jdbc/prepare.clj index b424af6..660a7d8 100644 --- a/src/next/jdbc/prepare.clj +++ b/src/next/jdbc/prepare.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2021 Sean Corfield, all rights reserved +;; copyright (c) 2018-2024 Sean Corfield, all rights reserved (ns next.jdbc.prepare "Mostly an implementation namespace for how `PreparedStatement` objects are diff --git a/src/next/jdbc/protocols.clj b/src/next/jdbc/protocols.clj index a664646..cb53472 100644 --- a/src/next/jdbc/protocols.clj +++ b/src/next/jdbc/protocols.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2021 Sean Corfield, all rights reserved +;; copyright (c) 2018-2024 Sean Corfield, all rights reserved (ns next.jdbc.protocols "This is the extensible core of the next generation java.jdbc library. diff --git a/src/next/jdbc/quoted.clj b/src/next/jdbc/quoted.clj index b92251f..ed5cde8 100644 --- a/src/next/jdbc/quoted.clj +++ b/src/next/jdbc/quoted.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2023 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.quoted "Provides functions for use with the `:table-fn` and `:column-fn` options diff --git a/src/next/jdbc/specs.clj b/src/next/jdbc/specs.clj index 6d20c92..45c6f65 100644 --- a/src/next/jdbc/specs.clj +++ b/src/next/jdbc/specs.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2023 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.specs "Specs for the core API of next.jdbc. diff --git a/src/next/jdbc/sql_logging.clj b/src/next/jdbc/sql_logging.clj index ef36348..4ae8067 100644 --- a/src/next/jdbc/sql_logging.clj +++ b/src/next/jdbc/sql_logging.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2021-2023 Sean Corfield, all rights reserved +;; copyright (c) 2021-2024 Sean Corfield, all rights reserved (ns ^:no-doc next.jdbc.sql-logging "Implementation of sql-logging logic." diff --git a/src/next/jdbc/transaction.clj b/src/next/jdbc/transaction.clj index c927222..d73ed68 100644 --- a/src/next/jdbc/transaction.clj +++ b/src/next/jdbc/transaction.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2021 Sean Corfield, all rights reserved +;; copyright (c) 2018-2024 Sean Corfield, all rights reserved (ns next.jdbc.transaction "Implementation of SQL transaction logic. diff --git a/test/next/jdbc/connection_string_test.clj b/test/next/jdbc/connection_string_test.clj index 56a7e74..66ed1d8 100644 --- a/test/next/jdbc/connection_string_test.clj +++ b/test/next/jdbc/connection_string_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.connection-string-test "Tests for the main hash map spec to JDBC URL logic and the get-datasource diff --git a/test/next/jdbc/connection_test.clj b/test/next/jdbc/connection_test.clj index a867616..af8e9eb 100644 --- a/test/next/jdbc/connection_test.clj +++ b/test/next/jdbc/connection_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.connection-test "Tests for the main hash map spec to JDBC URL logic and the get-datasource diff --git a/test/next/jdbc/datafy_test.clj b/test/next/jdbc/datafy_test.clj index d2b8369..35701b1 100644 --- a/test/next/jdbc/datafy_test.clj +++ b/test/next/jdbc/datafy_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.datafy-test "Tests for the datafy extensions over JDBC types." diff --git a/test/next/jdbc/date_time_test.clj b/test/next/jdbc/date_time_test.clj index c8805b0..7040561 100644 --- a/test/next/jdbc/date_time_test.clj +++ b/test/next/jdbc/date_time_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.date-time-test "Date/time parameter auto-conversion tests. diff --git a/test/next/jdbc/default_options_test.clj b/test/next/jdbc/default_options_test.clj index 2636a86..2d2f5e2 100644 --- a/test/next/jdbc/default_options_test.clj +++ b/test/next/jdbc/default_options_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.default-options-test "Stub test namespace for default options. Nothing can really be tested diff --git a/test/next/jdbc/optional_test.clj b/test/next/jdbc/optional_test.clj index 6049447..50444cf 100644 --- a/test/next/jdbc/optional_test.clj +++ b/test/next/jdbc/optional_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.optional-test "Test namespace for the optional builder functions." diff --git a/test/next/jdbc/plan_test.clj b/test/next/jdbc/plan_test.clj index 255f50f..51012f0 100644 --- a/test/next/jdbc/plan_test.clj +++ b/test/next/jdbc/plan_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.plan-test "Tests for the plan helpers." diff --git a/test/next/jdbc/prepare_test.clj b/test/next/jdbc/prepare_test.clj index d0f1c86..d8e3fad 100644 --- a/test/next/jdbc/prepare_test.clj +++ b/test/next/jdbc/prepare_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.prepare-test "Stub test namespace for PreparedStatement creation etc. diff --git a/test/next/jdbc/protocols_test.clj b/test/next/jdbc/protocols_test.clj index bb051be..541335f 100644 --- a/test/next/jdbc/protocols_test.clj +++ b/test/next/jdbc/protocols_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.protocols-test "Stub test namespace for low-level protocols. Nothing can really be tested diff --git a/test/next/jdbc/quoted_test.clj b/test/next/jdbc/quoted_test.clj index 67d18cd..8a1a233 100644 --- a/test/next/jdbc/quoted_test.clj +++ b/test/next/jdbc/quoted_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.quoted-test "Basic tests for quoting strategies. These are also tested indirectly diff --git a/test/next/jdbc/result_set_test.clj b/test/next/jdbc/result_set_test.clj index 69bdcce..033c910 100644 --- a/test/next/jdbc/result_set_test.clj +++ b/test/next/jdbc/result_set_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.result-set-test "Test namespace for the result set functions. diff --git a/test/next/jdbc/specs_test.clj b/test/next/jdbc/specs_test.clj index 8f01097..20f7d09 100644 --- a/test/next/jdbc/specs_test.clj +++ b/test/next/jdbc/specs_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.specs-test "Stub test namespace for the specs. diff --git a/test/next/jdbc/sql/builder_test.clj b/test/next/jdbc/sql/builder_test.clj index 9c6f2ff..93a5853 100644 --- a/test/next/jdbc/sql/builder_test.clj +++ b/test/next/jdbc/sql/builder_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.sql.builder-test "Tests for the SQL string building functions in next.jdbc.sql.builder." diff --git a/test/next/jdbc/test_fixtures.clj b/test/next/jdbc/test_fixtures.clj index 1c31902..b5fde10 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.test-fixtures "Multi-database testing fixtures." diff --git a/test/next/jdbc/transaction_test.clj b/test/next/jdbc/transaction_test.clj index 8d68332..0bba1d2 100644 --- a/test/next/jdbc/transaction_test.clj +++ b/test/next/jdbc/transaction_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc.transaction-test "Stub test namespace for transaction handling." diff --git a/test/next/jdbc/types_test.clj b/test/next/jdbc/types_test.clj index 5a76d20..0594ede 100644 --- a/test/next/jdbc/types_test.clj +++ b/test/next/jdbc/types_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020-2021 Sean Corfield, all rights reserved +;; copyright (c) 2020-2024 Sean Corfield, all rights reserved (ns next.jdbc.types-test "Some tests for the type-assist functions." diff --git a/test/next/jdbc_test.clj b/test/next/jdbc_test.clj index 9bbb640..f6eaab7 100644 --- a/test/next/jdbc_test.clj +++ b/test/next/jdbc_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2021 Sean Corfield, all rights reserved +;; copyright (c) 2019-2024 Sean Corfield, all rights reserved (ns next.jdbc-test "Basic tests for the primary API of `next.jdbc`."