Age | Commit message (Collapse) | Author | Files | Lines |
|
distfile over mine.
|
|
|
|
|
|
|
|
HANGES IN VERSION 1.1-27.1:
USER-VISIBLE CHANGES:
* 'influence.merMod' allows user-specified starting parameters
* cleaned up performance vignette
BUG FIXES:
* 'cooks.distance' now works with objects computed by
'influence' method
* 'influence.merMod' now works with 'glmer' models using
'nAGQ=0'
* 'predict' (with new data) and 'simulate' methods now work
for models with >100 levels in a random effect grouping
variable (GH #631)
CHANGES IN VERSION 1.1-27 (2021-05-15):
USER-VISIBLE CHANGES:
* improvements from Lionel Henry (via
https://github.com/lme4/lme4/pull/587) to fix corner cases
in data checking; also resolves GH #601 (allFit scoping)
* 'getME(., "lower")' now has names (request of GH #609)
* improved detection of 'NaN' in internal calculations
(typically due to underflow/overflow or out-of-bounds linear
predictors from non-constraining link functions such as
identity-link Gamma models)
* 'influence.merMod' allows parallel computation
* the 'statmod' package is no longer required unless
attempting to simulate results from a model with an inverse
Gaussian response
BUG FIXES:
* long formulas work better in 'anova' headings (GH #611)
CHANGES IN VERSION 1.1-26 (2020-11-30):
BUG FIXES:
* 'predict', 'model.frame(.,fixed.only=TRUE)' work with
variable names containing spaces (GH #605)
* 'simulate' works when original response variable was logical
* 'densityplot' handles partly broken profiles more robustly
NEW FEATURES:
* 'thpr' method for 'densityplot()' (for plotting profiles
scaled as densities) gets new arguments
CHANGES IN VERSION 1.1-25 (2020-10-23):
* Set more tests to run only if environment variable
'LME4_TEST_LEVEL'>1
CHANGES IN VERSION 1.1-24 (never on CRAN):
USER-VISIBLE CHANGES:
* 'anova()' now returns a p-value of 'NA' if the df difference
between two models is 0 (implying they are equivalent
models) (GH#583, @MetaEntropy)
* speedup in 'coef()' for large models, by skipping
conditional variance calculation (Alexander Bauer)
* 'simulate.formula' machinery has changed slightly, for
compatibility with the 'ergm' package (Pavel Krivitsky)
* informational messages about (non-)convergence improved (GH
#599)
* improved error messages for 0 non-NA cases in data (GH #533)
NEW FEATURES:
* 'getME(.,"devfun")' now works for 'glmer' objects.
Additionally, 'profile'/'confint' for GLMMs no longer depend
on objects in the fitting environment remaining unchanged
(GH #589). This change also affects likelihood profiling
machinery; results of 'glmer' profiling/CIs may not match
results from previous versions exactly.
BUG FIXES:
* improved handling/documentation of 'glmer.nb' controls (GH
#556)
* 'predict' works better for 'gamm4' objects (GH #575)
* resolved some long-standing UBSAN issues (GH #561)
CHANGES IN VERSION 1.1-23 (2020-03-06):
This is primarily for CRAN compliance (previous submission was
retracted to allow time for downstream package adjustments).
* Some PROTECT/UNPROTECT fixes
CHANGES IN VERSION 1.1-22 (never on CRAN):
USER-VISIBLE CHANGES:
* prediction now works better for factors with many levels
(GH#467, solution by @sihoward)
* minor changes to argument order in '[g]lmerControl'; default
tolerance for convergence checks increased from 0.001 to
0.002 for 'glmerControl' (now consistent with 'lmerControl')
* 'lmer(*, family="<fam>")' is no longer valid; it had been
deprecated since 2013-06.
* 'lmer()', 'glmer()', and 'nlmer()' no longer have a formal
'...' argument. This defunctifies the use of a 'sparseX =
.' argument and will reveal some user errors, where
extraneous arguments were previously disregarded.
* In 'isSingular(x, tol)', the default tolerance ('tol') has
been increased from '1e-5' to '1e-4', the default of
'check.conv.singular' in 'g?lmerControl()'.
* for clarity and consistency with base R methods, some column
names of 'anova()' output are changed: "Df" becomes "npar",
"Chi Df" becomes "Df" (GH #528)
* 'simulate()' now works with inverse-Gaussian models (GH #284
revisited, @nahorp/Florian Hartig)
* single-model mode of 'anova()' now warns about unused
arguments in ... (e.g. 'type="III"')
* default tolerances for 'nloptwrap'/BOBYQA optimizer
tightened ('xtol_abs' and 'ftol_abs' were 1e-6, now 1e-8).
(To revert to former tolerances, use
'control=lmerControl(optimizer="nloptwrap",
optCtrl=list(xtol_abs=1e-6, ftol_abs=1e-6))'.)
BUG FIXES:
* improved checking for missing data (@lionel-)
* internal 'checkZrank()' should be able to deal with
('Matrix' package) 'rankMatrix()' returning 'NA'.
* 'allFit(fm)' now works for a model that had an explicit
'control = lmerControl(..)' call.
* internal 'getStart()' now works when model's 'start' was
specified as a list, and when called from 'drop1()' on a
submodel, fixing GH #521.
* internal function 'mkdevfun' now works even if there is an
extraneous 'getCall' function defined in the global
environment (GH #535)
* 'allFit()' works even if a variable with symbol 'i' is used
somewhere in the original model call (GH #538, reported by
Don Cohen); generally more robust
* 'glmer.nb' works even if an alternative version of
'negative.binomial' (other than the one from 'MASS') is
loaded in the workspace (e.g. by the 'GLMMadaptive' package)
(GH#516)
* 'level' argument is now honoured by 'confint(...,
type="boot", level=...)' (GH #543)
|
|
|
|
|
|
|
|
gtools 3.9.2 - 2021-06-03
-------------------------
Bug fixes:
- Fix missing man page and export for `combinations` and `permutations`.
Behind the scenes:
- Fixed more spelling/typographical errors, mostly in `NEWS.md`.
- Speed up `checkRversion` by removing checks for versions 2.x and 3.x.
gtools 3.9.1 - 2021-06-01
-------------------------
Bug fixes:
- Use valid HTTP request for example in `setTCPNoDelay` to prevent
errors when running tests.
Behind the scenes:
- Fixed numerous spelling/typographical errors.
- Update obsolete http URLs to https
gtools 3.9.0 - 2021-05-31
-------------------------
New functions:
- New `script_file` and `script_path` functions to obtain the
directory or full path to the currently executing script.
- New 'stat_mode` function to calculate the statistical mode (most
frequently occurring value).
- New `capwords` function to apply title capitalization rules to a
character vector.
- Move `baseOf` from `gplots` as requested by Steffen Möller. #2
New parameters:
- Add `scientific` parameter to `mixedsort` and `mixedorder` to
control whether numbers in scientific notation are recognized.
Resolved #7.
- Enhance `invalid` to detect `try-error` objects. #6
Bug fixes:
- Add support for R version 4 to `checkRVersion`. Resolved #5.
- Correct bug in `lastAdd` by explicitly checking for a `.Last` of
mode function.
Behind the scenes:
- Modernize package code by using `roxygen2` for documentation and
managing the NAMESPACE.
- Modernize C function registration.
- Replace http URLs with `https` and resolve broken links.
- Add github actions to automated testing
- Use pkgdown to generate HTML documentation.
- Use `styler` package to standardize R code formatting.
gtools 3.8.2 - 2020-03-23
-------------------------
Minor changes to support R 4.0
|
|
|
|
# version 2.0-7
* return `NA` as estimate when prediction/simulation fails; #80
# version 2.0-6
* fixes `object 'ret' not found` bug introduced by #63; #65 #66 #70
# version 2.0-5
* use multiple cores in `variogramST`, using pkg future; #63 by
@sigmafelix
* fix bug with conditional simulation using `stars` target grid and
nsim=1, #58
# version 2.0-4
* fix CRAN warning issue
# version 2.0-3
* fix bug in support for `sf` objects; #46
* fix `krigeTg` for the case when data or newdata are of class `sf` or
`sfc`; #51
|
|
|
|
(from inst/doc/CHANGES)
=====================================
CHANGES IN geoR VERSION 1.8-1
=====================================
Changes
o Removed the example in subarea() using geoRglm:::rongelap
ultil the package gets back to CRAN
o added reference to Diggle & Ribeiro (2007) on the description
file
Fixes
o no longer using attach() to address NOTE in CRAN checks
(it mostly affects image() persp() and countour() functions)
o no longer writing/assigning objects to the global environment
to address NOTE in CRAN checks
o Brain's changes in C code to address valgrind issues
=====================================
CHANGES IN geoR VERSION 1.7-5
=====================================
BUGS/Fixes
o call to sp::overlay changed to sp::over()
o changes to fix issues on CRAN reported errors/warnings
regarding namespaces and foreign calls
|
|
Firefox's build system defaults to "nightly" for builds without official
branding, and in practice there seems to be very little difference between
"nightly" and "unofficial", but this at least makes our choice explicit.
Bump PKGREVISION
|
|
|
|
|
|
Firefox's build system defaults to "nightly" for builds without official
branding, and in practice there seems to be very little difference between
"nightly" and "unofficial", but this at least makes our choice explicit.
Bump PKGREVISION
|
|
|
|
Provided by Remy van Elst in PR 56373.
# CLion 2021.1.3 (211.7628.27 build)
- Code: Clangd Bug CPP-25157 Use of undeclared identificator __cudaPushCallConfiguration
- No Subsystem Bug CPP-25144 Code completion stops when including .h file in to .cu file
- Bug CPP-25687 Red CUDA code with VS toolchain (2021.1.2)
- Core Bug IDEA-270078 Windows: Internal Error (./src/hotspot/share/runtime/safepoint.cpp:917), Illegal threadstate encountered
- Core. Installation Bug IDEA-269591 IDE with Projector crashes on restart
- Core. Plugin Management Bug IDEA-262732 Dynamic plugin and lost settings after unload & load
- Core. Project Settings Bug IDEA-270137 Project Structure dialog: after changing name of a module-level library it's shown as 'Empty Library'
- Bug IDEA-271303 It's not possible to add multiple sub-facets for a single facet
- Core. Quick Documentation Exception IDEA-256001 jpg, svg images aren't rendered in quick doc
- Core. Run. Configurations Bug IDEA-265622 [new run config UI] Mnemonic tooltips appear above another dialog opened from the RC window
- Bug IDEA-268436 No longer possible to set temporary configurations limit
- Bug IDEA-266369 Don't invoke `RunManagerListener#runConfigurationAdded` with RunManagerImpl write lock
- User Interface Bug IDEA-266927 Plugins settings page steals the focus from search box
- Bug IDEA-266854 IDE resets Windows File Explorer Recent Files list on start
- Bug IDEA-267018 ComponentPopupBuilder#adText not displayed anymore
- Bug IDEA-271223 Back button in Settings may open unexpected page
- Usability IDEA-267294 "Stretch to Right"/"Stretch to Left": Ctrl+Shift+Arrow keys resize the dialog instead of text selection
- User Interface. Focus Bug IDEA-251381 "git => compare branch" looses focus before list of branches can be displayed
- User Interface. Navigation Bug IDEA-265789 Open in new window keybinding does not work in recent files view
- Bug IDEA-269778 In Quick Definition popup, left/right arrow keys move a caret instead of switching overrides
- User Interface. Plugins Bug IDEA-267878 Update notification from a disabled plugin after the plugin was already updated (Rider, Azure DevOps plugin)
- User Interface. Project View Bug IDEA-268305 Hide empty middle packages option disables correct tree view of parent and children packages
- Console Bug PY-48157 Cursor in SciView does not move to next cell after execution with Ctrl+Enter
- No subsystem Bug DBE-13148 Datasource color setting does not override children color settings
- Code Completion Feature DBE-4541 SQL:code completion: grant execute on <procedure> to ... does not suggest users
- Bug DBE-7781 Automatic alias shouldn't appear when not needed
- Bug DBE-2931 MSSQL: bad completion
- Bug DBE-10650 Bad completion for table aliases in INSERT
- Usability DBE-7913 Computed columns in INSERT suggestion
- Usability DBE-12479 More priority for sorting direction in completion
- Code Generation Bug DBE-13327 IDE generates trigger chunk in view DDL
- Code Highlighting Bug DBE-13185 Unsupported option in CREATE MATERIALIZED VIEW
- Bug DBE-13316 False error highlighting in convert() clause
- Bug DBE-13262 Incorrect syntax errors for querying arrays in RedShift SQL
- Bug DBE-9271 PL/SQL: "Unable to resolve column 'sqlerrm'" at exception block
- Bug DBE-13188 Resolving of PL/SQL record type fields does not work in most cases.
- Bug DBE-13296 MSSQL dialect does not recognize Azure SQL command `CREATE DATABASE foo AS COPY OF bar`
- Bug DBE-13324 Wrong 'unresolved' in CREATE TABLE
- Connectivity Cosmetics DBE-13230 Data source invalid selection in the list
- Data Editor/Viewer Bug DBE-13252 Table data editor action panel does not change color
- Bug DBE-13167 Wrong date is returned by Snowflake if session timezone is not UTC
- Usability DBE-11774 Table is read-only when there is no schema qualifier (unresolved table references)
- Data Import/Export Performance DBE-11370 import CSV into a HIVE table took forever
- Performance DBE-13139 Import to Redshift is still slow even with batch support. Probably tweak linesPerStatement parameter
- Diagrams Bug DBE-13046 Data source color setting is not reflected on diagram anymore
- Bug DBE-13283 Adding a diagram note leads to `ClassCastException`
- Introspection Bug DBE-13325 Better UI for dross-database synonyms
- Cosmetics DBE-13326 Missing Row Security Policies icon
- DBE-13251 Wrong focus position after first navigation on table.column_name via Search Everywhere
- Bug DBE-12843 tSQLt - java.sql.SQLException when test returns a result set
- SQL Resolve Bug DBE-4531 Completion fails on table synonyms across databases
# CLion 2020.3.4 (203.8084.11 build)
- Project Model Bug CPP-24398 Reloading CompDB project via editor widget doesn't show Build tool window
- Core. Project Settings Bug IDEA-259705 Module can't be deleted
# CLion 2020.2.5 (202.8194.17 build)
- Core. Indexing Performance IDEA-251642 Indexing dependncies hangs
- Core. SSH Bug IDEA-247283 SSH can't juxtapose a public key file with a public key from the agent if there's no private key file
- Editor Bug IDEA-248406 External annotations and code vision hints aren't shown if javadoc comment is shown in rendered form
- User Interface. Controls Bug IDEA-248210 "Find" and "Replace" don't remember text area size
- User Interface. Embedded Browser (JCEF) Bug IDEA-250937 forward jcef log to user home
- Version Control Bug IDEA-252307 Rebase modal no longer stores previously selected ref or options
- Bug IDEA-249948 New git repositories do not show up in VCS dialog
- Version Control. Git Bug IDEA-248795 gitignore is not created during project creation in WebStorm
- Usability IDEA-253889 Git Rebase dialog: copy the value from upstream to --onto field when it is added
- Usability IDEA-251554 Pull-dialog: suggests pulling from the last entered branch, instead from tracked branch
- Console Bug PY-45049 Types and parameters aren't shown in completion in Python Console
- Bug PY-30650 iPython console gets totally unresponsive when using large Pandas Dataframe
- Debugger Task PY-44450 Consider disabling the "Drop into debugger on failed tests" flag by default
- Test Runner Bug PY-43632 Unittest run configuration has two "Additional Arguments" fields
# CLion 2020.1.3 (201.8743.17 build)
- Unit Testing: Google Test Bug CPP-20039 CLion 2020.1 - Selecting and running multiple cmake google tests results in "Preparation canceled"
- Core Bug IDEA-243130 GoLand 2020.1.3 closes main window and can't bring to front if press ESC on `goland --help` window.
- Bug IDEA-241340 Timeout in tests during BaseFixture.disposeRootDisposable caused by LaterInvocator
- Core. File System Bug IDEA-241524 When I create new files using de Angular CLI, the files are not visible immediately in the Project tab
- Bug IDEA-239947 Deadlock between EDT and Jar file attributes updater
- Core. IDE Settings Usability IDEA-240607 Import Settings should warn if user has incorrectly selected a folder without settings
- Core. Indexing Performance IDEA-238706 Accessing index during PSI events
- Core. Installation Bug IDEA-242558 Patches for the IDE with 32-bit JDK are not applied
- Bug IDEA-242552 IDEA doesn't start after update to 2020.2 EAP2 (202.5103.13)
- Core. Licensing Bug IDEA-245166 Do not popup license dialog for "optional"-licensed plugins, after license expiration
- Core. Plugin Management Bug IDEA-240538 Theme plugin auto apply after update reseting previous settings
- Exception IDEA-241872 "Unexpected core classloasder" exception prevents startup
- Core. Project Settings Bug IDEA-238053 Project Structure dialog does not apply changes when Eclipse project format is used
- Usability IDEA-240068 error: java: error: release version 15 not supported when compiling project with JDK_X language level in misc.xml
- Editor. Large Files Bug IDEA-243589 IDE freeze / crash when large file is truncated
- Tools. Docker Bug IDEA-240719 Docker's multi-tab drawing problem
- Bug IDEA-236451 Docker: Exec tabs for a container are closed only from the second time.
- Tools. Terminal Usability IDEA-244778 Consider renaming 'Smart Command Handling' to 'Run Commands using IDE'
- User Interface Bug IDEA-240549 Minor: missing space in Reopen Project dialog
- Performance IDEA-238301 Subpixel(LCD) text is slow with UI font in 2020.1, switching to greyscale antialiasing helps
- User Interface. Graphics Bug IDEA-242042 Some icons are missing and some hardly visible in the Main menu
- User Interface. Project View Performance IDEA-237974 UI freeze: com.intellij.openapi.module.impl.ModuleGroupersKt.splitByDotsJoiningIncorrectIdentifiers
- Version Control. Log Bug IDEA-221930 Checkout revision keymap is gone.
- Code Insight Performance PY-41402 UI freezes when processing references in python scratch files
- Debugger Bug PY-40654 Switch off shape gathering for on demand variables in the debugger
- Skeletons Performance PY-41828 PyCharm indexes entire filesystem due to unintended and misconfigured App Engine support
- DB Connectivity Bug DBE-10963 pgpass fails to parse if it has blank lines in it
- DB Console Bug DBE-10837 Error: invalid identifier in Snowflake
- Bug DBE-9876 Force executing queries in read-only mode runs the wrong query
- DB Diff Bug DBE-10727 Compare schemas does not respect the column order
- DB Refactoring Usability DBE-10543 Button layout exactly the wrong way round (Compare DDL with Database)
- Data Views Feature DBE-2516 Use Data Editor for editable views
- Usability DBE-10707 Generated filter from Filter By context menu clears MongoDB projection
- Usability DBE-8336 Shorten tab names in DataGrid with placement on the right/left
- Navigation & Search Bug DBE-11084 'Go to declaration or usages' not working on routines in query console window
- PL & DDL Editor Feature DBE-5756 Database - Adding datasource as DDL - adding whole folders besides files only
- SQL Completion Feature DBE-11004 SQL Server Does Not Recognize "ADD SENSITIVITY CLASSIFICATION" Statement
- SQL Format and Style Bug DBE-10779 Wrong indent when a command starts with a comment
- Bug DBE-11093 Formatting rules are ignored when formatting a constructor inside type body
- SQL General Bug DBE-10726 No ability to create a DDL data source if there are no folders attached
- Bug DBE-10999 Index creation with INCLUDE NULL KEYS causes error
- SQL Generation Bug DBE-10334 Modify table action no more works from the editor
- Bug DBE-10724 Snowflake Table Creation Generates Invalid DDL w/ Comments on Primary Keys
- SQL Highlighting Bug DBE-11007 ORDER BY ... FOR JSON in subquery
- Bug DBE-10748 Errors in SQL Editor for correct Oracle SQL statements
- Bug DBE-10778 MariaDB Dialect JSON_QUERY not recognized
- SQL Resolve Feature DBE-10457 New quick fix: refresh schema
# CLion 2019.3.6 (193.7288.25 build)
- Code: Clangd Bug CPP-18783 clangd crashes on catch.hpp
- Bug CPP-19696 No concepts support with MSVC toolchain
- Core. Licensing Bug IDEA-235344 Licence server address is cleared when it's unreachable
- Bug IDEA-231811 Excessive number of writes to idea.key
- Core. Plugin Management Bug IDEA-234444 failure to uninstall plugin
- Core. Statistics Auto-reported Exception IDEA-231639 Should be called at least in the state CONFIGURATION_STORE_INITIALIZED, the current state is: COMPONENTS_REGISTERED Current violators count: 1
- Exception IDEA-228826 ERROR when open GoLand 2020.1 with plugin that defines registry key
- Version Control. Subversion Bug IDEA-228828 IDEA does not propose to delete dir in svn when deleting a dir
- Debugger Bug PY-39307 Error prints in Debug Server run configuration cause by misplaced attach to process binaries
- SQL Generation Bug DBE-10396 Unable to resolve class com.intellij.database.model.DasObjectWithSource
# CLion 2019.2.5 (192.7142.39 build)
- Core. Diagrams Exception IDEA-218015 Attempt to export any diagram to svg image fails with NPE
- Core. File System Feature IDEA-152607 Non-destructive "safe write" mode
- Core. IDE Settings Usability IDEA-221387 Configure Gutter Icons opens Settings For New Projects
- Core. Installation Bug IDEA-223576 Impossible to update Pycharm 2019.1
- Bug IDEA-215497 jbr/bin/java Access Denied during update from IC-192.4205.45 to IC-192.4488.21
- Core. Password Management Bug IDEA-223257 java.lang.NoSuchMethodError: 'void com.intellij.credentialStore.CredentialAttributes.<init>(java.lang.String, java.lang.String, java.lang.Class, boolean, int, kotlin.jvm.internal.DefaultConstructorMarker)'
- Core. Quick Documentation Bug IDEA-222946 identifier tooltip - due to scrollbar the tooltip window is not large (height) enough when there is only 1 or 2 lines in the tooltip. So the text is always obscured.
- Core. SSH Bug IDEA-222345 Allow users to update known_hosts in a one click
- Bug IDEA-220958 SSHJ: ConnectTimeout option is being read from config as milliseconds but should be read as seconds
- Cosmetics IDEA-222955 Error message cannot be fully read
- Core. Task Management Bug IDEA-222938 Can't uncheck "Enable Cache" in `Settings -> Tools -> Task`
- Editor. Code Completion Bug IDEA-221425 Code completion broken and not configurable
- Editor. Editing Text Bug IDEA-221667 Pressing Option-Enter on warning while info popup is displayed and previous warning hasn't been cleared causes cursor to jump in editor
- User Interface. Focus Bug IDEA-221730 Stop services window from taking focus when opening a database table.
- User Interface. Graphics Bug IDEA-220577 Menu icons in Presentation mode are large
- Version Control. Git Bug IDEA-220499 Git merge --no-commit still perfroms a commit if conflicts occur
- Bug IDEA-222125 Update project notification incorrectly considers recents when calculating number of commits matching filter
- Debugger Bug PY-37645 Debugger crashes with exit code -1073740791 (PyQt5)
- Bug PY-37361 Pytest 2: Failed to find debugger in _pytest
- Bug PY-26541 Changing format doesn't take effect on numpy array
- Bug PY-37757 Debugging fail in IronPython with: AttributeError: 'module' object has no attribute 'EX_OK'
- Usability PY-36952 Frightening stacktrace is shown when user stops debugger
- Test Runner Bug PY-37841 _jb_pytest_runner 2019 fail to run some test
- No subsystem Bug DBE-9285 Inspections from commandline: SqlCaseVsCoalesceInspection fails with "registers INFORMATION level problem in batch mode"
- Bug DBE-9154 No more right click option to refresh materialized view on PostgreSQL
- DB Connectivity Bug DBE-5559 H2 embedded: mv.db extension as appended to the database file each time
- Bug DBE-9136 Cannot change session to Azure SQL database after update to 2019.2.4
- Bug DBE-3272 H2 Data Source: automatic detection of database files for MV_STORE format (.mv.db)
- Usability DBE-9247 Adding data source via the explorer is confusing
- DB Console Feature DBE-2344 DB2: not possible to enable DBMS_OUTPUT
- Bug DBE-9251 Cannot remove association with console for the once injected sql into a string fragment
- Bug DBE-9260 Running "Execution Plan" on a recursive SQL results in java.lang.StackOverflowError"
- DB Diff Bug DBE-9226 Compare tool generates invalid mariadb sql for drop index when generating migration script
- DB General Bug DBE-8736 Don't write database model on EDT
- DB Introspection Feature DBE-7213 Support System-Versioned Tables introspection and syntax
- Bug DBE-6627 Sequences are not displayed in database structure for H2 databases
- Bug DBE-9181 Refresh of external schemas in Redshift is unreliable
- Bug DBE-9262 Mysql - No autosync - introspect schema doesn't introspect
- Bug DBE-8000 MS SQL: table or column comments are truncated to 30 characters
- DB Refactoring Bug DBE-8776 Modify comment query lost umlauts in encoding mess even though previewed SQL is fine
- Cosmetics DBE-8364 Edit Comment for DB Table Column Window
- DB Schema Views Feature DBE-8608 Cannot reassign "drop" database object shortcut key
- Usability DBE-9195 Schema patterns keep getting reset when I drop and recreate a database
- Usability DBE-9248 Tables are not loading with the schema selected without refreshing
- Configuration Problem DBE-9020 Database tool window -> Show intermediate nodes deactivated no longer works in 2019.2
- Data Import & Export Bug DBE-9254 PostgreSQL Copy results as SQL Inserts does not Quote Items Properly
- Data Views Feature DBE-5970 Transposed table in a table editor don't allow to resize a column name
- Bug DBE-9157 Quick documentation for database rows produce invalid queries
- Bug DBE-9217 When I press forward or backward button, Index is increased or decreased. But This can't renew the table. I think it is bug. Please fix this.
- Bug DBE-8904 Transpose collapses field names
- Bug DBE-9338 The row number is truncated in table view
- Usability DBE-9179 Thousands separator in results rows count view
- PL & DDL Editor Bug DBE-8649 DDL editor should always use UTF-8
- SQL Completion Feature DBE-9252 Completion: option to suggest only objects from current database/schema
- Bug DBE-6024 Database completion/object navigation should not show filtered out objects
- Bug DBE-7033 Bad completion for subquery
- Bug DBE-1188 Code completion wrong when data source has many databases MySQL
- Usability DBE-9070 Option to disable smart join completion
- Usability DBE-9307 SQL: MySQL: code completion could suggest ALTER TABLE
- Usability DBE-8957 Misleading icon in a completion list
- Usability DBE-2234 SQL completion: useless item duplication
- SQL Format and Style Bug DBE-9249 PostgreSQL formatting: the "Keep new line after THEN, ELSE" options doesn't work
- Bug DBE-9185 Unable to format correctly a view creation query that uses a "With query"
- SQL General Bug DBE-2667 "Quote identifier" should choose correct case
- Bug DBE-9376 MS SQL parses incorrectly when column alias is "load"
- SQL Generation Bug DBE-9366 DataGrip freezes 30 secs after launch
- SQL Highlighting Bug DBE-8370 OPENXML WITH clause is not recognized
- Bug DBE-3688 SQL: MySQL: support correct limitations for CAST and CONVERT arguments
- Bug DBE-9193 Good code is red when using dots in PostgreSQL CREATE VIEW WITH() option names
- Bug DBE-5819 Bad SQL is green: MySQL `delete * from`
- Bug DBE-9210 Inspection ['Delete' statement without 'where' clears all data in the table] should not be shown when selection made by JOIN
- Bug DBE-9167 Snowflake SQL Dialect parsing error
- Bug DBE-9317 Add az64 compression encoding support
- Bug DBE-9264 Named parameters in SQL function calls are marked as syntax errors and broken by auto-format
- Bug DBE-9353 Inlay hint is strange for VALUES
- Bug DBE-9160 DataGrip: Error indicated if trying to execute SQL Server procedure using user parameters to pass value
- Bug DBE-9108 Support SONAME syntax
- Bug DBE-7426 MariaDB command JSON_VALUE not recognized
- Bug DBE-9293 Sybase: unable to resolve "GO" symbol
- Bug DBE-9271 PL/SQL: "Unable to resolve column 'sqlerrm'" at exception block
- Bug DBE-8924 False warning about number of values when selecting identity column
- SQL Resolve Bug DBE-6494 rowversion type is not recognized by Datagrip
- Usability DBE-9261 Unable to select schema in SQL Resolution Scopes dialog
# CLion 2019.1.4 (191.7479.33 build)
- No subsystem Bug CPP-15708 [Android Studio Freeze] FileSymbolTablesCache trying to invalidate all files recursively
- Bug CPP-16313 Exception occurs when compilation database project is opened not for the first time.
- Bug CPP-16044 clangd doesn't parse cpp files if response files are used to pass arguments to the compiler in MSVC environment
- Bug CPP-15707 [Android Studio Freeze] OCSourceGliderComponent taking too long to initialize
- Code: Highlighting and Inspections Bug CPP-16259 IllegalStateException: Failed to restart clangd server
- Core. File System Bug IDEA-211677 Deadlock/freeze on quitting IntelliJ IDEA
- Core. Platform API Bug IDEA-211580 AvailableSince annotations stopped being included after Kotlin dependency on IntelliJ changed from kotlin.build.custom.deps:intellij-core to kotlin.build:intellij-core
- Core. Quick Documentation Bug IDEA-212079 QuickDocumentation is unable to load SVG from the jar file
- Core. Run | Debug. Configurations Bug IDEA-208525 Changes to my Environment Variables in Configurations aren't saving
- Editor. Diff and Merge Bug IDEA-210783 Couldn't select items in 'Diff Between' window (Deployment/Remote Host Access) with UP/DOWN arrow keyboard keys
- User Interface Bug IDEA-211968 Recent projects menu/list contains paths with non-native slashes instead of project names
- Bug IDEA-211955 "Open Recent" shows full path for consequently opened projects
- User Interface. Find, Replace, Usages Bug IDEA-196030 Find in Path | Open in Find Window does not work for current file scope with a scratch file
- Bug IDEA-176926 All Places scope does not include scratch files and consoles
- Bug IDEA-204277 Pinned "Find in Path" dialog is not closed when opening a project in the same window
- User Interface. Navigation Usability IDEA-208718 Implement the ability to move right/left on Navigation bar using additional shortcuts
- Usability IDEA-207554 Cmd+E/Ctrl+E doesn't work for iterating recent files after Recent/Recent edited files union
- User Interface. Project View Bug IDEA-204446 Structure sidebar flashing content with frontend (html related) files
- Version Control. Git Bug IDEA-210358 Incoming/outgoing commits are checked on project opening before any manual git remote operation is done
- Version Control. Log Bug IDEA-211128 Git Log: commit selected in search results is scrolled away and hidden from view after search is cancelled
- Bug IDEA-211583 Git file history doesn't follow rename if it was made in a merge commit
- Web. Flash and Flex Bug IDEA-207927 Error when generating configuration for maven project using flexmojos and flex modules
- Console Bug PY-33216 Pycharm freezes when viewing array
- Debugger Bug PY-35010 Debugger doesn't attach to Flask reloader when the file is executable
- Interpreters Settings Bug PY-35141 PyCharm doesn't activate the conda if Anaconda/Miniconda is installed in a non-default location and no other conda available in the system
- Bug PY-35914 Can't install packages with conda interpreter when non-default installation path was used for Anaconda
- Test Runner Bug PY-35062 Tox output broken for 3.8.3
- DB Introspection Bug DBE-8275 Snowflake wont load schemas even if other connections do
- SQL Format and Style Bug DBE-7993 PLPGSQL missing line break before INTO clause of SELECT commands
- Bug DBE-8223 DataGrip Quote Identifier incorrectly enclosed variables and parameters for SQL Server. This is not correct syntax
- Cosmetics DBE-8355 Different panel height for Generic SQL and Derby settings
- Cosmetics DBE-8356 Extra separator between scheme chooser and option tabs in MS Windows
|
|
Bump PKGREVISION.
|
|
|
|
|
|
Packaged for wip by Kamel Ibn Aziz Derouiche and myself.
Csmith is a tool that can generate random C programs that statically
and dynamically conform to the C99 standard. Thus, it is useful for
stress-testing compilers, static analyzers, and other tools that
process C code.
|
|
|
|
|
|
+ apache-2.4.49, sudo-1.9.8.
|
|
|
|
|
|
|
|
Release notes:
https://www.seamonkey-project.org/releases/seamonkey2.53.9/#new
|
|
|
|
|
|
|
|
# energy 1.7-8
* User level changes:
- Poisson goodness-of-fit tests
- EVnormal (data) issue fixed
- gsl package required
* Internal changes
- mvnorm.e: use gsl::hyperg_1F1
- poisMstat in energy.c moved to Rcpp poisMstat.cpp
# energy 1.7-7
* User level changes:
- dcorT.test replaces dcor.ttest, now deprecated.
- dcorT replaces dcor.t, now deprecated.
- edist method "discoF" removed
* Internal changes
- BCDCOR function (used in the high dim. dcorT test) has been revised.
- edist method "discoB" correction
- changes for compatibility with R 4.0.0
|
|
|
|
|
|
Changes:
7.0.3
-----
* CVE-2021-39214: Fix request smuggling vulnerabilities reported by @chinchila
* Expose TLS 1.0 as possible minimum version on older pyOpenSSL releases
* Fix compatibility with Python 3.10
7.0.2
-----
* Fix a WebSocket crash introduced in 7.0.1
7.0.1
-----
* Performance: Re-use OpenSSL contexts to enable TLS session resumption
* Disable HTTP/2 CONNECT for Secure Web Proxies to fix compatibility with
Firefox
* Use local IP address as certificate subject if no other info is available
* Make it possible to return multiple chunks for HTTP stream modification
* Don't send WebSocket CONTINUATION frames when the peer does not send any
* Fix HTTP stream modify example.
* Fix a crash caused by no-op assignments to `Server.address`
* Fix a crash when encountering invalid certificates
* Fix a crash when pressing the Home/End keys in some screens
* Fix a crash when reading corrupted flow dumps
* Fix multiple crashes on flow export
* Fix a bug where ASGI apps did not see the request body
* Minor documentation improvements
|
|
|
|
Release 2.7.2
* Fixed a regression related to server host key selection when attempting
to use a leading '+' to add algorithms to the front of the default list.
* Fixed logging to properly handle SFTPName objects with string filenames.
* Fixed SSH_EXT_INFO to only be sent after the first key exchange.
|
|
0.0.20:
Minor fixes
0.0.19:
Minor fixes in the VAS memory search function, adding timestamp print to modules.
|
|
|
|
|
|
|
|
|
|
Syslog-ng tries to fill the gaps original syslogd's were lacking:
* powerful configurability
* filtering based on message content
* message integrity, message encryption
* portability
* better network forwarding
This package contains the geoip2 module.
|
|
Based on package provided by Peter Czanik in PR 56406.
Changes below are for 3.34.1 only, the other 16 releases before
that are not summarized.
3.34.1
======
## Highlights
* `regexp-parser()`: new parser that can parse messages with regular expressions
* `redis()`: `workers()` and batching support
The Redis driver now support the `workers()` option, which specifies the
number of parallel workers, and the `batch-lines()` option.
This could drastically increase the throughput of the Redis destination driver.
* `mqtt()`: TLS and WebSocket Secure support
The MQTT destination now supports TLS and WSS.
## Features
* `system()` source: added support for NetBSD
* `stats`: new statistics counter
* `mqtt()`: username/password authentication
* `mqtt()`: new option `http-proxy()` for specifying HTTP/HTTPS proxy for WebSocket connections
([#3747](https://github.com/syslog-ng/syslog-ng/pull/3747))
* `syslog-ng-ctl`: new flag for pruning statistics
* `disk-buffer()`: added a new option to reliable disk-buffer: `qout-size()`.
## Bugfixes
* `network(), syslog()`: fixed network sources on NetBSD
* `disk-buffer()`: fixed a very rare case, where the reliable disk-buffer never resumed
after triggering `flow-control`.
* `disk-buffer()`: fixed a rare memory leak that occurred when `mem-buf-length()`
or `mem-buf-size()` was configured incorrectly
* `redis()`: fixed command errors that were not detected and marked as successful delivery
|
|
|
|
This release of libXi marks the support of XI 2.4 touchpad gesture events
official. This feature is the only difference between libXi 1.8 and the latest
release in the 1.7.x series (1.7.10).
|
|
|
|
Bump PKGREVISION.
|