Hello community,
here is the log from the commit of package ghc-amazonka-dynamodb for
openSUSE:Factory checked in at 2017-03-24 02:11:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-amazonka-dynamodb (Old)
and /work/SRC/openSUSE:Factory/.ghc-amazonka-dynamodb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-amazonka-dynamodb"
Fri Mar 24 02:11:35 2017 rev:2 rq:461559 version:1.4.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-amazonka-dynamodb/ghc-amazonka-dynamodb.changes
2017-02-03 17:38:07.969035021 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-amazonka-dynamodb.new/ghc-amazonka-dynamodb.changes
2017-03-24 02:11:36.277383144 +0100
@@ -1,0 +2,5 @@
+Sun Feb 12 14:20:00 UTC 2017 - [email protected]
+
+- Update to version 1.4.5 with cabal2obs.
+
+-------------------------------------------------------------------
Old:
----
amazonka-dynamodb-1.4.3.tar.gz
New:
----
amazonka-dynamodb-1.4.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-amazonka-dynamodb.spec ++++++
--- /var/tmp/diff_new_pack.Jvkbu5/_old 2017-03-24 02:11:36.721320331 +0100
+++ /var/tmp/diff_new_pack.Jvkbu5/_new 2017-03-24 02:11:36.725319766 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-amazonka-dynamodb
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%global pkg_name amazonka-dynamodb
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 1.4.3
+Version: 1.4.5
Release: 0
Summary: Amazon DynamoDB SDK
License: MPL-2.0
@@ -41,105 +41,19 @@
%endif
%description
-Amazon DynamoDB This is the Amazon DynamoDB API Reference. This guide provides
-descriptions of the low-level DynamoDB API. This guide is intended for use with
-the following DynamoDB documentation: -
-<http://docs.aws.amazon.com/amazondynamodb/latest/gettingstartedguide/ Amazon
-DynamoDB Getting Started Guide> - provides hands-on exercises that help you
-learn the basics of working with DynamoDB. /If you are new to DynamoDB, we
-recommend that you begin with the Getting Started Guide./ -
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ Amazon
-DynamoDB Developer Guide> - contains detailed information about DynamoDB
-concepts, usage, and best practices. -
-<http://docs.aws.amazon.com/dynamodbstreams/latest/APIReference/ Amazon
-DynamoDB Streams API Reference> - provides descriptions and samples of the
-DynamoDB Streams API. (For more information, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html
-Capturing Table Activity with DynamoDB Streams> in the Amazon DynamoDB
-Developer Guide.) Instead of making the requests to the low-level DynamoDB API
-directly from your application, we recommend that you use the AWS Software
-Development Kits (SDKs). The easy-to-use libraries in the AWS SDKs make it
-unnecessary to call the low-level DynamoDB API directly from your application.
-The libraries take care of request authentication, serialization, and
-connection management. For more information, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/UsingAWSSDK.html
-Using the AWS SDKs with DynamoDB> in the Amazon DynamoDB Developer Guide.
-If you decide to code against the low-level DynamoDB API directly, you will
-need to write the necessary code to authenticate your requests. For more
-information on signing your requests, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/API.html Using
-the DynamoDB API> in the /Amazon DynamoDB Developer Guide/. The following are
-short descriptions of each low-level API action, organized by function.
-__Managing Tables__ - /CreateTable/ - Creates a table with user-specified
-provisioned throughput settings. You must define a primary key for the table -
-either a simple primary key (partition key), or a composite primary key
-(partition key and sort key). Optionally, you can create one or more secondary
-indexes, which provide fast data access using non-key attributes. -
-/DescribeTable/ - Returns metadata for a table, such as table size, status, and
-index information. - /UpdateTable/ - Modifies the provisioned throughput
-settings for a table. Optionally, you can modify the provisioned throughput
-settings for global secondary indexes on the table. - /ListTables/ - Returns a
-list of all tables associated with the current AWS account and endpoint.
-- /DeleteTable/ - Deletes a table and all of its indexes. For conceptual
-information about managing tables, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html
-Working with Tables> in the /Amazon DynamoDB Developer Guide/.
-__Reading Data__ - /GetItem/ - Returns a set of attributes for the item that
-has a given primary key. By default, /GetItem/ performs an eventually
-consistent read; however, applications can request a strongly consistent read
-instead. - /BatchGetItem/ - Performs multiple /GetItem/ requests for data items
-using their primary keys, from one table or multiple tables. The response from
-/BatchGetItem/ has a size limit of 16 MB and returns a maximum of 100 items.
-Both eventually consistent and strongly consistent reads can be used.
-- /Query/ - Returns one or more items from a table or a secondary index.
-You must provide a specific value for the partition key. You can narrow the
-scope of the query using comparison operators against a sort key value, or on
-the index key. /Query/ supports either eventual or strong consistency.
-A single response has a size limit of 1 MB. - /Scan/ - Reads every item in a
-table; the result set is eventually consistent. You can limit the number of
-items returned by filtering the data attributes, using conditional expressions.
-/Scan/ can be used to enable ad-hoc querying of a table against non-key
-attributes; however, since this is a full table scan without using an index,
-/Scan/ should not be used for any application query use case that requires
-predictable performance. For conceptual information about reading data, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html
-Working with Items> and
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html
-Query and Scan Operations> in the /Amazon DynamoDB Developer Guide/.
-__Modifying Data__ - /PutItem/ - Creates a new item, or replaces an existing
-item with a new item (including all the attributes). By default, if an item in
-the table already exists with the same primary key, the new item completely
-replaces the existing item. You can use conditional operators to replace an
-item only if its attribute values match certain conditions, or to insert a new
-item only if that item doesn't already exist. - /UpdateItem/ - Modifies the
-attributes of an existing item. You can also use conditional operators to
-perform an update only if the item's attribute values match certain conditions.
-- /DeleteItem/ - Deletes an item in a table by primary key. You can use
-conditional operators to perform a delete an item only if the item's attribute
-values match certain conditions. - /BatchWriteItem/ - Performs multiple
-/PutItem/ and /DeleteItem/ requests across multiple tables in a single request.
-A failure of any request(s) in the batch will not cause the entire
-/BatchWriteItem/ operation to fail. Supports batches of up to 25 items to put
-or delete, with a maximum total request size of 16 MB. For conceptual
-information about modifying data, see
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html
-Working with Items> and
-<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html
-Query and Scan Operations> in the /Amazon DynamoDB Developer Guide/.
-
The types from this library are intended to be used with
<http://hackage.haskell.org/package/amazonka amazonka>, which provides
-mechanisms for specifying AuthN/AuthZ information and sending requests.
+mechanisms for specifying AuthN/AuthZ information, sending requests, and
+receiving responses.
-Use of lenses is required for constructing and manipulating types.
-This is due to the amount of nesting of AWS types and transparency regarding
-de/serialisation into more palatable Haskell values. The provided lenses should
-be compatible with any of the major lens libraries such as
-<http://hackage.haskell.org/package/lens lens> or
-<http://hackage.haskell.org/package/lens-family-core lens-family-core>.
+Lenses are used for constructing and manipulating types, due to the depth of
+nesting of AWS types and transparency regarding de/serialisation into more
+palatable Haskell values. The provided lenses should be compatible with any of
+the major lens libraries such as <http://hackage.haskell.org/package/lens lens>
+or <http://hackage.haskell.org/package/lens-family-core lens-family-core>.
See "Network.AWS.DynamoDB" or <https://aws.amazon.com/documentation/ the AWS
-Documentation> to get started.
+documentation> to get started.
%package devel
Summary: Haskell %{pkg_name} library development files
++++++ amazonka-dynamodb-1.4.3.tar.gz -> amazonka-dynamodb-1.4.5.tar.gz ++++++
++++ 5050 lines of diff (skipped)