Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Merge develop with 2.2.0 back to master #61

Merged
merged 61 commits into from
Jun 28, 2018
Merged

Merge develop with 2.2.0 back to master #61

merged 61 commits into from
Jun 28, 2018

Commits on Nov 22, 2017

  1. First draft for implementing a unified selectBone

    selectOneBone() refers to selectBone(), where selectMultiBone() refers to selectBone(multiple=True). This is much more convenient with the general ViUR development standards.
    phorward committed Nov 22, 2017
    Configuration menu
    Copy the full SHA
    2dc2dea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38b7694 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    18cab25 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2017

  1. Configuration menu
    Copy the full SHA
    5641bf4 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2017

  1. Added support for IPv6 Adresses

    We the user connects with an IPv6 Address, we remove the last 64 bits (the interface identifier) as these 64bit can be choosen freely by the user
    tsteinruecken committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    184b42d View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2017

  1. Configuration menu
    Copy the full SHA
    b78c78d View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2017

  1. Introducing a keyBone

    phorward committed Dec 13, 2017
    Configuration menu
    Copy the full SHA
    bdb502d View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2017

  1. More fixes from pr #32

    Fix for assigning db.Keys to db.Query.filer()
    and automatic string conversion when a db.Key is assigned to a skeleton's value
    phorward committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    3260316 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2018

  1. Fixed a bug that may causes an skeleton defined in server to take pre…

    …cedence over the one defined by the application
    
    We must stop processing a new skeleton class if we allready have one initialized for that given kind and the current one is from the server package (instead of putting it's reference into the cache)
    tsteinruecken committed Feb 7, 2018
    Configuration menu
    Copy the full SHA
    667b23e View commit details
    Browse the repository at this point in the history
  2. Use urlsafe_b64decode for filenames

    This seems to be used by old WinXP boxes and the urlsafe implementation also handles default b64encoded text gracefully.
    Fixes #38
    tsteinruecken committed Feb 7, 2018
    Configuration menu
    Copy the full SHA
    a082257 View commit details
    Browse the repository at this point in the history
  3. Completely defer the isindexed decision back to the bones and remove …

    …the set_unindexed_properties logic from skeleton
    
    The later one was broken anyway (all properties had been set to indexed on first edit) and most bones already had support for entity.set()
    Fixes #34
    tsteinruecken committed Feb 7, 2018
    Configuration menu
    Copy the full SHA
    db92809 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    979b8be View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2018

  1. Don't try to serialize a bone if it's not contained in valuesCache

    This can happen f.e. in relations where the model for the referenced entry changes but the entry itself hasn't been updated yet.
    
    Fixes #7
    tsteinruecken committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    f1f06b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afab366 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2018

  1. Merge pull request #43 from viur-framework/fix/setUnindexedProperties

    Completely defer the isindexed decision back to the bones and remove the set_unindexed_properties logic from skeleton
    tsteinruecken authored Feb 9, 2018
    Configuration menu
    Copy the full SHA
    40481f4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #42 from viur-framework/fix/skeletonImport

    Fixed a bug that may causes an skeleton defined in server to take pre…
    tsteinruecken authored Feb 9, 2018
    Configuration menu
    Copy the full SHA
    16022d4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #41 from viur-framework/fix/decodingFileNames

    Use urlsafe_b64decode for filenames
    tsteinruecken authored Feb 9, 2018
    Configuration menu
    Copy the full SHA
    b6282e6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #40 from viur-framework/fix/textBoneValueRestore

    Remove old (non-multilang data) from entry in serialize()
    tsteinruecken authored Feb 9, 2018
    Configuration menu
    Copy the full SHA
    cbd01fe View commit details
    Browse the repository at this point in the history
  5. Merge pull request #39 from viur-framework/fix/skipMissingBonesInSeri…

    …alize
    
    Don't try to serialize a bone if it's not contained in valuesCache
    tsteinruecken authored Feb 9, 2018
    Configuration menu
    Copy the full SHA
    e48f882 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ca2abd8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ede507c View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2018

  1. Configuration menu
    Copy the full SHA
    a2ac317 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0a8ef2 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2018

  1. Configuration menu
    Copy the full SHA
    c83e6d0 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2018

  1. renderEntry() param parameter with default value

    Just let renderEntry() behave like the surrounding functions (view, add, edit...) and accept calls with only the first two parameters...
    phorward committed Feb 28, 2018
    Configuration menu
    Copy the full SHA
    58df395 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #46 from viur-framework/fix_renderEntry

    renderEntry() param parameter with default value
    tsteinruecken authored Feb 28, 2018
    Configuration menu
    Copy the full SHA
    7b844da View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2018

  1. Merge pull request #45 from viur-framework/feature/rateLimit

    Feature/rate limit
    tsteinruecken authored Mar 14, 2018
    Configuration menu
    Copy the full SHA
    b8e0591 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #31 from viur-framework/feature_keyBone

    Introducing a keyBone
    tsteinruecken authored Mar 14, 2018
    Configuration menu
    Copy the full SHA
    1e31ed9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    82aea88 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #27 from viur-framework/feature/selectBone

    First draft for implementing a unified selectBone
    tsteinruecken authored Mar 14, 2018
    Configuration menu
    Copy the full SHA
    2da5b20 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2018

  1. Configuration menu
    Copy the full SHA
    2dcdf71 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e26c350 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2018

  1. Hotfix for PR #32

    This is a serious hotfix for a problem that only comes up when using
    db.KEY_SPECIAL_PROPERTY in the filter, in this case, setting the filter
    property in line 483 raises an exception that a db.Key property is required,
    rather than a string.
    
    This hotfix only converts the db.Key into str for further filter if
    db.KEY_SPECIAL_PROPERTY is not explicitly filtered.
    phorward committed Mar 21, 2018
    Configuration menu
    Copy the full SHA
    ecea2d1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #50 from viur-framework/hotfix_PR32

    Hotfix for PR #32, required for v2.2 release
    tsteinruecken authored Mar 21, 2018
    Configuration menu
    Copy the full SHA
    8e4f5a4 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2018

  1. Configuration menu
    Copy the full SHA
    89727c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8cb590 View commit details
    Browse the repository at this point in the history
  3. Small extension

    phorward committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    8ad34b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e7d898 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2018

  1. Configuration menu
    Copy the full SHA
    3b771aa View commit details
    Browse the repository at this point in the history
  2. Copyright year & header

    phorward committed Apr 5, 2018
    Configuration menu
    Copy the full SHA
    ba6d37b View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2018

  1. Configuration menu
    Copy the full SHA
    c57217b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e98429 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2018

  1. Configuration menu
    Copy the full SHA
    1a6f2c3 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2018

  1. Merge pull request #55 from viur-framework/hotfix/selectbone-regressi…

    …on-html-renderer
    
    fixed regression at handling selectbones in default html renderer
    tsteinruecken authored Apr 13, 2018
    Configuration menu
    Copy the full SHA
    a935a1e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #53 from viur-framework/hotfix/textBone.getReferen…

    …cedBlobs
    
    fixed IndexError in textBone.getReferencedBlobs
    tsteinruecken authored Apr 13, 2018
    Configuration menu
    Copy the full SHA
    09c0c13 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #52 from viur-framework/refactor_passwordBone

    fromClient() function for passwordBone and some code refactoring
    tsteinruecken authored Apr 13, 2018
    Configuration menu
    Copy the full SHA
    0efb75c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    79e4fbe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b8552e8 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'feature/updatedChangelog' of github.com:/viur-framework…

    …/server into feature/updatedChangelog
    tsteinruecken committed Apr 13, 2018
    Configuration menu
    Copy the full SHA
    7f2b2b6 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2018

  1. Merge pull request #56 from viur-framework/fix/numericBoneReturnEmpty…

    …SearchTags
    
    Made getSearchDocumentFields in numeric-Bone return an empty list if …
    tsteinruecken authored Apr 14, 2018
    Configuration menu
    Copy the full SHA
    4839bd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de2f0fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d46738e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    692de03 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2018

  1. Merge pull request #57 from viur-framework/fix/translateSelectBonesIn…

    …JsonRender
    
    Return descriptions for selectBones translated also in Json-Render
    tsteinruecken authored Apr 19, 2018
    Configuration menu
    Copy the full SHA
    3a00497 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #59 from viur-framework/fix/unserializeBooleanBone

    Prevent unserialize from booleanBone to fail if the database contains…
    tsteinruecken authored Apr 19, 2018
    Configuration menu
    Copy the full SHA
    2457d47 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    baff501 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2018

  1. Configuration menu
    Copy the full SHA
    a7913da View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2018

  1. Added Breaking flag

    phorward committed Apr 23, 2018
    Configuration menu
    Copy the full SHA
    6e9d89d View commit details
    Browse the repository at this point in the history
  2. Codename: Etna

    phorward committed Apr 23, 2018
    Configuration menu
    Copy the full SHA
    7525df0 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #58 from viur-framework/fix/translatedNameResolveI…

    …nPathToKey
    
    Fixed resolving the name property in prototypes/hierarchy:pathToKey
    tsteinruecken authored Apr 23, 2018
    Configuration menu
    Copy the full SHA
    3b600f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5178dc2 View commit details
    Browse the repository at this point in the history