You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by rs...@apache.org on 2022/06/21 18:00:03 UTC

[avro] branch branch-1.11 updated (e380e2fd6 -> 913bf36d8)

This is an automated email from the ASF dual-hosted git repository.

rskraba pushed a change to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git


    from e380e2fd6 AVRO-3541: Unbump strum_macros (#1729)
     new 0cee52e70 AVRO-3525: whitelist_externals is now deprecated (#1702)
     new 913bf36d8 AVRO-3436: Clarify what names have a namespace (#1587)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 doc/content/en/docs/next/Specification/_index.md | 6 ++++--
 lang/py/tox.ini                                  | 4 ++--
 2 files changed, 6 insertions(+), 4 deletions(-)


[avro] 02/02: AVRO-3436: Clarify what names have a namespace (#1587)

Posted by rs...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rskraba pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 913bf36d81984d9bc44d873cc8d1655cda2347e2
Author: Oscar Westra van Holthe - Kind <op...@users.noreply.github.com>
AuthorDate: Tue Jun 21 19:59:23 2022 +0200

    AVRO-3436: Clarify what names have a namespace (#1587)
---
 doc/content/en/docs/next/Specification/_index.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/doc/content/en/docs/next/Specification/_index.md b/doc/content/en/docs/next/Specification/_index.md
index cead16a28..cde92fed9 100755
--- a/doc/content/en/docs/next/Specification/_index.md
+++ b/doc/content/en/docs/next/Specification/_index.md
@@ -179,9 +179,11 @@ For example, 16-byte quantity may be declared with:
 ```
 
 ### Names {#names}
-Record, enums and fixed are named types. Each has a fullname that is composed of two parts; a name and a namespace. Equality of names is defined on the fullname.
+Record, enums and fixed are named types. Each has a fullname that is composed of two parts; a name and a namespace, separated by a dot. Equality of names is defined on the fullname.
 
-The name portion of a fullname, record field names, and enum symbols must:
+Record fields and enum symbols have names as well (but no namespace). Equality of fields and enum symbols is defined on the name of the field/symbol within its scope (the record/enum that defines it). Fields and enum symbols across scopes are never equal.
+
+The name portion of the fullname of named types, record field names, and enum symbols must:
 
 * start with [A-Za-z_]
 * subsequently contain only [A-Za-z0-9_]


[avro] 01/02: AVRO-3525: whitelist_externals is now deprecated (#1702)

Posted by rs...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rskraba pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 0cee52e70b8f8ea2c0a540cacbbdc5e440233b1b
Author: Igor Izvekov <iz...@mail.ru>
AuthorDate: Tue Jun 21 20:19:05 2022 +0300

    AVRO-3525: whitelist_externals is now deprecated (#1702)
---
 lang/py/tox.ini | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/py/tox.ini b/lang/py/tox.ini
index ab2ceaa2e..07e4d498d 100644
--- a/lang/py/tox.ini
+++ b/lang/py/tox.ini
@@ -43,7 +43,7 @@ deps =
     coverage
     python-snappy
     zstandard
-whitelist_externals =
+allowlist_externals =
     cp
     mkdir
 commands_pre =
@@ -61,7 +61,7 @@ commands_post =
 ##
 # A virtual environment only used to build the wheel
 deps =
-whitelist_externals =
+allowlist_externals =
 commands_pre =
 commands =
 commands_post =