Skip to content

Releases: gobuffalo/pop

v6.0.3-dev.3

15 May 01:41
Compare
Choose a tag to compare
v6.0.3-dev.3 Pre-release
Pre-release

v6.0.3-dev.2

15 May 01:03
Compare
Choose a tag to compare
v6.0.3-dev.2 Pre-release
Pre-release

v6.0.3-dev

15 May 00:52
ca4f9fd
Compare
Choose a tag to compare
v6.0.3-dev Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v6.0.2-alpha-ci...v6.0.3-dev

v6.0.2

17 Apr 23:52
c29c06c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.0.1...v6.0.2

v6.0.2-alpha-ci

02 Apr 02:49
e3d9175
Compare
Choose a tag to compare
v6.0.2-alpha-ci Pre-release
Pre-release

Creating this release to test goreleaser workflow.

v6.0.1

03 Dec 13:17
e572a4d
Compare
Choose a tag to compare

What's Changed

  • Bump github.com/gobuffalo/fizz from 1.10.0 to 1.14.0 by @dependabot in #673
  • updated version string and go.mod by @sio4 in #675
  • hotfix: format generated file and mod tidy for them. by @sio4 in #677

New Contributors

Full Changelog: v6.0.0...v6.0.1

v6.0.0

23 Nov 20:05
c285511
Compare
Choose a tag to compare

What's Changed

Full Changelog: v5.3.4...v6.0.0

v5.3.4

06 May 20:22
33f2d5c
Compare
Choose a tag to compare

v5.3.4 (#644)

  • fix: improve model ID field customization (#604)

Updates places where "id" was hardcoded instead of using model.IDField().

  • Ensure uninitialized map is initialized when unmarshaling json
    Add tests for this scenario

  • exclude migration_table_name from connection string

  • add test for OptionsString

  • Add support for pointer FKs when preloading a belongs_to association (#602)

  • feat: support context-aware tablenames (#614)

This patch adds a feature which enables pop to pass down the connection context to the model's TableName() function by implementing TableName(ctx context.Context) string. The context can be used to dynamically generate tablenames which can be important for prefixed or generic tables and other use cases.

  • Bump pg deps (#616)
  • Reset to development
  • bumping pgx and pgconn versions

Co-authored-by: Stanislas Michalak stanislas.michalak@gmail.com
Co-authored-by: Larry M Jordan larrymoralesjordan@gmail.com

  • Latest from master (#620)

  • Latest from development (#617)

  • fix: improve model ID field customization (#604)

Updates places where "id" was hardcoded instead of using model.IDField().

  • Ensure uninitialized map is initialized when unmarshaling json
    Add tests for this scenario

  • exclude migration_table_name from connection string

  • add test for OptionsString

  • Add support for pointer FKs when preloading a belongs_to association (#602)

  • feat: support context-aware tablenames (#614)

This patch adds a feature which enables pop to pass down the connection context to the model's TableName() function by implementing TableName(ctx context.Context) string. The context can be used to dynamically generate tablenames which can be important for prefixed or generic tables and other use cases.

  • Bump pg deps (#616)

  • Reset to development

  • bumping pgx and pgconn versions

Co-authored-by: Stanislas Michalak stanislas.michalak@gmail.com
Co-authored-by: Larry M Jordan larrymoralesjordan@gmail.com

Co-authored-by: Patrik zepatrik@users.noreply.github.com
Co-authored-by: Michael Montgomery mmontg1@gmail.com
Co-authored-by: kyrozetera jasonhale.w@gmail.com
Co-authored-by: Reggie Riser 4960757+reggieriser@users.noreply.github.com
Co-authored-by: hackerman 3372410+aeneasr@users.noreply.github.com
Co-authored-by: Stanislas Michalak stanislas.michalak@gmail.com
Co-authored-by: Larry M Jordan larrymoralesjordan@gmail.com

  • adding goreleaser syntaz (#619)

Co-authored-by: Patrik zepatrik@users.noreply.github.com
Co-authored-by: Michael Montgomery mmontg1@gmail.com
Co-authored-by: kyrozetera jasonhale.w@gmail.com
Co-authored-by: Reggie Riser 4960757+reggieriser@users.noreply.github.com
Co-authored-by: hackerman 3372410+aeneasr@users.noreply.github.com
Co-authored-by: Stanislas Michalak stanislas.michalak@gmail.com
Co-authored-by: Larry M Jordan larrymoralesjordan@gmail.com

  • Resolve issues in UPDATE and DELETE when using schemas (#618)

  • Resolve MySQL issues and improve test migrations

  • Bump CockroachDB to maintained and supported versions
    Version 2.1 has reached EoL in 2019

Signed-off-by: aeneasr 3372410+aeneasr@users.noreply.github.com

  • Use PaginatorPageKey and PaginatorPerPageKey variables (#615)

  • update pagination_test

  • Pass Time structure into timestamp update functions. (#625)

Closes #624

  • Allow nullable JSONB and resolve MySQL regression (#639)

  • Allow passing args to Order (#630)

  • Added connection maximum idle time configuration (#635)

This PR add the possibility to configure the connection maximum idle time (https://golang.org/pkg/database/sql/#DB.SetConnMaxIdleTime).

Closes #632

BREAKING CHANGE: Requires Go 1.15 from now on.

  • Bump sqlite to 3.35.4 / 1.14.7 (#642)

  • Update pg, pgx, sqlx (#643)

  • jackc/pgx to version v4.11.0.
  • jmoiron/sqlx to versionv1.3.3
  • lib/pq to versionv1.10.1
  • Fix Inner has many associations when passing on multiple arguments (#633)

  • Fix Inner has many associations when passing on multiple arguments for inner fields

  • Fix broken tests

  • clean up extractFieldAndInnerFields function

  • Remove many to many TX condition for EagerPreload (#645)

  • Remove the need to use Tx when loading many to many associations

  • replace TX access to create a new tx.Store.Transaction() object

  • Added fix/tests for has_many with pointer foreign key (#647)

Co-authored-by: Antonio Pagano 645522+paganotoni@users.noreply.github.com
Co-authored-by: Patrik zepatrik@users.noreply.github.com
Co-authored-by: Michael Montgomery mmontg1@gmail.com
Co-authored-by: kyrozetera jasonhale.w@gmail.com
Co-authored-by: Reggie Riser 4960757+reggieriser@users.noreply.github.com
Co-authored-by: hackerman 3372410+aeneasr@users.noreply.github.com
Co-authored-by: Stanislas Michalak stanislas.michalak@gmail.com
Co-authored-by: Larry M Jordan larrymoralesjordan@gmail.com
Co-authored-by: Brian Buchholz 4773480+bhb603@users.noreply.github.com
Co-authored-by: Mike Pontillo mpontillo@users.noreply.github.com
Co-authored-by: Benjamin Blattberg ben.blattberg@objectrocket.com
Co-authored-by: Jonathan Duck Duckbrain30@gmail.com
Co-authored-by: Arthur Knoepflin arthur.knoepflin@epitech.eu

v5.3.3-beta

28 Jan 12:14
Compare
Choose a tag to compare

Changelog

ad63f08 adding goreleaser syntaz

v5.3.3

28 Jan 13:13
5a8f51c
Compare
Choose a tag to compare
  • This release fixes the Goreleaser syntax issue so releases get sent to Homebrew again.